/* ============================================================
   AAROHI ENTERPRISES — Design System
   Enterprise B2B lab-supply site. Navy + cobalt blue palette.
   ============================================================ */

/* — Custom Properties — */
:root {
  --navy:       #0B2239;
  --navy-deep:  #081A2E;
  --navy-mid:   #10325A;
  --blue:       #175CD3;
  --blue-hover: #1249A8;
  --blue-light: #7EA6E8;
  --blue-pale:  #B9D0F5;
  --grey-bg:    #F5F8FC;
  --grey-input: #F9FBFC;
  --text:       #47546A;
  --text-light: #7b8898;
  --border:     rgba(11,34,57,0.10);
  --border-md:  rgba(11,34,57,0.15);
  --white:      #ffffff;
  --green-wa:   #25D366;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-pill: 999px;
  --shadow-sm:  0 2px 10px rgba(11,34,57,0.05);
  --shadow-md:  0 14px 30px rgba(11,34,57,0.12);
  --shadow-lg:  0 24px 60px rgba(8,26,46,0.25);
  --shadow-btn: 0 4px 14px rgba(23,92,211,0.30);
  --shadow-btn-hover: 0 8px 20px rgba(23,92,211,0.40);
  --max-w:      1140px;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;
}

/* — Reset & Base — */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--white); }
body {
  font-family: var(--font-body);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 320px;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-hover); }
input, textarea, button { font-family: inherit; }
input::placeholder, textarea::placeholder { color: #9aa7b5; }

/* — Focus — */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
input:focus-visible, textarea:focus-visible {
  outline: none;
  border-color: var(--blue) !important;
  background: var(--white) !important;
  box-shadow: 0 0 0 3px rgba(23,92,211,0.10);
}

/* — Skip Nav — */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue);
  color: var(--white);
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-link:focus {
  left: 50%;
  transform: translateX(-50%);
}

/* — Layout — */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* — Scroll Progress — */
.scroll-progress {
  position: absolute;
  left: 0; top: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--blue-light));
  transition: width .1s linear;
  z-index: 1;
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11,34,57,0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}
.header__logo {
  display: flex;
  align-items: center;
  animation: logoIn .8s cubic-bezier(.22,1,.36,1) both;
}
.header__logo img {
  height: 44px;
  transition: transform .3s ease;
}
.header__logo:hover img { transform: scale(1.04); }

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  transition: color .2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-link:hover { color: var(--blue-hover); }
.nav-link--active {
  color: var(--blue-hover);
  border-bottom-color: var(--blue);
}

/* — Buttons — */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s, border-color .2s;
  text-align: center;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  background: var(--blue-hover);
  color: var(--white);
  box-shadow: var(--shadow-btn-hover);
}
.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.10);
  color: var(--white);
}
.btn--ghost-dark {
  background: transparent;
  border: 1px solid var(--border-md);
  color: var(--navy);
}
.btn--ghost-dark:hover {
  background: var(--grey-bg);
  color: var(--navy);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.btn--white:hover {
  background: #EDF2F9;
  color: var(--navy);
}
.btn--wa {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(37,211,102,0.45);
  border-radius: var(--radius-pill);
}
.btn--wa:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 32px rgba(37,211,102,0.55);
}
.btn--sm  { font-size: 14px; padding: 9px 20px; }
.btn--md  { font-size: 15px; padding: 10px 22px; }
.btn--lg  { font-size: 16px; padding: 15px 34px; }
.btn--header { font-size: 15px; padding: 10px 22px; }
.btn--band { font-size: 16px; padding: 14px 30px; }
.btn--sub {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  border-radius: var(--radius-sm);
}
.btn--sub:hover {
  background: rgba(255,255,255,0.22);
  color: var(--white);
}

