/* ============================================================
   Sunrise Pharmaceuticals — Design System
   Palette derived from brand logo (sunrise gradient)
   ============================================================ */

:root {
  /* Brand — sunrise gradient */
  --red:        #E1251B;
  --orange:     #F26722;
  --gold:       #F9A61A;
  --amber:      #FBB040;
  --sunrise:    linear-gradient(120deg, #E1251B 0%, #F26722 45%, #F9A61A 100%);
  --sunrise-soft: linear-gradient(120deg, #fdece0 0%, #fff6e6 100%);

  /* Neutrals */
  --ink:        #23201d;
  --ink-2:      #4a453f;
  --muted:      #7c756c;
  --line:       #ece7e1;
  --paper:      #ffffff;
  --paper-2:    #faf7f3;
  --paper-3:    #f4efe8;
  --grey:       #6d6e71; /* logo "PHARMACEUTICALS" grey */
  --dark:       #241f1c;
  --dark-2:     #322b26;

  /* Utility */
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
  --shadow-sm:  0 2px 8px rgba(35,32,29,.06);
  --shadow:     0 12px 34px -14px rgba(35,32,29,.22);
  --shadow-lg:  0 26px 60px -22px rgba(35,32,29,.30);
  --ring:       0 0 0 4px rgba(242,103,34,.18);
  --container:  1200px;
  --ease:       cubic-bezier(.4,.2,.2,1);

  --font-head:  "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body:  "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; color: var(--ink); letter-spacing: -.01em; }
ul { list-style: none; padding: 0; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 44px, var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--paper { background: var(--paper-2); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--sunrise); border-radius: 2px; }
.center .eyebrow::before { display: none; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin: 14px 0 0; }
.section-lead { color: var(--ink-2); max-width: 62ch; margin: 16px 0 0; font-size: 1.06rem; }
.center .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--sunrise); color: #fff; box-shadow: 0 10px 24px -10px rgba(242,103,34,.7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(242,103,34,.85); }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--orange); color: var(--orange); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }

/* ============================================================
   Top bar + Header
   ============================================================ */
.topbar {
  background: var(--dark); color: rgba(255,255,255,.82);
  font-size: .84rem; letter-spacing: .01em;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 42px; }
.topbar a { color: rgba(255,255,255,.82); transition: color .2s; }
.topbar a:hover { color: var(--amber); }
.topbar__left { display: flex; gap: 22px; align-items: center; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 14px; height: 14px; color: var(--amber); }
.topbar__social { display: flex; gap: 14px; align-items: center; }
.topbar__social svg { width: 15px; height: 15px; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__logo img { height: 40px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: .96rem;
  color: var(--ink-2); padding: 10px 16px; border-radius: 10px;
  position: relative; transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--ink); background: var(--paper-3); }
.nav__links a.active { color: var(--orange); }
.nav__links a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 2px; background: var(--sunrise); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: var(--paper); border-radius: 10px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav__toggle svg { width: 22px; height: 22px; color: var(--ink); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--dark);
  color: #fff;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(249,166,26,.42), transparent 60%),
    radial-gradient(760px 520px at 12% 108%, rgba(225,37,27,.30), transparent 55%),
    linear-gradient(160deg, #2a231e 0%, #1c1714 100%);
}
.hero__rays {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image: repeating-conic-gradient(from 210deg at 84% -6%, rgba(255,255,255,.06) 0deg 3deg, transparent 3deg 12deg);
  mask-image: radial-gradient(60% 60% at 84% 0%, #000, transparent 72%);
}
.hero .container { position: relative; z-index: 2; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding: 84px 0 96px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  padding: 8px 16px; border-radius: 999px; font-size: .84rem; font-weight: 500;
  color: #fff; margin-bottom: 22px; backdrop-filter: blur(6px);
}
.hero__badge b { color: var(--amber); font-weight: 700; }
.hero h1 {
  color: #fff; font-size: clamp(2.4rem, 5vw, 3.9rem); line-height: 1.06;
  letter-spacing: -.02em;
}
.hero h1 .grad {
  background: linear-gradient(100deg, #F9A61A, #F26722);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { color: rgba(255,255,255,.82); font-size: 1.16rem; max-width: 52ch; margin: 22px 0 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats {
  display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,.14);
}
.hero__stat b { font-family: var(--font-head); font-size: 2rem; font-weight: 700; display: block; color: #fff; line-height: 1; }
.hero__stat span { font-size: .86rem; color: rgba(255,255,255,.66); letter-spacing: .02em; }

/* Hero visual — layered product/animal motif card */
.hero__visual { position: relative; height: 460px; }
.hero__card {
  position: absolute; border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow-lg); backdrop-filter: blur(4px);
}
.hero__card--main { inset: 0 0 60px 40px; }
.hero__card--main .sun-scene { width: 100%; height: 100%; }
.hero__chip {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.96); color: var(--ink);
  padding: 14px 18px; border-radius: 14px; box-shadow: var(--shadow-lg);
  font-weight: 600; font-family: var(--font-head); font-size: .92rem;
}
.hero__chip small { display: block; font-weight: 500; color: var(--muted); font-size: .78rem; font-family: var(--font-body); }
.hero__chip .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--sunrise-soft); color: var(--orange); flex: none; }
.hero__chip .ic svg { width: 20px; height: 20px; }
.hero__chip--tl { top: 18px; left: -18px; }
.hero__chip--br { bottom: 30px; right: -12px; }

