/*
  Copyright © 2025 Aakash Electronics. All Rights Reserved.
  Unauthorized copying or reproduction is strictly prohibited.
*/
/* Aakash Electronics — redesigned styles */
:root {
  --bg:      #ffffff;
  --bg-2:    #f9f8f4;
  --bg-3:    #f2f0e8;
  --ink:     #0d0d0d;
  --ink-2:   #2a2a2a;
  --ink-3:   #6b6b68;
  --rule:    #e8e6de;
  --rule-2:  #d4d1c5;
  --blue:    #1e3a8a;
  --blue-2:  #2563eb;
  --blue-3:  #dbeafe;
  --red:     #dc2626;
  --red-2:   #b91c1c;
  --red-3:   #fee2e2;
  --gold:    #f59e0b;
  --green:   #16a34a;
  --sans:    'Inter', system-ui, -apple-system, Helvetica, Arial, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
  --radius:  6px;
  --shadow:  0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 4px 6px rgba(0,0,0,.04), 0 12px 40px rgba(0,0,0,.12);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv11','ss01';
}
a { color: inherit; text-decoration: none }
button { font-family: inherit; cursor: pointer; border: none }
img { max-width: 100%; display: block }
ul { list-style: none }

/* ── Layout ── */
.page { width: 100%; overflow-x: hidden }
.wrap { max-width: 1260px; margin: 0 auto; padding: 0 40px }

/* ── Utility bar ── */
.utility {
  background: var(--ink);
  color: #c8c7c3;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.utility .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 16px;
}
.ut-left { display: flex; gap: 20px; align-items: center }
.ut-left span::before { content: "·"; margin-right: 20px; opacity: .35 }
.ut-left span:first-child::before { display: none }
.ut-right { display: flex; gap: 20px; align-items: center }
.ut-right .phone { color: #e8e6de; font-weight: 500 }
.lang {
  display: inline-flex;
  border: 1px solid #333;
  border-radius: 3px;
  overflow: hidden;
}
.lang button {
  background: transparent;
  color: #6b6b68;
  font-family: var(--mono);
  font-size: 11px;
  padding: 3px 9px;
  letter-spacing: 0.06em;
  transition: background .15s, color .15s;
}
.lang button.on { background: #e8e6de; color: #0d0d0d }

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow .2s;
}
.header.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,.08) }
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand { display: flex; align-items: center; gap: 12px }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue) 0 50%, var(--red) 50% 100%);
}
.brand-mark span { position: relative; color: #fff; font-family: var(--mono); font-size: 16px; font-weight: 700 }
.brand-name { font-weight: 700; font-size: 17px; letter-spacing: -0.02em; line-height: 1.2 }
.brand-sub {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 1px;
}
.nav { display: flex; gap: 28px; align-items: center }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  padding: 4px 0;
  position: relative;
  transition: color .15s;
  letter-spacing: -0.01em;
}
.nav a:hover { color: var(--ink) }
.nav a.active { color: var(--ink) }
.nav a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -18px;
  height: 2px; background: var(--red);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background .15s, transform .1s;
}
.nav-cta:hover { background: var(--blue); transform: translateY(-1px) }
.nav-cta .arrow { font-family: var(--mono); font-weight: 400; transition: transform .15s }
.nav-cta:hover .arrow { transform: translateX(3px) }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  font-size: 14px; font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .1s, box-shadow .15s;
  cursor: pointer; font-family: inherit;
  letter-spacing: -0.01em;
}
.btn:hover { transform: translateY(-1px) }
.btn-primary { background: var(--ink); color: #fff }
.btn-primary:hover { background: var(--blue); box-shadow: 0 4px 16px rgba(30,58,138,.3) }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule-2) }
.btn-ghost:hover { border-color: var(--ink) }
.btn-red { background: var(--red); color: #fff }
.btn-red:hover { background: var(--red-2); box-shadow: 0 4px 16px rgba(220,38,38,.3) }
.btn .arrow { font-family: var(--mono); font-weight: 400 }
.arrow-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--blue);
  transition: gap .15s;
}
.arrow-link:hover { gap: 10px }

