/* =================================================================
   DALTON ODISHA — B2B Product Trading
   Modern glassmorphism + dark navy/gold premium aesthetic
   ================================================================= */

:root {
  /* Surface tokens */
  --bg:           #06091a;
  --bg-1:         #0b1126;
  --bg-2:         #131a36;
  --bg-3:         #1a2247;
  --surface:      #ffffff;
  --surface-2:    #f7f8fc;
  --line:         #e6e8f0;
  --line-dark:    #232a4d;

  /* Text */
  --ink:          #0b1126;
  --ink-2:        #2a3055;
  --muted:        #5b6280;
  --muted-2:      #8a92ad;

  /* Brand */
  --accent:       #f5b544;     /* warm gold */
  --accent-2:     #ffd27a;
  --indigo:       #6366f1;
  --cyan:         #22d3ee;
  --green:        #25d366;     /* WhatsApp green */
  --green-2:      #128c7e;
  --rose:         #f43f5e;
  --danger:       #ef4444;

  /* Glass tokens */
  --glass:        rgba(255,255,255,.06);
  --glass-light:  rgba(255,255,255,.14);
  --glass-border: rgba(255,255,255,.12);
  --glass-blur:   18px;

  /* Sizing */
  --container:    1200px;
  --header-h:     78px;
  --radius:       14px;
  --radius-lg:    22px;
  --radius-xl:    28px;
  --ease:         cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { color: var(--ink); line-height: 1.18; margin: 0 0 .5em; letter-spacing: -.02em; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 4.5vw + .5rem, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 2.4vw + .8rem, 2.8rem); font-weight: 700; }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1em; }