/* — Mobile Burger — */
.burger { display: none; position: relative; }
.burger__toggle {
  cursor: pointer;
  width: 42px; height: 42px;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--white);
  list-style: none;
}
.burger__toggle::-webkit-details-marker { display: none; }
.burger__bar {
  width: 18px; height: 2px;
  background: var(--navy);
  display: block;
}
.burger__dropdown {
  position: absolute;
  right: 0; top: 52px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(11,34,57,0.18);
  padding: 10px;
  display: flex;
  flex-direction: column;
  min-width: 190px;
  z-index: 300;
}
.burger__link {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.burger__link:hover {
  background: var(--grey-bg);
  color: var(--blue-hover);
}

/* ============ HERO — DARK (Home) ============ */
.hero-dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%);
}
.hero-dark__blob1 {
  position: absolute;
  right: -160px; top: -180px;
  width: 720px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,92,211,0.35), transparent 65%);
  animation: blobDrift1 16s ease-in-out infinite;
  pointer-events: none;
}
.hero-dark__blob2 {
  position: absolute;
  left: -200px; bottom: -220px;
  width: 640px; height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126,166,232,0.14), transparent 65%);
  animation: blobDrift2 19s ease-in-out infinite;
  pointer-events: none;
}
.hero-dark__beam {
  position: absolute;
  left: 20%; top: -40%;
  width: 2px; height: 180%;
  background: linear-gradient(180deg, transparent, rgba(126,166,232,0.35), transparent);
  animation: beamSweep 18s ease-in-out infinite;
  pointer-events: none;
}
.hero-dark__content {
  position: relative;
  padding: 104px 0 150px;
  text-align: center;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(126,166,232,0.10);
  border: 1px solid rgba(126,166,232,0.30);
  color: var(--blue-pale);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 26px;
}
.hero-chip__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
  display: inline-block;
}
.hero-dark h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  color: var(--white);
  margin: 0 auto 22px;
  max-width: 900px;
  text-wrap: pretty;
}
.hero-dark h1 .accent { color: var(--blue-light); }
.hero-dark__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero-dark__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 38px;
}
.hero-dark__badges {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}
.hero-badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
  display: inline-block;
}

/* ============ HERO — LIGHT (subpages) ============ */
.hero-light {
  background:
    radial-gradient(600px 380px at 90% 0%, rgba(23,92,211,0.12), transparent 70%),
    radial-gradient(480px 340px at 5% 100%, rgba(23,92,211,0.09), transparent 70%),
    var(--white);
}
.hero-light__content {
  padding: 76px 0 60px;
}
.hero-light__content--compact { padding-bottom: 44px; }

/* — Shared hero elements — */
.overline {
  color: var(--blue-hover);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.15;
  color: var(--navy);
  margin: 0;
  max-width: 760px;
  text-wrap: pretty;
}
.page-title .gradient-text {
  background: linear-gradient(90deg, var(--blue), #4D82DE);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-subtitle {
  font-size: 17px;
  max-width: 600px;
  margin: 14px 0 0;
}

/* ============ SECTION HEADINGS ============ */
.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-heading h2,
.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 36px;
  color: var(--navy);
  margin: 0;
  text-wrap: pretty;
}
.section-title--md { font-size: 32px; }

/* ============ STATS STRIP ============ */
/* Overlapping variant (Home) */
.stats-overlap {
  margin-top: -64px;
  position: relative;
  z-index: 5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(11,34,57,0.08);
  border: 1px solid rgba(11,34,57,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stat-card {
  background: var(--white);
  text-align: center;
  padding: 28px 16px;
}
.stat-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 38px;
  color: var(--blue);
  line-height: 1.1;
}
.stat-label {
  color: var(--text);
  font-size: 14px;
  margin-top: 4px;
}

/* Navy stats (About page) */
.stats-navy {
  background: linear-gradient(120deg, var(--navy), var(--navy-mid));
}
.stats-navy .stats-grid-simple {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 52px 0;
}
.stats-navy .stat-number {
  font-size: 44px;
  color: var(--blue-light);
}
.stats-navy .stat-label {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-top: 6px;
}

/* ============ CATEGORY CARDS ============ */
.card-grid { display: grid; gap: 22px; }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

.category-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.category-card:hover {
  color: var(--text);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(23,92,211,0.45);
}
.category-card img {
  width: 100%;
  aspect-ratio: 8/5;
  object-fit: cover;
}
.category-card__body { padding: 22px 22px 24px; }
.category-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}
.category-card__desc {
  font-size: 14px;
  line-height: 1.6;
}
.category-card__link {
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  margin-top: 14px;
  display: block;
}