/* ── Hero ── */
.hero {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(30,58,138,.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(220,38,38,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--gold) }
.hero h1 {
  font-size: 72px;
  line-height: 1.0;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin-bottom: 28px;
  color: #fff;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--red); font-style: italic; font-weight: 600 }
.hero h1 .accent-blue { color: #93c5fd }
.hero .lede {
  font-size: 18px;
  line-height: 1.55;
  color: #a8a6a0;
  max-width: 500px;
  margin-bottom: 40px;
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center }
.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  margin-top: 48px;
}
.hero-meta > div {
  padding: 0 24px 0 0;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-meta > div:last-child { padding: 0 0 0 24px; border-right: 0 }
.hero-meta b {
  display: block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 4px;
  font-family: var(--sans);
}
.hero-meta span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6b68;
}

/* Hero visual panel */
.hero-panel {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
}
.hero-panel-inner {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(135deg, transparent 0 28px, rgba(30,58,138,.06) 28px 29px);
}
.hero-panel-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--red);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}
.hero-chip {
  position: absolute;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.4;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  min-width: 170px;
  color: var(--ink);
}
.hero-chip .k { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); display: block; margin-bottom: 3px }
.hero-chip .v { font-weight: 600; font-size: 13px; color: var(--ink) }
.hero-chip-1 { top: 28%; right: -16px }
.hero-chip-2 { bottom: 22%; left: -16px }
.hero-panel-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-panel-footer span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
}
.hero-dots { display: flex; gap: 6px }
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.hero-dot.active { background: var(--red) }