.serif { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: .6rem 1rem; z-index: 99; }
.skip-link:focus { left: 1rem; top: 1rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ---------- Reveal animation ----------
   FAIL-SAFE: elements are visible by default. JS only adds a starting hidden
   state via the .js-reveal-ready class, then transitions to .is-visible. If
   JS never runs, content is fully visible immediately. */
.reveal { opacity: 1; transform: none; transition: opacity .85s var(--ease), transform .85s var(--ease); }
.js-reveal-ready .reveal { opacity: 0; transform: translateY(22px); }
.js-reveal-ready .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .js-reveal-ready .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600; font-size: .94rem;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--ink); color: #fff; box-shadow: 0 4px 14px rgba(11,16,32,.18); }
.btn-primary:hover { background: #1a2147; box-shadow: 0 8px 22px rgba(11,16,32,.3); }
.btn-accent { background: var(--accent); color: var(--ink); box-shadow: 0 6px 18px rgba(245,181,68,.35); }
.btn-accent:hover { background: var(--accent-2); box-shadow: 0 10px 25px rgba(245,181,68,.5); }
.btn-ghost  { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--ink-2); }
.btn-light  { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.22); backdrop-filter: blur(10px); }
.btn-light:hover { background: rgba(255,255,255,.22); }
.btn-whatsapp { background: var(--green); color: #fff; box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.btn-whatsapp:hover { background: var(--green-2); box-shadow: 0 10px 28px rgba(37,211,102,.55); }
.btn-call { background: rgba(245,181,68,.12); color: var(--ink); border-color: rgba(245,181,68,.4); }
.btn-call:hover { background: rgba(245,181,68,.22); border-color: var(--accent); }
.btn-sm { padding: .55rem 1rem; font-size: .85rem; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.75);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-scrolled { background: rgba(255,255,255,.92); border-bottom-color: var(--line); box-shadow: 0 4px 18px rgba(11,16,32,.06); }
.nav-wrap { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: .65rem; font-weight: 800; font-size: 1.08rem; letter-spacing: -.01em; color: var(--ink); }
.brand-logo { height: 54px; width: auto; display: block; transition: transform .25s var(--ease); }
.brand:hover .brand-logo { transform: translateY(-1px); }
.brand-name { line-height: 1.1; }
.brand-tag  { display: block; font-size: .68rem; color: var(--muted); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }

.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .15rem; }
.primary-nav a {
  display: inline-flex; align-items: center;
  padding: .55rem 1rem;
  border-radius: 999px;
  color: var(--ink-2); font-weight: 500; font-size: .94rem;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.primary-nav a:hover { background: var(--surface-2); color: var(--ink); }
.primary-nav a.is-active { background: var(--ink); color: #fff; }

.nav-cta { display: flex; align-items: center; gap: .5rem; }
.nav-toggle {
  display: none; width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 12px; color: var(--ink);
}

@media (max-width: 980px) {
  .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    background: var(--surface);
    padding: 1.5rem 1.25rem 2.5rem;
    transform: translateY(-110%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: .25rem; }
  .primary-nav a { padding: 1rem 1.1rem; border-radius: 12px; font-size: 1.1rem; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Section utilities ---------- */
section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .16em; color: var(--accent);
  background: rgba(245,181,68,.12); border: 1px solid rgba(245,181,68,.3);
  padding: .35rem .85rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.lead { font-size: 1.15rem; color: var(--muted); }
.text-accent { color: var(--accent); }

/* ---------- HERO SLIDER ---------- */
.hero-slider {
  position: relative;
  height: clamp(560px, 86vh, 760px);
  overflow: hidden;
  background: var(--bg-1);
  isolation: isolate;
  outline: none;
}
.hero-slider .slides { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  opacity: 0; visibility: hidden;
  transform: scale(1.06);
  transition:
    opacity .9s cubic-bezier(.4,0,.2,1),
    transform 8s cubic-bezier(.4,0,.2,1),
    visibility 0s linear .9s;
  z-index: 1;
}
.slide.is-active {
  opacity: 1; visibility: visible; transform: scale(1);
  z-index: 2;
  transition:
    opacity .9s cubic-bezier(.4,0,.2,1),
    transform 8s cubic-bezier(.4,0,.2,1),
    visibility 0s linear 0s;
}
.slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,16,32,.5) 0%, rgba(11,16,32,.85) 100%),
    radial-gradient(700px 350px at 80% 20%, rgba(245,181,68,.18), transparent 60%),
    radial-gradient(600px 300px at 10% 90%, rgba(99,102,241,.2), transparent 60%);
}
.slide-inner {
  position: relative; z-index: 1;
  max-width: 780px; color: #fff;
}
.slide-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  padding: .42rem .9rem; border-radius: 999px;
  font-size: .85rem; color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.slide-badge .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--green); box-shadow: 0 0 0 4px rgba(37,211,102,.22);
  animation: pulse-dot 2s infinite;
}
.slide-eyebrow {
  display: inline-block; margin-top: 1.25rem;
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .18em; color: var(--accent);
}
.slide-title {
  color: #fff; margin: .85rem 0 1.1rem;
  font-size: clamp(2.2rem, 5vw + .5rem, 4.2rem);
  line-height: 1.08; letter-spacing: -.025em;
}
.slide-title .serif { color: rgba(255,255,255,.82); font-weight: 400; }
.slide-lead {
  color: rgba(255,255,255,.85);
  font-size: clamp(1rem, 1.5vw + .3rem, 1.2rem);
  max-width: 40rem; margin: 0 0 1.5rem;
}
.slide-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Stagger-in animation when slide activates */
.slide .slide-badge,
.slide .slide-eyebrow,
.slide .slide-title,
.slide .slide-lead,
.slide .slide-actions {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.slide.is-active .slide-badge   { opacity: 1; transform: none; transition-delay: .15s; }
.slide.is-active .slide-eyebrow { opacity: 1; transform: none; transition-delay: .25s; }
.slide.is-active .slide-title   { opacity: 1; transform: none; transition-delay: .35s; }
.slide.is-active .slide-lead    { opacity: 1; transform: none; transition-delay: .45s; }
.slide.is-active .slide-actions { opacity: 1; transform: none; transition-delay: .55s; }

/* Arrows */
.slider-arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #fff; cursor: pointer;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
  z-index: 6;
}
.slider-arrow:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); }
.slider-arrow:active { transform: translateY(-50%) scale(.95); }
.slider-arrow.prev { left: 1.5rem; }
.slider-arrow.next { right: 1.5rem; }

