/* ══════════════════════════════════════════════════════════
   SHIVYA FORGE — forged.css
   Theme : #ff6600 orange · dark navy · white
   Fonts : Nunito (body) · Barlow Condensed (headings/hero)
   FIX   : footer Quick Links separator lines removed by
           scoping nav__link border-bottom to .nav only
══════════════════════════════════════════════════════════ */

/* ── CSS Variables ───────────────────────────────────── */
:root {
  --orange:        #ff6600;
  --orange-dark:   #cc5200;
  --orange-light:  #ff8533;
  --orange-bg:     #fff4ee;
  --navy:          #0f1624;
  --navy-mid:      #1a2540;
  --grey-dark:     #1a1a2e;
  --grey-mid:      #4a4a6a;
  --grey-light:    #f4f4f8;
  --grey-border:   #e0e0ec;
  --white:         #ffffff;
  --text-primary:  #0f1624;
  --text-body:     #4a4a6a;

  --header-h:      76px;
  --topbar-h:      38px;
  --radius:        12px;
  --shadow-sm:     0 2px 12px rgba(0,0,0,.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,.14);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.22);
  --transition:    0.32s cubic-bezier(.4,0,.2,1);

  --sf-bg:         #0d0d0d;
  --sf-body:       #111111;
  --sf-border:     rgba(255,255,255,.07);
  --sf-muted:      rgba(255,255,255,.48);
  --sf-link:       rgba(255,255,255,.72);
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; padding: 0; margin: 0; }
p    { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ══════════════════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════════════════ */
.top-bar {
  background: var(--grey-dark);
  position: relative;
  z-index: 110;
  width: 100%;
}
.top-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
}
.top-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 32px;
  flex-wrap: wrap;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.top-bar__item svg {
  color: var(--orange);
  flex-shrink: 0;
  display: block;
  align-self: center;
}
.top-bar__item a {
  color: var(--orange);
  font-weight: 700;
  transition: .3s ease;
}
.top-bar__item a:hover { color: var(--orange-light); }

/* ══════════════════════════════════════════════════════════
   MOBILE TOP BAR
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .top-bar { padding: 0; }
  .top-bar__inner {
    flex-direction: row;
    align-items: center;
    justify-content: left;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 10px 16px;
  }
  .top-bar__item { font-size: 13px; line-height: 1.4; white-space: nowrap; }
  .top-bar__item svg { width: 14px; height: 14px; }
}

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 150;
  background: var(--white);
  height: var(--header-h);
  box-shadow: 0 2px 24px rgba(0,0,0,.10);
  transition: height var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  height: 62px;
  box-shadow: 0 4px 32px rgba(0,0,0,.16);
}
.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height var(--transition);
}
.header.scrolled .logo-img { height: 42px; }

.logo-fallback { display: none; flex-direction: column; line-height: 1; }
.logo-img[style*="display:none"] + .logo-fallback,
.logo-img[style*="display: none"] + .logo-fallback { display: flex; }

.logo-fallback__main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: .04em;
}
.logo-o { color: var(--orange); }
.logo-fallback__sub {
  font-size: .62rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

/* ── nav__link: base styles (no border-bottom here) ── */
.nav__link {
  display: block;
  padding: 8px 12px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}
.nav__link:hover,
.nav__link.active { color: var(--orange); }
.nav__link:hover::after,
.nav__link.active::after { left: 12px; right: 12px; }

.btn-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white) !important;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .84rem;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 3px 14px rgba(255,102,0,.32);
}
.btn-cta:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 20px rgba(255,102,0,.45);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 300;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-overlay.show {
  display: block;
  opacity: 1;
  pointer-events: all;
}

/* ══════════════════════════════════════════════════════════
   PRODUCT HERO BANNER
══════════════════════════════════════════════════════════ */
.prod-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.prod-hero--second { min-height: 400px; }

.prod-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8,10,18,.88) 0%,
    rgba(8,10,18,.60) 55%,
    rgba(255,102,0,.18) 100%
  );
}

.prod-hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 80px;
  max-width: 820px;
}

.prod-hero__tag {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,102,0,.14);
  border: 1px solid rgba(255,102,0,.4);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  display: block;
  width: fit-content;
}