/* ============ WHY CHOOSE US ============ */
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}
.why-item {
  position: relative;
  padding-left: 96px;
  min-height: 64px;
}
.why-item__ghost {
  position: absolute;
  left: 0; top: -22px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 96px;
  color: rgba(23,92,211,0.08);
  line-height: 1;
  user-select: none;
}
.why-item__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-item__desc { font-size: 15px; }

/* About teaser card */
.about-teaser {
  background: var(--navy);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.85);
  box-shadow: 0 18px 40px rgba(11,34,57,0.25);
  overflow: hidden;
}
.about-teaser img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.about-teaser__body { padding: 30px 30px 34px; }
.about-teaser__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
  text-wrap: pretty;
}
.about-teaser__desc {
  font-size: 15px;
  margin-bottom: 24px;
}
.about-teaser__link {
  display: inline-block;
  background: rgba(126,166,232,0.15);
  border: 1px solid rgba(126,166,232,0.5);
  color: var(--blue-pale);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.about-teaser__link:hover {
  background: rgba(126,166,232,0.3);
  color: var(--white);
}

/* ============ INDUSTRIES MARQUEE ============ */
.marquee-section {
  border-top: 1px solid rgba(11,34,57,0.06);
  border-bottom: 1px solid rgba(11,34,57,0.06);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-chip {
  white-space: nowrap;
  background: var(--grey-bg);
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
}

/* ============ CREDENTIALS ============ */
.cred-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.cred-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 11px 22px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}
.cred-badge__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
}

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(110deg, var(--navy) 0%, #12407F 55%, var(--blue) 130%);
}
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 72px 0;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 32px;
  color: var(--white);
  margin: 0 0 10px;
  text-wrap: pretty;
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin: 0;
}
.cta-band__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1.1fr;
  gap: 40px;
  padding: 64px 0 44px;
}
.footer__brand-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}
.footer__brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.footer__brand-name span {
  color: var(--blue-light);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.22em;
}
.footer__brand-desc {
  font-size: 14px;
  margin: 12px 0 0;
  max-width: 280px;
}
.footer__heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer__links a {
  color: rgba(255,255,255,0.75);
  transition: color .15s;
}
.footer__links a:hover { color: var(--blue-light); }
.footer__links span { color: rgba(255,255,255,0.75); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ============ WHATSAPP FAB ============ */
.wa-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 200;
}

/* ============ SECTION UTILITIES ============ */
.section       { padding: 80px 0 90px; }
.section--sm   { padding: 56px 0; }
.section--md   { padding: 44px 0; }
.section--grey { background: var(--grey-bg); }
.section--white { background: var(--white); }
.section--divider-top { border-top: 1px solid rgba(11,34,57,0.06); }

.grid-2col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.grid-2col--why {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}
.grid-2col--ops  { grid-template-columns: 0.95fr 1.05fr; }
.grid-2col--contact {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

/* ============ VALUE CARDS (About) ============ */
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(11,34,57,0.08);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.value-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
}
.value-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}
.value-card__desc { font-size: 15px; }