/* Dots — visible bar 4px tall but tap area expanded via invisible padding */
.slider-dots {
  position: absolute; left: 50%; bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex; gap: .25rem; z-index: 6;
  padding: .25rem;
}
.slider-dot {
  /* total tap target: 30 wide × ~24 tall (14 + 4 + 6 from padding/border) */
  width: 30px; height: 4px;
  background: rgba(255,255,255,.3);
  background-clip: content-box; /* visible bar stays 4px even with padding */
  border: 0; border-radius: 999px; cursor: pointer;
  padding: 14px 0 6px;          /* invisible touch padding */
  box-sizing: content-box;
  transition: background .3s var(--ease), width .3s var(--ease);
}
.slider-dot:hover { background: rgba(255,255,255,.55); }
.slider-dot.is-active { background: var(--accent); width: 46px; }
@media (max-width: 768px) {
  .slider-dot { padding: 18px 0 10px; } /* even bigger tap on mobile */
}

/* Top progress bar */
.slider-progress {
  position: absolute; left: 0; right: 0; top: 0;
  height: 3px; background: rgba(255,255,255,.08); z-index: 6;
}
.slider-progress > span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width .15s linear;
}

/* ---------- SEARCH STRIPE under the slider ---------- */
.search-stripe {
  position: relative; z-index: 5;
  background: linear-gradient(180deg, rgba(11,16,32,.95), rgba(11,16,32,.92));
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem 0;
}
.search-stripe-inner {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.search-stripe form {
  flex: 1; max-width: 640px;
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: .35rem .4rem .35rem 1.25rem;
}
.search-stripe form input {
  flex: 1; border: 0; outline: 0; font-size: 1rem;
  background: transparent; color: var(--ink); padding: .55rem 0;
}
.search-stripe form input::placeholder { color: var(--muted-2); }
.search-stripe .quick-chips {
  display: flex; gap: .4rem; flex-wrap: wrap;
}
.search-stripe .quick-chips a {
  color: rgba(255,255,255,.82); font-size: .82rem; font-weight: 500;
  padding: .35rem .75rem; border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; transition: background .2s var(--ease), border-color .2s var(--ease);
}
.search-stripe .quick-chips a:hover { background: rgba(255,255,255,.1); border-color: var(--accent); }
.search-stripe .quick-chips .label {
  color: rgba(255,255,255,.55); font-size: .82rem; padding-right: .35rem;
  text-transform: uppercase; letter-spacing: .12em;
}

@media (max-width: 768px) {
  .hero-slider { height: clamp(520px, 88vh, 640px); }
  .slider-arrow { display: none; }
  .slider-dots { bottom: 1.25rem; }
  .slide-actions { gap: .5rem; }
}
@media (max-width: 540px) {
  .slide-badge { font-size: .78rem; padding: .32rem .75rem; }
  .slide-actions .btn { padding: .8rem 1.1rem; font-size: .92rem; }
  .search-stripe form { padding: .35rem .35rem .35rem 1rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .slide, .slide.is-active,
  .slide .slide-badge, .slide .slide-eyebrow,
  .slide .slide-title, .slide .slide-lead, .slide .slide-actions {
    transition: opacity .2s linear, visibility 0s;
    transform: none !important;
  }
  .slider-progress { display: none; }
}

/* ---------- HERO (B2B eCom flavour with search) ---------- */
.hero {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(900px 500px at 90% -5%, rgba(245,181,68,.18), transparent 60%),
    radial-gradient(800px 460px at -10% 50%, rgba(99,102,241,.18), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,16,32,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,16,32,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; display: grid; gap: 2.5rem; }
@media (min-width: 980px) { .hero-inner { grid-template-columns: 1.2fr 1fr; align-items: center; gap: 4rem; } }

.hero-pill {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  padding: .45rem .9rem; border-radius: 999px;
  font-size: .88rem; color: var(--ink-2);
  backdrop-filter: blur(10px);
}
.hero-pill .dot { width: 9px; height: 9px; border-radius: 999px; background: #25d366; box-shadow: 0 0 0 4px rgba(37,211,102,.22); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 4px rgba(37,211,102,.22); } 50% { box-shadow: 0 0 0 8px rgba(37,211,102,.05); } }

.hero h1 { margin-top: 1rem; }
.hero h1 .accent { color: var(--accent); }
.hero h1 .serif { color: var(--ink-2); display: inline; }
.hero p.lead { max-width: 38rem; }

.hero-search {
  margin-top: 1.5rem;
  display: flex; gap: .5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .35rem .4rem .35rem 1.25rem;
  box-shadow: 0 10px 30px rgba(11,16,32,.08);
  max-width: 540px;
}
.hero-search input {
  flex: 1; border: 0; outline: 0; font-size: 1rem;
  background: transparent; color: var(--ink); padding: .6rem 0;
}
.hero-search input::placeholder { color: var(--muted-2); }
.hero-search button { white-space: nowrap; padding: .65rem 1.25rem; }

.hero-meta {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: 1.25rem 2rem;
  color: var(--muted); font-size: .92rem;
}
.hero-meta strong { color: var(--ink); font-weight: 700; }

/* Hero visual: glass card stack */
.hero-visual { position: relative; aspect-ratio: 4/5; max-width: 460px; justify-self: end; width: 100%; }
.glass-card {
  position: absolute;
  background: var(--glass-light);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(11,16,32,.18);
  padding: 1.6rem 1.4rem;
  color: var(--ink);
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.glass-card.dark { background: rgba(11,16,32,.9); color: #fff; border-color: rgba(255,255,255,.12); }
.glass-card.dark .tag { color: rgba(255,255,255,.75); }
.hero-visual .gc-1 { inset: 0 18% 36% 0; background: linear-gradient(135deg, #6366f1 0%, #22d3ee 100%); color: #fff; border-color: rgba(255,255,255,.18); }
.hero-visual .gc-2 { inset: 22% 0 4% 22%; }
.hero-visual .gc-3 { inset: 58% 32% 0 6%; background: linear-gradient(135deg, var(--accent) 0%, #ef4444 100%); color: var(--ink); border-color: rgba(255,255,255,.18); }
.glass-card .tag { font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .9; }
.glass-card .num { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.glass-card h4 { margin: 0; color: inherit; font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 700; line-height: 1.2; }
.glass-card p { margin: .25rem 0 0; font-size: .82rem; line-height: 1.4; }
@media (max-width: 979px) {
  .hero-visual { margin: 0 auto; aspect-ratio: 5/4; max-width: 520px; }
}
@media (max-width: 540px) {
  .hero-visual { display: none; }
}

/* ---------- INDUSTRY STRIP (logos) ---------- */
.industries-strip {
  background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}
.industries-strip p { text-align: center; color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 1.25rem; }
.client-marquee { position: relative; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.client-track { display: flex; align-items: center; gap: clamp(2rem, 4vw, 3.5rem); width: max-content; animation: client-scroll 60s linear infinite; will-change: transform; }
.client-marquee:hover .client-track { animation-play-state: paused; }
.client-logo { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; height: 56px; width: 168px; padding: 0 .5rem; }
.client-logo img { height: 100%; width: auto; max-width: 95%; object-fit: contain; opacity: .82; transition: opacity .25s var(--ease), transform .25s var(--ease); }
.client-logo:hover img { opacity: 1; transform: translateY(-2px); }
@keyframes client-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@media (max-width: 640px) {
  .client-logo { height: 44px; width: 130px; }
  .client-track { animation-duration: 40s; gap: 1.5rem; }
}

/* ---------- CATEGORIES GRID (glassmorphism) ---------- */
.categories-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }

.category-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(11,16,32,.0) 30%, rgba(11,16,32,.9) 100%), linear-gradient(135deg, var(--bg-2), var(--bg-3));
  color: #fff;
  min-height: 280px;
  padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  isolation: isolate;
  border: 1px solid var(--glass-border);
}
.category-card .category-bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
  transition: transform .6s var(--ease); opacity: .45;
}
.category-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(11,16,32,.35); }
.category-card:hover .category-bg { transform: scale(1.08); opacity: .55; }
.category-card .cat-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: rgba(245,181,68,.15);
  border: 1px solid rgba(245,181,68,.3);
  border-radius: 14px;
  color: var(--accent);
  backdrop-filter: blur(8px);
}
.category-card h3 { color: #fff; margin: 1rem 0 .35rem; font-size: 1.45rem; }
.category-card p { color: rgba(255,255,255,.78); margin: 0 0 1rem; font-size: .95rem; }
.category-card .cat-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--accent); font-weight: 600; font-size: .92rem;
}
.category-card .cat-link svg { transition: transform .2s var(--ease); }
.category-card:hover .cat-link svg { transform: translateX(4px); }

/* ---------- PRODUCT CARDS ---------- */
.products-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) and (max-width: 1399px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(11,16,32,.15);
  border-color: rgba(245,181,68,.4);
}
.product-card .pc-image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--surface-2) center/cover no-repeat;
  overflow: hidden;
}
.product-card .pc-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-card:hover .pc-image img { transform: scale(1.06); }
.product-card .pc-cat {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  color: var(--ink); font-weight: 600; font-size: .72rem;
  padding: .35rem .7rem; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .08em;
}
.product-card .pc-featured {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: var(--accent); color: var(--ink); font-weight: 700; font-size: .7rem;
  padding: .35rem .65rem; border-radius: 999px;
  display: inline-flex; align-items: center; gap: .25rem;
  text-transform: uppercase; letter-spacing: .08em;
}
.product-card .pc-body { padding: 1.25rem 1.25rem 0; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 1.15rem; margin: 0 0 .4rem; }
.product-card .pc-blurb { color: var(--muted); font-size: .92rem; margin: 0; flex: 1; }
.product-card .pc-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
  padding: 1.25rem;
}
.product-card .pc-detail-link {
  grid-column: 1 / -1;
  display: inline-flex; align-items: center; justify-content: space-between;
  padding: .75rem 1rem;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-weight: 600; font-size: .9rem;
  transition: background .2s var(--ease);
}
.product-card .pc-detail-link:hover { background: var(--surface-2); }
.product-card .pc-detail-link svg { transition: transform .2s var(--ease); }
.product-card .pc-detail-link:hover svg { transform: translateX(4px); }

/* ---------- FLOATING WHATSAPP BUTTON ---------- */
.fab-whatsapp {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 70;
  width: 60px; height: 60px;
  background: var(--green);
  color: #fff;
  border: 0; border-radius: 999px;
  display: grid; place-items: center;
  box-shadow: 0 12px 32px rgba(37,211,102,.45);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  animation: float-bob 3s ease-in-out infinite;
}
.fab-whatsapp::before {
  content: ""; position: absolute; inset: -6px;
  border-radius: 999px;
  background: var(--green);
  opacity: 0; animation: ripple 2.4s infinite;
  z-index: -1;
}
@keyframes ripple { 0% { transform: scale(.95); opacity: .6; } 100% { transform: scale(1.5); opacity: 0; } }
@keyframes float-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.fab-whatsapp:hover { transform: scale(1.07); box-shadow: 0 15px 40px rgba(37,211,102,.6); }
.fab-whatsapp .label {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: #fff; padding: .5rem .85rem;
  border-radius: 8px; font-size: .85rem; font-weight: 500;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .2s var(--ease);
}
.fab-whatsapp:hover .label { opacity: 1; }
@media (max-width: 540px) { .fab-whatsapp .label { display: none; } }

/* ---------- PAGE HEADER (non-home pages) ---------- */
.page-header {
  position: relative;
  background:
    radial-gradient(800px 360px at 80% -15%, rgba(245,181,68,.18), transparent 60%),
    radial-gradient(700px 350px at -10% 30%, rgba(99,102,241,.18), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-header h1 { font-size: clamp(2rem, 4vw + .5rem, 3.4rem); }
.crumb { color: var(--muted); font-size: .9rem; margin-bottom: .85rem; }
.crumb a { color: var(--ink-2); }
.crumb a:hover { color: var(--ink); text-decoration: underline; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg) 100%);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; } }
.site-footer .brand { color: #fff; }
.footer-tag { color: rgba(255,255,255,.55); max-width: 32ch; margin-top: 1rem; font-size: .94rem; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-col a { color: rgba(255,255,255,.7); transition: color .2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: .65rem; color: rgba(255,255,255,.7); margin-bottom: .8rem; }
.footer-contact li svg { flex: 0 0 18px; margin-top: .15rem; opacity: .7; }
.social-row { display: flex; gap: .5rem; margin-top: 1rem; }
.social-row a {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; color: rgba(255,255,255,.85);
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.social-row a:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); transform: translateY(-2px); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem;
  margin-top: 3rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.5); font-size: .85rem;
}