.prod-hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  animation: fadeUp .75s ease both;
}
.prod-hero__sub-title {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .04em;
}
.accent { color: var(--orange); }

.prod-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeUp .75s .15s ease both;
}
.prod-hero__divider {
  width: 72px;
  height: 4px;
  background: var(--orange);
  border-radius: 4px;
}
.prod-hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.prod-hero__scroll-hint span {
  display: block;
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  animation: bounce 1.6s ease-in-out infinite;
}

@keyframes bounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(12px); opacity: .5; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   PRODUCT SECTION
══════════════════════════════════════════════════════════ */
.prod-section {
  padding: 96px 0;
  background: var(--white);
}
.prod-section--dark { background: var(--grey-light); }

/* Shared typography */
.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-bg);
  border: 1.5px solid var(--orange-light);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-primary);
  margin-bottom: 18px;
  letter-spacing: .01em;
}
.section-title em { font-style: normal; color: var(--orange); }

/* prod-intro two-column layout */
.prod-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.prod-intro--reverse { grid-template-columns: 1fr 1fr; }
.prod-intro--reverse .prod-intro__left { order: 2; }
.prod-intro--reverse .prod-intro__right { order: 1; }

.prod-intro__desc {
  color: var(--text-body);
  font-size: .97rem;
  margin-bottom: 28px;
}

/* Product lists */
.prod-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin-bottom: 28px;
}
.prod-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}
.prod-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}
.prod-list--compact li { font-size: .84rem; }

.bullet-icon {
  color: var(--orange);
  font-size: .5rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* comp-list-columns */
.comp-list-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 20px;
  margin-bottom: 28px;
}

/* Material badge */
.material-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 12px 20px;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
  margin-top: 8px;
  border-left: 3px solid var(--orange);
}
.material-badge svg { color: var(--orange); flex-shrink: 0; }
.material-badge strong { color: var(--orange); }

.material-badge--light {
  background: var(--white);
  color: var(--text-primary);
  border: 1.5px solid var(--grey-border);
  border-left: 3px solid var(--orange);
  box-shadow: var(--shadow-sm);
}
.material-badge--light strong { color: var(--navy); }

/* ══════════════════════════════════════════════════════════
   PRODUCT CARDS GRID
══════════════════════════════════════════════════════════ */
.prod-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.prod-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--grey-border);
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.prod-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--orange);
}
.prod-card--wide { grid-column: 1 / -1; }

.prod-card__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1e2d4a 100%);
}
.prod-card--wide .prod-card__img-wrap { height: 220px; }

.prod-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.prod-card:hover .prod-card__img-wrap img { transform: scale(1.06); }

.prod-card__img-wrap.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-card__img-wrap.no-img::after {
  content: '⚙';
  font-size: 3.5rem;
  opacity: .18;
  color: var(--white);
}

.prod-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 28px 14px 10px;
}

.prod-card__body {
  padding: 14px 16px;
  border-top: 1.5px solid var(--grey-border);
}
.prod-card__body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.prod-card__body p {
  font-size: .82rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   COMPONENT CARDS
══════════════════════════════════════════════════════════ */
.comp-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.comp-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.comp-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.comp-card__img {
  position: relative;
  aspect-ratio: 1 / 0.85;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #2a3550 100%);
}
.comp-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.comp-card:hover .comp-card__img img { transform: scale(1.06); }

.comp-card__img.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.comp-card__img.no-img::before {
  content: '⚙';
  font-size: 3rem;
  opacity: .2;
  color: white;
}
.comp-card__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,14,26,.85) 0%, transparent 100%);
  color: var(--white);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 30px 12px 10px;
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(255,102,0,.38);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,102,0,.50);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.4);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.btn-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