/* ── Sections ── */
.section { padding: 96px 0; border-bottom: 1px solid var(--rule) }
.section.bg-alt { background: var(--bg-2) }
.section.tight { padding: 72px 0 }
.section-head {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.section-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before { content: ""; width: 20px; height: 1px; background: var(--rule-2) }
.section-head h2 {
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-wrap: balance;
}
.section-head h2 em { font-style: italic; color: var(--blue); font-weight: 600 }
.section-head h2 .r { color: var(--red) }
.section-head p { color: var(--ink-3); max-width: 520px; font-size: 16px; margin-top: 16px; text-wrap: pretty }

/* ── Category grid ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.cat::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .2s;
}
.cat:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--blue);
}
.cat:hover::before { opacity: 1 }
.cat-art {
  flex: 1;
  background: var(--bg-2);
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 20px;
  min-height: 100px;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}
.cat:hover .cat-art { background: #fff }
.cat h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
}
.cat-meta { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; position: relative }
.cat-count { font-family: var(--mono); font-size: 11px; color: var(--blue); font-weight: 500; position: relative }

/* ── Two-column featured ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col .img {
  aspect-ratio: 5/4;
  background: var(--bg-3);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.two-col .img .stripe {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 20px, rgba(30,58,138,.05) 20px 21px);
}
.two-col .img .img-label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(249,248,244,.9); padding: 6px 10px; border-radius: 4px;
}
.two-col .eyebrow { color: var(--blue) }
.two-col h3 {
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 18px;
  text-wrap: balance;
}
.two-col p { color: var(--ink-3); font-size: 16px; margin: 0 0 24px; max-width: 480px; line-height: 1.6 }
.bullet-list {
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 0;
}
.bullet-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  font-size: 15px;
  color: var(--ink-2);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.bullet-list li:first-child { border-top: 1px solid var(--rule) }
.bullet-list li::before {
  content: "+";
  font-family: var(--mono);
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  margin-top: 1px;
}

/* ── Stats ── */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.stat {
  padding: 36px 32px;
  background: var(--bg);
  border-right: 1px solid var(--rule);
  transition: background .2s;
}
.stat:last-child { border-right: 0 }
.stat:hover { background: var(--bg-2) }
.stat b {
  display: block;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat b .unit {
  font-size: 28px;
  vertical-align: super;
  margin-left: 1px;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  -webkit-background-clip: text;
  background-clip: text;
}
.stat .label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Audience split ── */
.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.audience-card {
  border-radius: 12px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.audience-card.industry {
  background: var(--ink);
  color: #fff;
}
.audience-card.students {
  background: var(--bg-2);
  border: 1px solid var(--rule);
}
.audience-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  opacity: .06;
}
.audience-card.industry::before { background: var(--blue-2) }
.audience-card.students::before { background: var(--red) }
.aud-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.audience-card.industry .aud-tag { color: #93c5fd }
.audience-card.students .aud-tag { color: var(--red) }
.audience-card h3 {
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 16px;
}
.audience-card.industry h3 { color: #fff }
.audience-card p { font-size: 15px; line-height: 1.6; margin-bottom: 32px }
.audience-card.industry p { color: #9a9a98 }
.audience-card.students p { color: var(--ink-3) }
.aud-lines { display: grid; gap: 0 }
.aud-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px dashed;
  font-family: var(--mono);
  font-size: 12px;
}
.audience-card.industry .aud-line { border-color: rgba(255,255,255,.1); color: #9a9a98 }
.audience-card.industry .aud-line .val { color: #e8e6de }
.audience-card.students .aud-line { border-color: var(--rule-2); color: var(--ink-3) }
.audience-card.students .aud-line .val { color: var(--ink); font-weight: 600 }

/* ── Brands ── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.brand-cell {
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 20px 16px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  min-height: 80px;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s;
  text-align: center;
  line-height: 1.3;
}
.brand-cell:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(30,58,138,.1);
}

/* ── Visit / CTA strip ── */
.cta-strip {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
}
.cta-strip .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.cta-strip h2 {
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-wrap: balance;
  margin-bottom: 20px;
}
.cta-strip p { color: #9a9a98; font-size: 17px; margin-bottom: 36px; line-height: 1.55 }
.cta-strip .cta-actions { display: flex; gap: 14px; flex-wrap: wrap }
.cta-info { display: grid; gap: 0 }
.cta-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  font-family: var(--mono);
  font-size: 13px;
  align-items: start;
}
.cta-row:last-child { border-bottom: 1px solid rgba(255,255,255,.07) }
.cta-row .k { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #6b6b68; padding-top: 2px }
.cta-row .v { color: #e8e6de; font-family: var(--sans); font-size: 15px; line-height: 1.4 }
.cta-row .v.large { font-size: 18px; font-weight: 600; letter-spacing: -0.01em }
.map-placeholder {
  aspect-ratio: 16/10;
  background: #161616;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-top: 24px;
}
.map-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-road-h {
  position: absolute; left: 0; right: 0; top: 55%;
  height: 22px; background: rgba(255,255,255,.07);
  transform: rotate(-5deg) scaleX(1.2);
}
.map-road-v {
  position: absolute; left: 52%; top: 0; bottom: 0;
  width: 16px; background: rgba(255,255,255,.05);
}
.map-pin {
  position: absolute; top: 53%; left: 52%;
  transform: translate(-50%,-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(220,38,38,.2), 0 0 0 20px rgba(220,38,38,.08);
}
.map-label {
  position: absolute;
  top: calc(53% + 24px); left: 52%;
  transform: translateX(-50%);
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.12);
  color: #e8e6de;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  text-transform: uppercase;
}

/* ── Footer ── */
.footer {
  background: #0a0a0a;
  color: #6b6b68;
  padding: 72px 0 36px;
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid #1a1a1a;
}
.footer-wordmark {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1;
}
.footer-wordmark em { color: var(--red); font-style: normal }
.footer-tag { color: #4a4a47; font-size: 14px; line-height: 1.5; max-width: 260px; margin-top: 12px }
.footer-contact { margin-top: 28px; display: grid; gap: 10px }
.footer-contact a {
  display: inline-flex; align-items: center; gap: 8px;
  color: #a8a6a0; font-size: 14px; transition: color .15s;
}
.footer-contact a:hover { color: #fff }
.footer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #16a34a; color: #fff !important;
  padding: 10px 18px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600;
  transition: background .15s;
  width: fit-content;
  margin-top: 4px;
}
.footer-wa:hover { background: #15803d }
.footer-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3a3a38;
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-links { display: grid; gap: 11px }
.footer-links a { color: #9a9a98; transition: color .15s }
.footer-links a:hover { color: #e8e6de }
.footer-links span { color: #5a5a58 }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-family: var(--mono); font-size: 11px; color: #3a3a38; letter-spacing: 0.06em;
}

/* ── WhatsApp FAB ── */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  display: flex; align-items: center; gap: 10px;
  background: #16a34a;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(22,163,74,.45);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.wa-fab:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 32px rgba(22,163,74,.5) }
.wa-fab svg { flex-shrink: 0 }

/* ── Catalog page ── */
.page-hero {
  border-bottom: 1px solid var(--rule);
  padding: 56px 0 48px;
  background: var(--bg-2);
}
.crumbs {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.crumbs a { color: var(--ink-3); transition: color .15s }
.crumbs a:hover { color: var(--blue) }
.crumbs .sep { opacity: .4 }
.page-hero h1 {
  font-size: 60px;
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 16px;
  text-wrap: balance;
}
.page-hero h1 em { font-style: italic; color: var(--blue); font-weight: 700 }
.page-hero .sub {
  color: var(--ink-3); max-width: 640px; font-size: 17px; line-height: 1.55;
}
.page-hero-meta {
  display: flex; gap: 36px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono); font-size: 12px; color: var(--ink-3);
}
.page-hero-meta b {
  color: var(--ink); font-family: var(--sans);
  font-size: 15px; font-weight: 700; margin-right: 6px;
}

/* Catalog layout */
.catalog-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 48px 0 96px;
}
.facets { position: sticky; top: 100px; align-self: start }
.facet-group {
  border-top: 1px solid var(--rule);
  padding: 20px 0;
}
.facet-group:first-child { border-top: 0; padding-top: 0 }
.facets h5 {
  font-family: var(--mono); font-size: 10px; color: var(--ink-3);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 14px; font-weight: 500;
}
.facet-list { display: grid; gap: 6px }
.facet-list li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--ink-3);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .12s, color .12s;
}
.facet-list li:hover { background: var(--bg-2); color: var(--ink) }
.facet-list li.on {
  background: var(--blue-3);
  color: var(--blue);
  font-weight: 600;
}
.facet-list li .n {
  font-family: var(--mono); font-size: 11px; color: var(--ink-3);
}
.facet-list li.on .n { color: var(--blue-2) }

.toolbar {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 20px; border-bottom: 1px solid var(--rule); margin-bottom: 24px;
}
.toolbar .count { font-size: 14px; color: var(--ink-3) }
.toolbar .count b { color: var(--ink); font-weight: 700 }
.toolbar .sort { display: flex; gap: 4px; align-items: center }
.toolbar .sort button {
  background: transparent; color: var(--ink-3);
  padding: 6px 12px; border-radius: 6px;
  font-size: 13px; font-weight: 500;
  transition: background .12s, color .12s;
}
.toolbar .sort button:hover { background: var(--bg-2); color: var(--ink) }
.toolbar .sort button.on { background: var(--ink); color: #fff }

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
  cursor: pointer;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.product:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--blue);
}
.product .prod-img {
  aspect-ratio: 4/3;
  background: var(--bg-2);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.product .prod-img .stripe {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(10,10,10,.03) 14px 15px);
}
.product .prod-img .prod-lbl {
  position: absolute; left: 10px; bottom: 10px;
  font-family: var(--mono); font-size: 9px; color: var(--ink-3);
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,255,255,.85); padding: 4px 8px; border-radius: 3px;
}
.product .prod-badge {
  position: absolute; left: 10px; top: 10px;
  font-family: var(--mono); font-size: 10px; color: #fff;
  padding: 4px 9px; border-radius: 4px; letter-spacing: 0.08em; font-weight: 600;
}
.product .prod-badge.bulk { background: var(--blue) }
.product .prod-badge.kit { background: var(--red) }
.product .prod-head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px }
.product .pn { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.05em }
.product h4 { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; margin: 0; line-height: 1.35 }
.product .specs {
  font-family: var(--mono); font-size: 11px; color: var(--ink-3);
  display: flex; flex-wrap: wrap; gap: 4px 10px;
  padding-top: 10px; border-top: 1px solid var(--rule);
}
.product .specs span b { color: var(--ink-2); font-weight: 500; margin-right: 4px; font-family: var(--sans) }
.product .prod-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
}
.stock { font-family: var(--mono); font-size: 11px; display: flex; align-items: center; gap: 5px }
.stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0 }
.stock-in { color: var(--green) }
.stock-in::before { background: var(--green) }
.stock-low { color: #ca8a04 }
.stock-low::before { background: #ca8a04 }
.stock-out { color: var(--ink-3) }
.stock-out::before { background: var(--ink-3) }
.enquire-btn {
  font-family: var(--mono); font-size: 11px; color: var(--blue);
  letter-spacing: 0.06em; text-transform: uppercase; transition: color .15s;
}
.product:hover .enquire-btn { color: var(--red) }

.pagination {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px;
  font-family: var(--mono); font-size: 12px; color: var(--ink-3);
}
.page-nums { display: flex; gap: 4px }
.page-nums a {
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid var(--rule); border-radius: 6px;
  transition: background .12s, border-color .12s, color .12s;
}
.page-nums a:hover { border-color: var(--blue); color: var(--blue) }
.page-nums a.on { background: var(--ink); color: #fff; border-color: var(--ink) }

/* ── About page ── */
.about-hero {
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-2);
}
.about-hero h1 {
  font-size: 88px;
  line-height: 0.97;
  letter-spacing: -0.045em;
  font-weight: 800;
  margin: 24px 0 28px;
  max-width: 900px;
  text-wrap: balance;
}
.about-hero h1 em { font-style: italic; color: var(--blue); font-weight: 700 }
.about-hero .lede { font-size: 19px; color: var(--ink-3); max-width: 640px; line-height: 1.6 }

.story {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
}
.story-sticky { position: sticky; top: 120px; align-self: start }
.story-sticky .section-tag { margin-bottom: 20px }
.story-sticky h2 {
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-wrap: balance;
}
.story-sticky h2 em { font-style: italic; color: var(--blue); font-weight: 600 }
.story-body p {
  font-size: 17px; color: var(--ink-2); line-height: 1.65; margin-bottom: 24px;
}
.story-body p:first-child::first-letter {
  font-size: 60px; float: left; line-height: 0.9;
  padding: 8px 12px 0 0; font-weight: 800; color: var(--red);
}

.timeline { margin-top: 56px; border-top: 1px solid var(--rule) }
.timeline-row {
  display: grid; grid-template-columns: 90px 1fr; gap: 28px;
  padding: 20px 0; border-bottom: 1px solid var(--rule);
  align-items: start;
}
.timeline-yr {
  font-family: var(--mono); font-size: 13px;
  color: var(--red); letter-spacing: 0.08em; font-weight: 500;
  padding-top: 3px;
}
.timeline-ev b { display: block; font-weight: 600; font-size: 15px; margin-bottom: 4px }
.timeline-ev p { font-size: 14px; color: var(--ink-3); margin: 0 }

.values-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-2);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.value-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 36px;
  transition: box-shadow .2s, transform .2s;
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px) }
.value-num { font-family: var(--mono); font-size: 10px; color: var(--ink-3); margin-bottom: 20px; letter-spacing: 0.14em }
.value-card h4 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.2 }
.value-card h4 em { font-style: italic; color: var(--blue) }
.value-card p { color: var(--ink-3); font-size: 15px; line-height: 1.6 }

.contact-section { padding: 96px 0; border-bottom: 1px solid var(--rule) }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-head h4 {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px; font-weight: 500;
}
.contact-big { font-size: 34px; line-height: 1.1; letter-spacing: -0.025em; font-weight: 700; margin-bottom: 28px }
.contact-big em { color: var(--red); font-style: normal }
.contact-rows { display: grid; gap: 0 }
.contact-r {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 16px; padding: 14px 0; border-top: 1px solid var(--rule);
  align-items: start;
}
.contact-r .k {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3); padding-top: 3px;
}
.contact-r .v { font-size: 15px; color: var(--ink); line-height: 1.4 }

.hours-table { margin-top: 40px }
.hours-table h4 {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; font-weight: 500;
}
.hours-row {
  display: grid; grid-template-columns: 1fr auto;
  padding: 10px 0; border-top: 1px dashed var(--rule-2);
  font-size: 14px;
}
.hours-row:first-of-type { border-top: 0 }
.hours-row .day { color: var(--ink-2) }
.hours-row .time { color: var(--ink); font-weight: 500 }
.hours-row.closed .time { color: var(--red) }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 56px }
  .hero h1 { font-size: 52px }
  .hero-panel { display: none }
  .cat-grid { grid-template-columns: repeat(2, 1fr) }
  .stats-band { grid-template-columns: repeat(2, 1fr) }
  .brands-grid { grid-template-columns: repeat(3, 1fr) }
  .two-col, .audience, .cta-strip .wrap, .contact-grid { grid-template-columns: 1fr }
  .footer-top { grid-template-columns: 1fr 1fr }
  .catalog-wrap { grid-template-columns: 1fr }
  .facets { position: static }
  .products { grid-template-columns: repeat(2, 1fr) }
  .about-hero h1 { font-size: 60px }
  .story { grid-template-columns: 1fr; gap: 40px }
  .story-sticky { position: static }
  .values-grid { grid-template-columns: 1fr 1fr }
  .section-head { grid-template-columns: 1fr }
}
@media (max-width: 680px) {
  .wrap { padding: 0 20px }
  .hero h1 { font-size: 40px }
  .hero .wrap { padding-top: 64px; padding-bottom: 64px }
  .cat-grid { grid-template-columns: 1fr }
  .stats-band { grid-template-columns: 1fr 1fr; border-radius: 0 }
  .brands-grid { grid-template-columns: repeat(2, 1fr) }
  .section { padding: 64px 0 }
  .about-hero h1 { font-size: 44px }
  .page-hero h1 { font-size: 44px }
  .products { grid-template-columns: 1fr }
  .audience { grid-template-columns: 1fr }
  .values-grid { grid-template-columns: 1fr }
  .footer-top { grid-template-columns: 1fr }
  .nav { gap: 16px }
  .nav a:not(.nav-cta) { display: none }
  .hero-meta { grid-template-columns: 1fr }
  .hero-meta > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); padding: 0 0 16px; margin-bottom: 16px }
  .hero-meta > div:last-child { border-bottom: 0; margin-bottom: 0; padding: 0 }
  .wa-fab span { display: none }
  .wa-fab { padding: 14px }
}