/* ============ ABOUT — IMAGE CARDS ============ */
.img-card {
  position: relative;
}
.img-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 54px rgba(11,34,57,0.28);
}
.img-card__badge {
  position: absolute;
  left: -18px; bottom: -18px;
  background: var(--navy);
  color: var(--blue-light);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 14px 30px rgba(11,34,57,0.3);
}
.img-card__badge small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* Operations checklist */
.ops-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ops-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.ops-list__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ============ PRODUCTS — FILTER BAR ============ */
.filter-bar {
  position: sticky;
  top: 69px;
  z-index: 90;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11,34,57,0.08);
}
.filter-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
}
.filter-btn {
  border: 1px solid var(--border-md);
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover {
  border-color: var(--navy);
  background: var(--grey-bg);
}
.filter-btn--active {
  background: var(--navy);
  color: var(--blue-light);
  border-color: var(--navy);
}
.filter-search {
  margin-left: auto;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  min-width: 220px;
  background: var(--grey-bg);
  transition: border-color .2s, background .2s;
}
.filter-search:focus {
  border-color: var(--blue);
  background: var(--white);
}

/* ============ PRODUCT CARDS ============ */
.product-card {
  background: var(--white);
  border: 1px solid rgba(11,34,57,0.08);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(11,34,57,0.12), inset 0 3px 0 var(--blue);
  border-color: rgba(23,92,211,0.3);
}
.product-card__tag {
  display: inline-block;
  background: rgba(23,92,211,0.10);
  color: var(--blue-hover);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}
.product-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
}
.product-card__desc {
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}
.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.product-card__wa {
  font-size: 13px;
  font-weight: 600;
  color: #128C4B;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .15s;
}
.product-card__wa:hover { color: #0e6e3a; }

/* ============ CONTACT ============ */
.contact-card {
  background: var(--white);
  border: 1px solid rgba(11,34,57,0.08);
  border-radius: var(--radius-md);
  padding: 24px 26px;
}
.contact-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 6px;
}
.wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.12);
  color: #128C4B;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: background .15s;
}
.wa-pill:hover {
  background: rgba(37,211,102,0.22);
  color: #128C4B;
}
.wa-pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-wa);
  display: inline-block;
}
.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(11,34,57,0.08);
  box-shadow: var(--shadow-sm);
}
.map-frame iframe {
  width: 100%; height: 240px;
  border: 0; display: block;
}

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid rgba(11,34,57,0.08);
  border-radius: var(--radius-md);
  padding: 36px 34px;
  box-shadow: 0 10px 30px rgba(11,34,57,0.08);
}
.form-card h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  color: var(--navy);
  margin: 0 0 6px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
}
.form-field input,
.form-field textarea {
  border: 1px solid var(--border-md);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  background: var(--grey-input);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-field textarea { resize: vertical; }
.form-error {
  color: #B4232A;
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
}
.form-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 14px;
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 40px 10px;
}
.form-success__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(23,92,211,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success__check {
  width: 22px; height: 12px;
  border-left: 4px solid var(--blue);
  border-bottom: 4px solid var(--blue);
  transform: rotate(-45deg) translate(2px, -4px);
  display: block;
}
.form-success h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 10px;
}
/* Honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* Empty state (products) */
.empty-state {
  text-align: center;
  padding: 70px 24px;
}
.empty-state h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}

/* ============ SCROLL REVEAL ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
}

/* ============ KEYFRAMES ============ */
@keyframes logoIn {
  0%   { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-70px,50px) scale(1.15); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(60px,-40px) scale(1.1); }
}
@keyframes beamSweep {
  0%   { transform: translateX(-30%) rotate(-32deg); }
  50%  { transform: translateX(30%) rotate(-32deg); }
  100% { transform: translateX(-30%) rotate(-32deg); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .card-grid--4, .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2col, .grid-2col--why, .grid-2col--ops, .grid-2col--contact,
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-link { display: none !important; }
  .burger  { display: block !important; }
}
@media (max-width: 620px) {
  .card-grid--4, .card-grid--3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-navy .stats-grid-simple { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .filter-search { min-width: 0; width: 100%; margin-left: 0; }
  .hero-dark__content { padding: 60px 0 100px; }
  .hero-dark__sub { font-size: 16px; }
  .stat-number { font-size: 32px; }
  .section-title { font-size: 28px; }
  .section-title--md { font-size: 26px; }
  .cta-band h2 { font-size: 26px; }
  .why-item { padding-left: 72px; }
  .why-item__ghost { font-size: 72px; }
  .img-card__badge { left: 12px; bottom: -12px; font-size: 17px; padding: 12px 18px; }
}
@media (max-width: 380px) {
  .hero-chip { font-size: 11px; padding: 6px 12px; }
  .hero-dark h1 { font-size: 30px; }
}