/* Sun scene SVG wrapper */
.sun-scene { display: block; }

/* ============================================================
   Trust bar (logos / certs)
   ============================================================ */
.trustbar { background: var(--paper); border-bottom: 1px solid var(--line); }
.trustbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap; padding: 26px 0;
}
.trust__item { display: flex; align-items: center; gap: 12px; color: var(--ink-2); font-weight: 500; font-size: .95rem; }
.trust__item svg { width: 26px; height: 26px; color: var(--orange); flex: none; }
.trust__item b { font-family: var(--font-head); color: var(--ink); }

/* ============================================================
   Feature / value cards
   ============================================================ */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--sunrise-soft); color: var(--orange); margin-bottom: 20px;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--ink-2); font-size: .98rem; }

/* Category cards (product areas) */
.cat-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px; color: #fff; isolation: isolate;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card__bg { position: absolute; inset: 0; z-index: -2; }
.cat-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 30%, rgba(20,16,13,.86) 100%);
}
.cat-card__count {
  align-self: flex-start; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.34);
  backdrop-filter: blur(6px); padding: 5px 13px; border-radius: 999px;
  font-size: .8rem; font-weight: 600; margin-bottom: auto;
}
.cat-card h3 { color: #fff; font-size: 1.5rem; }
.cat-card p { color: rgba(255,255,255,.85); margin: 8px 0 16px; font-size: .96rem; }
.cat-card__link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: .95rem; }
.cat-card__link svg { width: 18px; height: 18px; transition: transform .25s; }
.cat-card:hover .cat-card__link svg { transform: translateX(4px); }

/* ============================================================
   Split / feature rows
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.checklist { display: grid; gap: 14px; margin-top: 26px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-2); }
.checklist .tick {
  width: 24px; height: 24px; border-radius: 50%; background: var(--sunrise-soft);
  color: var(--orange); display: grid; place-items: center; flex: none; margin-top: 2px;
}
.checklist .tick svg { width: 14px; height: 14px; }
.checklist b { color: var(--ink); font-family: var(--font-head); font-weight: 600; }

/* Infrastructure cards */
.infra { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.infra__item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; text-align: center; transition: transform .3s, box-shadow .3s;
}
.infra__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.infra__num { font-family: var(--font-head); font-weight: 700; color: var(--amber); font-size: .9rem; }
.infra__item .ic { width: 54px; height: 54px; margin: 8px auto 14px; border-radius: 14px; background: var(--sunrise-soft); color: var(--orange); display: grid; place-items: center; }
.infra__item .ic svg { width: 26px; height: 26px; }
.infra__item h4 { font-size: 1.08rem; }
.infra__item p { font-size: .9rem; color: var(--muted); margin-top: 6px; }