/* ---------- PRODUCT DETAIL ---------- */
.product-detail { display: grid; gap: 2.5rem; }
@media (min-width: 920px) { .product-detail { grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; } }

.pd-image-wrap {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
}
.pd-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.pd-title { font-size: clamp(1.8rem, 3vw + .5rem, 2.6rem); margin: .75rem 0 1rem; }
.pd-cat { display: inline-block; background: rgba(245,181,68,.12); color: var(--accent); border: 1px solid rgba(245,181,68,.3); padding: .35rem .75rem; border-radius: 999px; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.pd-blurb { color: var(--muted); font-size: 1.05rem; }

.pd-specs {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.pd-specs h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin: 0 0 .75rem; }
.pd-specs ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.pd-specs li { display: flex; gap: .6rem; color: var(--ink-2); }
.pd-specs li .tick { flex: 0 0 22px; height: 22px; border-radius: 999px; background: rgba(16,185,129,.12); color: #10b981; display: grid; place-items: center; }

.pd-actions { display: grid; gap: .75rem; }
@media (min-width: 540px) { .pd-actions { grid-template-columns: 1fr 1fr; gap: .8rem; } }
.pd-actions .btn { padding: 1rem 1.4rem; font-size: 1rem; }

/* ---------- FILTER UI (catalog) ---------- */
.catalog-layout { display: grid; gap: 2rem; }
@media (min-width: 900px) { .catalog-layout { grid-template-columns: 240px 1fr; gap: 2.5rem; align-items: start; } }

.filter-rail {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky; top: calc(var(--header-h) + 1rem);
}
.filter-rail h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-bottom: 1rem; }
.filter-rail ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .3rem; }
.filter-rail a {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: .55rem .75rem;
  border-radius: 8px;
  color: var(--ink-2); font-size: .94rem;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.filter-rail a:hover { background: var(--surface-2); color: var(--ink); }
.filter-rail a.is-active { background: var(--ink); color: #fff; }
.filter-rail .count { font-size: .8rem; color: var(--muted-2); }
.filter-rail a.is-active .count { color: rgba(255,255,255,.7); }

.catalog-toolbar {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem;
}
.search-box {
  display: flex; align-items: center; gap: .5rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .35rem .35rem .35rem 1rem;
  flex: 1; max-width: 400px;
}
.search-box input { border: 0; outline: 0; background: transparent; flex: 1; font-size: .95rem; color: var(--ink); padding: .45rem 0; }
.search-box input::placeholder { color: var(--muted-2); }
.search-box button { padding: .45rem 1rem; font-size: .85rem; }

/* ---------- TESTIMONIALS / TM CARDS ---------- */
.tm-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .tm-grid { grid-template-columns: repeat(3, 1fr); } }
.tm-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
}
.tm-card::before {
  content: """; font-family: 'Instrument Serif', serif; position: absolute; top: -12px; left: 18px;
  font-size: 5rem; color: var(--accent); line-height: 1;
}
.tm-card blockquote { margin: 0; font-size: 1rem; color: var(--ink-2); }
.tm-who { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.tm-avatar { width: 42px; height: 42px; border-radius: 999px; background: linear-gradient(135deg, var(--indigo), var(--cyan)); color: #fff; display: grid; place-items: center; font-weight: 700; }

/* ---------- CTA BAND ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--bg-1) 0%, #1a2147 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(245,181,68,.32), transparent 60%),
    radial-gradient(500px 250px at 10% 100%, rgba(34,211,238,.24), transparent 60%);
}
.cta-band-inner { position: relative; display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 800px) { .cta-band-inner { grid-template-columns: 1fr auto; gap: 2.5rem; } }
.cta-band h2 { color: #fff; max-width: 24ch; margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,.78); margin: 0; max-width: 50ch; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- INDUSTRIES SERVED ---------- */
.industries-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }
.industry-card {
  position: relative;
  aspect-ratio: 1/1.05;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem;
  color: #fff;
  isolation: isolate;
  transition: transform .3s var(--ease);
}
.industry-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,16,32,0) 30%, rgba(11,16,32,.85) 100%);
}
.industry-card .ind-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transition: transform .6s var(--ease); }
.industry-card:hover { transform: translateY(-4px); }
.industry-card:hover .ind-bg { transform: scale(1.08); }
.industry-card h4 { color: #fff; margin: 0; position: relative; z-index: 2; font-size: 1.05rem; }

/* ---------- WHY US / FEATURE LIST ---------- */
.feature-list { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: .9rem; }
.feature-list li { display: flex; gap: .8rem; align-items: flex-start; color: var(--ink-2); }
.feature-list li .tick { flex: 0 0 26px; height: 26px; border-radius: 999px; background: rgba(16,185,129,.12); color: #10b981; display: grid; place-items: center; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr 1fr; gap: 3rem; } }

.contact-form {
  display: grid; gap: 1rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 4px 24px rgba(11,16,32,.06);
}
.field { display: grid; gap: .35rem; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.field input, .field textarea, .field select {
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font: inherit; color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(245,181,68,.18);
}
.field-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-note { color: var(--muted); font-size: .85rem; margin: 0; }
.alert { padding: 1rem 1.25rem; border-radius: 12px; border: 1px solid; font-size: .95rem; }
.alert.success { background: rgba(16,185,129,.08); border-color: rgba(16,185,129,.3); color: #065f46; }
.alert.error   { background: rgba(239,68,68,.08); border-color: rgba(239,68,68,.3); color: #991b1b; }

.contact-info { display: grid; gap: 1rem; align-content: start; }
.info-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; gap: 1rem;
}
.info-card .icon-wrap { flex: 0 0 44px; height: 44px; border-radius: 12px; background: var(--ink); color: var(--accent); display: grid; place-items: center; }
.info-card h4 { margin: 0 0 .15rem; font-size: 1rem; }
.info-card a, .info-card p { color: var(--muted); margin: 0; }
.info-card a:hover { color: var(--ink); }

/* =================================================================
   ABOUT PAGE MODULES
   ================================================================= */

/* Full-bleed hero with image */
.about-hero {
  position: relative;
  min-height: clamp(420px, 70vh, 560px);
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.about-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  background-image: var(--hero-bg);
  transform: scale(1.04);
}
.about-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,16,32,.55) 0%, rgba(11,16,32,.88) 100%),
    radial-gradient(700px 350px at 85% 20%, rgba(245,181,68,.22), transparent 60%),
    radial-gradient(600px 300px at 15% 90%, rgba(99,102,241,.22), transparent 60%);
}
.about-hero h1 { color: #fff; }
.about-hero .crumb { color: rgba(255,255,255,.7); }
.about-hero .crumb a { color: rgba(255,255,255,.85); }
.about-hero .lead { color: rgba(255,255,255,.85); max-width: 56rem; }
.about-hero .eyebrow {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}

/* Stats strip — animated counter cards */
.stats-strip {
  background: var(--bg-1);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  color: #fff;
  position: relative;
}
.stats-strip::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 300px at 80% 20%, rgba(245,181,68,.12), transparent 60%),
    radial-gradient(700px 280px at 10% 80%, rgba(99,102,241,.12), transparent 60%);
  pointer-events: none;
}
.stats-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-block { text-align: center; }
.stat-block .value {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-block .label {
  color: rgba(255,255,255,.7); font-size: .92rem; margin-top: .5rem;
}

/* Story split section */
.story-split {
  display: grid; gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) { .story-split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.story-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover; background-position: center;
  background-color: var(--bg-3);
  box-shadow: 0 30px 60px rgba(11,16,32,.18);
}
.story-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.08), transparent 50%);
}
.story-image .floating-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 20px 40px rgba(11,16,32,.18);
}
.story-image .floating-badge .icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--ink); color: var(--accent);
  display: grid; place-items: center; flex-shrink: 0;
}
.story-image .floating-badge .text strong { display: block; font-weight: 700; color: var(--ink); }
.story-image .floating-badge .text span { font-size: .85rem; color: var(--muted); }

/* Values cards with icons */
.values-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,181,68,.4);
  box-shadow: 0 20px 40px rgba(11,16,32,.1);
}
.value-card .num {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: 2.4rem; color: var(--accent); line-height: 1;
  position: absolute; top: 1.25rem; right: 1.5rem;
  opacity: .6;
}
.value-card .icon-wrap {
  width: 48px; height: 48px;
  background: rgba(245,181,68,.12); color: var(--accent);
  border: 1px solid rgba(245,181,68,.3);
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
}
.value-card h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.value-card p { color: var(--muted); font-size: .94rem; margin: 0; }

/* Industries served visual grid */
.industries-served {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .industries-served { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .industries-served { grid-template-columns: repeat(4, 1fr); } }
.industry-tile {
  position: relative;
  aspect-ratio: 1/1.05;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition: transform .3s var(--ease);
}
.industry-tile::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,16,32,0) 30%, rgba(11,16,32,.9) 100%);
}
.industry-tile .tile-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform .6s var(--ease);
}
.industry-tile:hover { transform: translateY(-4px); }
.industry-tile:hover .tile-bg { transform: scale(1.1); }
.industry-tile .tile-body {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 2; color: #fff;
}
.industry-tile h4 { color: #fff; font-size: 1rem; margin: 0; line-height: 1.2; font-weight: 700; }
.industry-tile .tile-sub { color: rgba(255,255,255,.75); font-size: .82rem; margin-top: .2rem; }

/* Partnerships / credentials strip */
.credentials-strip {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid; gap: 1.5rem;
}
@media (min-width: 768px) { .credentials-strip { grid-template-columns: repeat(3, 1fr); align-items: center; gap: 2rem; } }
.credential {
  display: flex; align-items: center; gap: 1.25rem;
}
.credential .icon-wrap {
  width: 56px; height: 56px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), #ef4444);
  color: var(--ink); border-radius: 16px;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(245,181,68,.3);
}
.credential h4 { margin: 0 0 .15rem; font-size: 1rem; }
.credential p { margin: 0; color: var(--muted); font-size: .88rem; }

/* Why-us split */
.why-us-split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .why-us-split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.why-us-feature {
  display: flex; gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease);
}
.why-us-feature:hover { border-color: var(--accent); }
.why-us-feature .icon-wrap {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(16,185,129,.12); color: #10b981;
  border-radius: 10px;
  display: grid; place-items: center;
}
.why-us-feature h4 { margin: 0 0 .2rem; font-size: 1rem; }
.why-us-feature p { margin: 0; color: var(--muted); font-size: .9rem; }
.why-us-features { display: grid; gap: .75rem; margin-top: 1.5rem; }

/* ---------- MISC ---------- */
::selection { background: var(--accent); color: var(--ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* Reveal stagger for product grids */
.products-grid .reveal:nth-child(2) { transition-delay: .05s; }
.products-grid .reveal:nth-child(3) { transition-delay: .1s; }
.products-grid .reveal:nth-child(4) { transition-delay: .15s; }
.products-grid .reveal:nth-child(5) { transition-delay: .2s; }
.products-grid .reveal:nth-child(6) { transition-delay: .25s; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: .25rem; margin-top: 2.5rem; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 .75rem;
  border-radius: 10px; background: #fff; border: 1px solid var(--line);
  color: var(--ink-2); font-weight: 500;
}
.pagination a:hover { background: var(--surface-2); color: var(--ink); }
.pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* No-content states */
.empty-state { padding: 3rem 1rem; text-align: center; color: var(--muted); }
.empty-state .icon { font-size: 3rem; opacity: .3; margin-bottom: 1rem; }