/* ══════════════════════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════════════════════ */
.cta-strip {
  background: linear-gradient(100deg, var(--navy) 0%, var(--navy-mid) 50%, rgba(255,102,0,.12) 100%);
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,102,0,.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip__text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
  margin-bottom: 8px;
}
.cta-strip__text p {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  margin: 0;
}
.cta-strip__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   FOOTER — 3-column grid
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--sf-bg);
  color: var(--sf-link);
}
.footer__top {
  padding: 72px 0 56px;
  border-top: 1px solid var(--sf-border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

/* Brand column */
.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}
.footer__logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.footer__logo-fallback { display: none; flex-direction: column; line-height: 1; }
.footer__logo img[style*="display:none"] + .footer__logo-fallback,
.footer__logo img[style*="display: none"] + .footer__logo-fallback { display: flex; }
.footer__logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .04em;
}
.footer__logo-main span { color: var(--orange); }
.footer__logo-sub {
  font-size: .62rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .22em;
  text-transform: uppercase;
}
.footer__about {
  font-size: .87rem;
  line-height: 1.78;
  color: var(--sf-muted);
  margin-bottom: 24px;
}
.footer__about strong { color: rgba(255,255,255,.8); }

.footer__social { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sf-muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-icon:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.social-icon svg { pointer-events: none; }

/* Column headings */
.footer__heading {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

/* ── FIXED: footer Quick Links — plain anchor styles, no border lines ── */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.footer__links li a {
  font-size: .87rem;
  color: var(--sf-link);
  display: block;
  font-weight: 600;
  /* NO border-bottom here — lines removed */
  transition: color var(--transition), padding-left var(--transition);
}
.footer__links li a:hover {
  color: var(--orange);
  padding-left: 6px;
}

/* Contact list */
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
}
.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer__contact-icon {
  width: 36px; height: 36px;
  background: rgba(255,102,0,.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.footer__contact-list div strong {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.footer__contact-list a,
.footer__contact-list span {
  font-size: .87rem;
  color: var(--sf-link);
  line-height: 1.5;
  display: block;
}
.footer__contact-list a:hover { color: var(--orange); }

/* Bottom bar */
.footer__bottom { border-top: 1px solid var(--sf-border); padding: 18px 0; }
.footer__bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .79rem;
  color: var(--sf-muted);
}
.heart { color: #e05555; }

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal--right {
  opacity: 0;
  transform: translateX(40px);
}
.reveal.visible { opacity: 1; transform: translate(0, 0); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

/* Tablet ≤ 1100px */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
  .prod-intro,
  .prod-intro--reverse { gap: 48px; }
}

/* Tablet ≤ 960px */
@media (max-width: 960px) {
  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 88vw);
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px 40px;
    box-shadow: -8px 0 40px rgba(0,0,0,.18);
    transition: right var(--transition);
    gap: 0;
    overflow-y: auto;
    z-index: 160;
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; align-items: flex-start; width: 100%; }

  /* ── FIXED: border-bottom scoped ONLY to mobile nav links ── */
  .nav .nav__link {
    font-size: 1.05rem;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--grey-border);
    color: var(--text-primary);
  }
  .nav .nav__link::after { display: none; }

  .btn-cta { margin-top: 24px; width: 100%; text-align: center; padding: 14px; }

  .prod-intro,
  .prod-intro--reverse { grid-template-columns: 1fr; }
  .prod-intro--reverse .prod-intro__left { order: 0; }
  .prod-intro--reverse .prod-intro__right { order: 0; }

  .prod-hero__content { padding: 40px 40px; }
  .comp-list-columns { grid-template-columns: 1fr 1fr; }
}

/* Mobile ≤ 640px */
@media (max-width: 640px) {
  .top-bar { height: auto; padding: 6px 0; }
  .top-bar__inner { gap: 14px; flex-wrap: nowrap; justify-content: left; }
  .top-bar__item { font-size: .72rem; }

  .prod-hero { min-height: 340px; }
  .prod-hero__content { padding: 32px 20px; }
  .prod-hero__title { font-size: 2.4rem; }

  .prod-section { padding: 60px 0; }

  .prod-list-grid { grid-template-columns: 1fr; }
  .comp-list-columns { grid-template-columns: 1fr; }

  .prod-cards-grid { grid-template-columns: 1fr; }
  .prod-card--wide { grid-column: auto; }

  .comp-images-grid { grid-template-columns: 1fr 1fr; }

  .cta-strip { padding: 48px 0; }
  .cta-strip__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-strip__actions { width: 100%; }
  .cta-strip__actions .btn-primary,
  .cta-strip__actions .btn-outline { flex: 1; justify-content: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* Very small ≤ 380px */
@media (max-width: 380px) {
  .comp-images-grid { grid-template-columns: 1fr; }
  .prod-list-grid { grid-template-columns: 1fr; }
}