/* Stats band */
.statband { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.statband::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 380px at 85% 120%, rgba(249,166,26,.28), transparent 60%);
}
.statband .grid { position: relative; z-index: 1; }
.statband__item { text-align: center; padding: 12px; }
.statband__item b { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; display: block; line-height: 1; background: linear-gradient(100deg,#F9A61A,#F26722); -webkit-background-clip: text; background-clip: text; color: transparent; }
.statband__item span { color: rgba(255,255,255,.72); font-size: .95rem; }

/* ============================================================
   CTA band
   ============================================================ */
.cta {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--sunrise); color: #fff; padding: 60px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 90% -20%, rgba(255,255,255,.28), transparent 60%);
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.cta p { color: rgba(255,255,255,.92); max-width: 60ch; margin: 14px auto 28px; font-size: 1.08rem; }
.cta .btn--primary { background: #fff; color: var(--orange); }
.cta .btn--primary:hover { background: #fff; }
.cta .btn--ghost { border-color: rgba(255,255,255,.7); }

/* ============================================================
   Page hero (interior)
   ============================================================ */
.page-hero { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0;
  background:
    radial-gradient(900px 420px at 82% -30%, rgba(249,166,26,.34), transparent 60%),
    radial-gradient(600px 400px at 5% 130%, rgba(225,37,27,.24), transparent 55%),
    linear-gradient(160deg,#2a231e,#1b1613);
}
.page-hero .container { position: relative; z-index: 1; padding: 74px 0 66px; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.4vw, 3.2rem); }
.page-hero p { color: rgba(255,255,255,.8); max-width: 60ch; margin-top: 14px; font-size: 1.1rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,.6); font-size: .88rem; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }

/* ============================================================
   Products catalogue
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  font-family: var(--font-head); font-weight: 500; font-size: .92rem;
  padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--paper); color: var(--ink-2); cursor: pointer; transition: all .22s var(--ease);
}
.filter-btn:hover { border-color: var(--amber); color: var(--ink); }
.filter-btn.active { background: var(--sunrise); border-color: transparent; color: #fff; box-shadow: 0 8px 18px -8px rgba(242,103,34,.7); }

.prod-group { margin-bottom: 56px; scroll-margin-top: 120px; }
.prod-group__head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.prod-group__head .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--sunrise); color: #fff; display: grid; place-items: center; flex: none; box-shadow: 0 10px 20px -10px rgba(242,103,34,.7); }
.prod-group__head .ic svg { width: 26px; height: 26px; }
.prod-group__head h2 { font-size: 1.7rem; }
.prod-group__head span { color: var(--muted); font-size: .92rem; }

.subcat { margin: 26px 0 8px; display: flex; align-items: center; gap: 12px; }
.subcat h3 { font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); font-weight: 600; }
.subcat::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.prod-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
  display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.prod-card__thumb {
  aspect-ratio: 4/3; background: var(--sunrise-soft); position: relative;
  display: grid; place-items: center; overflow: hidden;
}
.prod-card__thumb svg { width: 46px; height: 46px; color: var(--orange); opacity: .8; }
.prod-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod-card__tag {
  position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.94);
  color: var(--ink-2); font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: 999px;
  font-family: var(--font-head);
}
.prod-card__body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.prod-card__body h4 { font-size: 1.05rem; line-height: 1.3; }
.prod-card__form { color: var(--muted); font-size: .84rem; margin-top: 4px; }
.prod-card__cta { margin-top: 14px; font-family: var(--font-head); font-weight: 600; font-size: .86rem; color: var(--orange); display: inline-flex; gap: 6px; align-items: center; }
.prod-card__cta svg { width: 15px; height: 15px; transition: transform .2s; }
.prod-card:hover .prod-card__cta svg { transform: translateX(3px); }

/* ============================================================
   Forms
   ============================================================ */
.form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .9rem; margin-bottom: 7px; color: var(--ink); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .98rem; color: var(--ink); background: var(--paper-2);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); background: #fff; box-shadow: var(--ring);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 6px; }
.form-success {
  display: none; align-items: center; gap: 12px; background: #eef8ef; border: 1px solid #cfe9d2;
  color: #256b31; padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-weight: 500;
}
.form-success svg { width: 22px; height: 22px; flex: none; }
.form-success.show { display: flex; }

/* Info cards (contact) */
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.info-card .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--sunrise-soft); color: var(--orange); display: grid; place-items: center; margin-bottom: 16px; }
.info-card .ic svg { width: 24px; height: 24px; }
.info-card h4 { font-size: 1.1rem; margin-bottom: 6px; }
.info-card a, .info-card p { color: var(--ink-2); font-size: .96rem; }
.info-card a:hover { color: var(--orange); }