/* ══════════════════════════════════════════════
   SHARED SITE-WIDE COMPONENTS
   (used across index.html, products.html, terms.html)
══════════════════════════════════════════════ */

/* ── Brand logo ── */
.brand-logo-main {
  height: 44px; width: auto;
  display: block; object-fit: contain; flex-shrink: 0;
}

/* ── Mobile hamburger button ── */
.nav-hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px; color: var(--ink);
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform .22s, opacity .15s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0) }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }
@media (max-width: 1100px) { .nav-hamburger { display: flex } }

/* ── Mobile nav panel ── */
.mobile-nav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,.97); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule); z-index: 99; padding-bottom: 8px;
}
.mobile-nav.open { display: block }
.mobile-nav a {
  display: block; padding: 15px 24px; font-size: 16px; font-weight: 500;
  color: var(--ink-2); border-bottom: 1px solid var(--rule);
  text-decoration: none; transition: background .12s;
}
.mobile-nav a:last-child { border-bottom: none }
.mobile-nav a:hover { background: var(--bg-2) }
.mobile-nav .mob-cta {
  margin: 16px 20px 8px; display: block; text-align: center;
  background: var(--ink); color: #fff !important;
  padding: 14px 20px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; border-bottom: none !important;
}
.mobile-nav .mob-cta:hover { background: var(--blue) !important }
@media (max-width: 1100px) {
  .nav a:not(.nav-cta):not(.nav-hamburger) { display: none !important }
  .header { position: sticky }
}

/* ── Footer v2 (3-column redesign) ── */
.footer-top-v2 { grid-template-columns: 1.6fr 2fr 1fr }
.footer-shop-name {
  font-size: 18px; font-weight: 800; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.footer-shop-desc {
  font-size: 13px; color: #4a4a47; line-height: 1.7;
  max-width: 240px; margin-bottom: 24px;
}
.footer-dl { display: grid; gap: 14px }
.footer-dl-row { display: grid; grid-template-columns: 52px 1fr; gap: 12px; align-items: start }
.footer-dl-k {
  font-family: var(--mono); font-size: 9px; text-transform: uppercase;
  letter-spacing: 0.12em; color: #3a3a38; padding-top: 2px; white-space: nowrap;
}
.footer-dl-v { font-size: 13px; color: #5a5a58; line-height: 1.6 }
.footer-dl-v a { color: #5a5a58; transition: color .15s }
.footer-dl-v a:hover { color: #9a9a98 }
.footer-link-group + .footer-link-group { margin-top: 28px }
@media (max-width: 1100px) { .footer-top-v2 { grid-template-columns: 1fr 1fr } }
@media (max-width: 680px)  { .footer-top-v2 { grid-template-columns: 1fr } }