/* People / contacts */
.person { display: flex; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.person:last-child { border-bottom: 0; }
.person__avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--sunrise); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; flex: none; }
.person__meta b { font-family: var(--font-head); display: block; }
.person__meta span { color: var(--muted); font-size: .88rem; }
.person__meta a { color: var(--orange); font-size: .92rem; font-weight: 500; }

/* Map */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 68px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 46px; }
.footer__logo { background: #fff; padding: 12px 14px; border-radius: 12px; display: inline-block; margin-bottom: 18px; }
.footer__logo img { height: 34px; }
.footer p { font-size: .95rem; line-height: 1.7; }
.footer h5 { color: #fff; font-family: var(--font-head); font-size: 1rem; margin-bottom: 18px; letter-spacing: .01em; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { color: rgba(255,255,255,.7); font-size: .95rem; transition: color .2s, padding .2s; }
.footer__links a:hover { color: var(--amber); padding-left: 4px; }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; font-size: .93rem; }
.footer__contact svg { width: 17px; height: 17px; color: var(--amber); flex: none; margin-top: 3px; }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .25s, transform .25s; }
.footer__social a:hover { background: var(--sunrise); transform: translateY(-3px); }
.footer__social svg { width: 17px; height: 17px; color: #fff; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .87rem; color: rgba(255,255,255,.55); }
.footer__bar a:hover { color: var(--amber); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .infra { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__visual { height: 380px; max-width: 520px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 860px) {
  .section { padding: 66px 0; }
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.open + .nav__drawer, .nav__drawer.open { display: flex; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split--rev .split__media { order: -1; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .cta { padding: 44px 26px; }
  .topbar__left .topbar__item--addr { display: none; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .grid--4 { grid-template-columns: 1fr; }
  .infra { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 22px; }
  .hero__chip--tl, .hero__chip--br { display: none; }
  .topbar__left { gap: 14px; }
}

/* Product thumbnail image fill */
.prod-card__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.prod-card__thumb .prod-card__tag { z-index: 2; }
.prod-card__thumb::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,16,13,.04) 40%, rgba(20,16,13,.18) 100%); }

/* Category card background image */
.cat-card__bg--img { background-size: cover; background-position: center; }

/* Distributor / section photo panel */
.media-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); min-height: 360px; background-size: cover; background-position: center; position: relative; }
.media-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(225,37,27,.12), rgba(20,16,13,.30)); }

/* ============================================================
   "Prepared by Webster Solutions" sticky credit
   ============================================================ */
.webster-credit {
  position: fixed; right: 20px; bottom: 96px; z-index: 79;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(36,31,28,.9); color: #fff; backdrop-filter: blur(8px);
  padding: 8px 15px 8px 12px; border-radius: 999px; font-size: .78rem; font-weight: 500;
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.14);
  transition: transform .25s var(--ease), background .25s;
}
.webster-credit:hover { background: var(--ink); transform: translateY(-2px); }
.webster-credit .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sunrise); flex: none; box-shadow: 0 0 0 3px rgba(242,103,34,.22); }
.webster-credit small { color: rgba(255,255,255,.62); }
.webster-credit b { font-family: var(--font-head); font-weight: 600; letter-spacing: .01em; }
@media (max-width: 520px) {
  .webster-credit { right: 14px; bottom: 82px; font-size: .72rem; padding: 7px 12px 7px 10px; }
  .webster-credit small { display: none; }
}

/* ============================================================
   WhatsApp floating button
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 28px -6px rgba(37,211,102,.6); cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 34px -6px rgba(37,211,102,.75); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; opacity: .55; z-index: -1;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .5; } 70%,100% { transform: scale(1.7); opacity: 0; } }
.wa-float__label {
  position: absolute; right: 72px; white-space: nowrap;
  background: var(--ink); color: #fff; font-size: .82rem; font-weight: 500;
  padding: 8px 13px; border-radius: 8px; opacity: 0; pointer-events: none;
  transform: translateX(6px); transition: opacity .25s, transform .25s;
  box-shadow: var(--shadow);
}
.wa-float:hover .wa-float__label { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .wa-float::before { animation: none; } }
@media (max-width: 520px) { .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; } .wa-float svg { width: 28px; height: 28px; } }

/* ============================================================
   Contact method buttons (Call / WhatsApp / Email)
   ============================================================ */
.methods { display: flex; flex-wrap: wrap; gap: 12px; }
.method {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px; font-family: var(--font-head);
  font-weight: 600; font-size: .96rem; transition: transform .2s var(--ease), box-shadow .2s, filter .2s;
}
.method svg { width: 19px; height: 19px; }
.method:hover { transform: translateY(-2px); }
.method--call { background: var(--sunrise); color: #fff; box-shadow: 0 10px 22px -10px rgba(242,103,34,.7); }
.method--wa { background: #25D366; color: #fff; box-shadow: 0 10px 22px -10px rgba(37,211,102,.7); }
.method--email { background: var(--paper); color: var(--ink); border: 1.5px solid var(--line); }
.method--email:hover { border-color: var(--orange); color: var(--orange); }

/* ============================================================
   Product search
   ============================================================ */
.catalogue-tools { max-width: 1100px; margin: 0 auto 34px; }
.search-bar { position: relative; max-width: 560px; margin: 0 auto 22px; }
.search-bar svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--muted); pointer-events: none; }
.search-bar input {
  width: 100%; padding: 15px 48px 15px 50px; border: 1.5px solid var(--line);
  border-radius: 999px; font-family: var(--font-body); font-size: 1rem; background: var(--paper);
  transition: border-color .2s, box-shadow .2s;
}
.search-bar input:focus { outline: none; border-color: var(--orange); box-shadow: var(--ring); }
.search-bar__clear {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border: 0; background: var(--paper-3); border-radius: 50%;
  cursor: pointer; display: none; place-items: center; color: var(--ink-2);
}
.search-bar__clear.show { display: grid; }
.search-bar__clear svg { position: static; transform: none; width: 15px; height: 15px; color: inherit; }
.search-empty {
  display: none; text-align: center; padding: 50px 20px; color: var(--muted);
}
.search-empty.show { display: block; }
.search-empty svg { width: 44px; height: 44px; color: var(--line); margin-bottom: 12px; }
.result-count { text-align: center; color: var(--muted); font-size: .9rem; margin-bottom: 26px; }
mark { background: rgba(249,166,26,.32); color: inherit; border-radius: 3px; padding: 0 1px; }

/* Per-product actions */
.prod-card__actions { display: flex; gap: 8px; margin-top: 14px; }
.prod-act {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 8px; border-radius: 9px; font-family: var(--font-head); font-weight: 600;
  font-size: .8rem; transition: filter .2s, transform .2s, background .2s, color .2s;
  border: 1.5px solid var(--line); background: var(--paper); color: var(--ink-2);
}
.prod-act svg { width: 15px; height: 15px; }
.prod-act:hover { transform: translateY(-1px); }
.prod-act--wa:hover { background: #25D366; border-color: #25D366; color: #fff; }
.prod-act--call:hover { background: var(--sunrise); border-color: transparent; color: #fff; }
.prod-act--email:hover { border-color: var(--orange); color: var(--orange); }

/* In-page section anchor offset */
.anchor { scroll-margin-top: 96px; }

/* Mobile drawer */
.nav__drawer {
  display: none; position: fixed; inset: 76px 0 auto 0; z-index: 55;
  background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column;
  padding: 14px 22px 22px; gap: 4px; box-shadow: var(--shadow);
  max-height: calc(100vh - 76px); overflow-y: auto;
}
.nav__drawer a { padding: 13px 12px; border-radius: 10px; font-family: var(--font-head); font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.nav__drawer a:last-of-type { border-bottom: 0; }
.nav__drawer a.active { color: var(--orange); }
.nav__drawer .btn { margin-top: 12px; }
