/* ==========================================================================
   Advirtuoso.com — Redesign stylesheet
   Design direction: Clean premium corporate — red-led (brand) with navy anchor
   ========================================================================== */

:root {
  /* Brand + neutrals */
  --ink: #0f1c30;          /* deep navy — primary text */
  --ink-2: #33425a;        /* secondary text */
  --muted: #647085;        /* muted text */
  --line: #e6eaf1;         /* hairlines / borders */
  --bg: #ffffff;
  --bg-soft: #f5f8fd;      /* alt section background */
  --bg-navy: #0c1a30;      /* dark sections */
  --bg-navy-2: #12294b;

  --brand: #e01e26;        /* primary red (brand) */
  --brand-dark: #b3161d;
  --brand-tint: #ffe8e9;   /* light red wash */
  --accent: #f5a623;       /* warm amber — used sparingly */

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(16, 28, 48, .06);
  --shadow: 0 12px 32px rgba(16, 28, 48, .10);
  --shadow-lg: 0 30px 60px rgba(16, 28, 48, .18);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --sp-section: clamp(64px, 9vw, 112px);

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.2rem; letter-spacing: -.01em; }
p { margin: 0 0 1rem; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--sp-section); }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--bg-navy); color: #cdd8ea; }
.section--navy h2, .section--navy h3 { color: #fff; }
.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand); margin-bottom: .8rem;
}
.section--navy .eyebrow { color: #ff8f93; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); }
.section--navy .lead { color: #a9b8d0; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--brand); --btn-fg: #fff; --btn-bd: var(--brand);
  display: inline-flex; align-items: center; gap: .5em;
  padding: .85em 1.5em; border-radius: 999px; font-weight: 700; font-size: 1rem;
  background: var(--btn-bg); color: var(--btn-fg); border: 1.5px solid var(--btn-bd);
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 8px 20px rgba(224, 30, 38, .25); white-space: nowrap;
}
.btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(224, 30, 38, .34); background: var(--brand-dark); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line);
  box-shadow: none;
}
.btn--ghost:hover { --btn-bg: #fff; color: var(--brand-dark); border-color: var(--brand); background: #fff; box-shadow: var(--shadow-sm); }
.btn--white { --btn-bg:#fff; --btn-fg: var(--brand-dark); --btn-bd:#fff; }
.btn--white:hover { background: #ffeced; color: var(--brand-dark); }
.btn--lg { padding: 1em 1.8em; font-size: 1.05rem; }
.btn .arw { transition: transform .18s ease; }
.btn:hover .arw { transform: translateX(3px); }

.link-more { font-weight: 700; display: inline-flex; align-items: center; gap: .35em; }
.link-more .arw { transition: transform .18s ease; }
.link-more:hover .arw { transform: translateX(3px); }

/* ---------- Utility bar ---------- */
.utilbar { background: var(--bg-navy); color: #b9c6dd; font-size: .85rem; }
.utilbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-block: 8px; flex-wrap: wrap; }
.utilbar a { color: #dde6f5; font-weight: 600; }
.utilbar a:hover { color: #fff; }
.utilbar .est { color: #ff8f93; font-weight: 700; letter-spacing: .06em; }
.utilbar .util-contact { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 14px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.28rem; color: var(--ink); letter-spacing: -.02em; }
.brand:hover { color: var(--ink); }
.brand .mark {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), #ff5a5a); color: #fff; font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 6px 14px rgba(224,30,38,.35);
}
.brand small { display: block; font-size: .62rem; letter-spacing: .18em; color: var(--muted); font-weight: 700; text-transform: uppercase; margin-top: -3px; }
.brand-logo { height: 46px; width: auto; display: block; }
.brand--footer { gap: 12px; align-items: center; }
.brand-mark-img { width: 42px; height: 42px; object-fit: contain; flex: none; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink-2); font-weight: 600; padding: 8px 14px; border-radius: 8px; font-size: .98rem; }
.nav-links a:hover { color: var(--brand-dark); background: var(--brand-tint); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--line); border-radius: 9px; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(48px, 7vw, 84px); padding-bottom: clamp(56px, 8vw, 96px); background:
    radial-gradient(1200px 600px at 85% -10%, #ffe6e7 0%, rgba(233,240,255,0) 60%),
    radial-gradient(900px 500px at -10% 20%, #fff0f0 0%, rgba(238,244,255,0) 55%),
    var(--bg); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero .pill {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px; font-size: .82rem; font-weight: 700; color: var(--ink-2);
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero .pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero h1 { margin-bottom: .35em; }
.hero h1 .grad { background: linear-gradient(120deg, var(--brand), #ff6a6a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 1.18rem; color: var(--ink-2); max-width: 34em; margin-bottom: 1.6em; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { display: flex; gap: 22px 30px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--line); }
.hero-trust div { font-size: .92rem; color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--brand); flex: none; }

/* Hero visual — product collage */
.hero-visual { position: relative; min-height: 420px; }
.hero-visual .blob {
  position: absolute; inset: 0; margin: auto; width: 92%; height: 92%;
  background: linear-gradient(150deg, var(--brand), #ff7a7a); border-radius: 32px;
  transform: rotate(-4deg); opacity: .10;
}
.hero-card {
  position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  overflow: hidden; border: 1px solid var(--line);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card .cap { position: absolute; left: 0; bottom: 0; right: 0; padding: 10px 12px;
  background: linear-gradient(transparent, rgba(8,16,30,.82)); color: #fff; font-weight: 700; font-size: .82rem; }
.hero-card .cap small { display: block; font-weight: 600; opacity: .8; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }
.hc1 { width: 58%; top: 4%; left: 2%; z-index: 3; transform: rotate(-3deg); }
.hc2 { width: 52%; top: 34%; right: 0; z-index: 2; transform: rotate(3deg); }
.hc3 { width: 46%; bottom: 2%; left: 12%; z-index: 4; transform: rotate(-1deg); }
.hero-badge {
  position: absolute; z-index: 5; top: 2%; right: 8%; background: var(--ink); color: #fff;
  width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center; text-align: center;
  font-weight: 800; font-size: .74rem; line-height: 1.2; box-shadow: var(--shadow-lg); border: 3px solid #fff;
}
.hero-badge b { display: block; font-size: 1.35rem; color: var(--accent); }

/* ---------- Trust strip ---------- */
.trust-strip { border-block: 1px solid var(--line); background: #fff; }
.trust-strip .container { display: flex; gap: 18px; justify-content: space-between; align-items: stretch; flex-wrap: wrap; padding-block: 26px; }
.trust-item { display: flex; align-items: center; gap: 12px; flex: 1 1 200px; }
.trust-item .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; flex: none; }
.trust-item b { display: block; color: var(--ink); font-size: .98rem; }
.trust-item span { font-size: .85rem; color: var(--muted); }

/* ---------- Cards grid (services) ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #f2c9cb; }
.card .ic {
  width: 52px; height: 52px; border-radius: 13px; background: var(--brand-tint); color: var(--brand);
  display: grid; place-items: center; margin-bottom: 18px;
}
.card h3 { margin-bottom: .4em; }
.card p { font-size: .96rem; color: var(--muted); margin-bottom: 1em; }
.card .link-more { font-size: .92rem; }

/* Service cards: priority number, feature highlight, audience tags, CTA cell */
.card.svc { position: relative; display: flex; flex-direction: column; }
.card.svc .link-more { margin-top: auto; }
.card .pnum { position: absolute; top: 20px; right: 22px; font-size: 1.7rem; font-weight: 800;
  color: var(--brand); opacity: .20; letter-spacing: -.03em; line-height: 1; }
.card--feature { background: linear-gradient(180deg, var(--brand-tint), #fff 70%); border-color: #ffc9cb; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.1em; }
.svc-tags span { font-size: .72rem; font-weight: 700; color: var(--brand-dark); background: #fff;
  border: 1px solid #ffc9cb; padding: 4px 11px; border-radius: 999px; }
.card--cta { background: linear-gradient(140deg, var(--bg-navy), var(--bg-navy-2)); color: #cdd8ea;
  display: flex; flex-direction: column; border-color: transparent; }
.card--cta .ic { background: rgba(255,255,255,.10); color: #fff; }
.card--cta h3 { color: #fff; }
.card--cta p { color: #a9b8d0; flex: 1; }
.card--cta .btn { align-self: flex-start; margin-top: auto; }
.card--cta:hover { border-color: transparent; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; }
.process::before { content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--brand), #ffb3b3); z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; }
.step .num {
  width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%; background: #fff; color: var(--brand);
  border: 2px solid var(--brand); display: grid; place-items: center; font-weight: 800; font-size: 1.15rem;
  box-shadow: 0 6px 16px rgba(224,30,38,.2);
}
.step h3 { font-size: 1.02rem; margin-bottom: .3em; }
.step p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ---------- Products ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prod {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease;
}
.prod:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prod .thumb { aspect-ratio: 16 / 10; background: var(--bg-soft); overflow: hidden; }
.prod .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.prod:hover .thumb img { transform: scale(1.05); }
.prod .body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.tag { align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-tint); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
.prod h3 { margin-bottom: .3em; }
.prod p { font-size: .92rem; color: var(--muted); margin-bottom: 1em; flex: 1; }

/* ---------- Channels (retail & distribution) ---------- */
.channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 860px; margin-inline: auto; }
.channel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 14px; text-align: center; }
.channel .ic { color: var(--brand); margin-bottom: 10px; display: grid; place-items: center; }
.channel b { font-size: .92rem; color: var(--ink); display: block; }
.logo-note { margin-top: 22px; font-size: .85rem; color: var(--muted); text-align: center;
  background: #fff; border: 1px dashed var(--line); border-radius: var(--radius-sm); padding: 14px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--bg-navy), var(--bg-navy-2)); color: #cdd8ea; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band .eyebrow { color: #ff8f93; }
.cta-band .lead { color: #a9b8d0; }
.cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 80% 0, rgba(224,30,38,.35), transparent 60%); }
.cta-band .container { position: relative; z-index: 1; }
.cta-paths { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.cta-path { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 22px; color: #dfe8f6; transition: background .2s ease, transform .2s ease; }
.cta-path:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); color: #fff; }
.cta-path .ic { color: #ff8f93; margin-bottom: 12px; }
.cta-path b { color: #fff; display: block; font-size: 1.02rem; margin-bottom: 4px; }
.cta-path span { font-size: .88rem; color: #a9b8d0; }

/* ---------- Footer ---------- */
.site-footer { background: #08111f; color: #93a4bf; font-size: .94rem; padding-top: clamp(48px,7vw,72px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 40px; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: #b9c6dd; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand small { color: #7c8dab; }
.footer-brand p { color: #93a4bf; max-width: 32ch; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #cdd8ea; }
.social a:hover { background: var(--brand); color: #fff; }
.footer-contact div { margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { color: #ff8f93; flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 20px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .86rem; color: #74849e; }
.footer-bottom a { color: #93a4bf; }

/* ---------- Interior page hero ---------- */
.page-hero { padding: clamp(40px,6vw,76px) 0 clamp(24px,4vw,40px);
  background: radial-gradient(900px 420px at 85% -20%, #ffe6e7, rgba(233,240,255,0) 60%), var(--bg); }
.page-hero h1 { margin: .1em 0 .3em; }
.page-hero .lead { max-width: 62ch; }
.jumpnav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.jumpnav a { font-size: .9rem; font-weight: 700; color: var(--ink-2); background: #fff;
  border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.jumpnav a:hover { color: var(--brand-dark); border-color: var(--brand); }

/* ---------- Services detail rows ---------- */
.svc-grid { display: grid; grid-template-columns: 340px 1fr; gap: clamp(28px,5vw,64px); align-items: center; }
.svc-grid.reverse { grid-template-columns: 1fr 340px; }
.svc-grid.reverse .svc-visual { order: 2; }
.svc-visual { position: relative; border-radius: var(--radius-lg); min-height: 250px;
  background: linear-gradient(150deg, var(--brand), #ff7a7a); color: #fff; overflow: hidden;
  display: grid; place-items: center; box-shadow: var(--shadow); }
.svc-visual::after { content:""; position:absolute; inset:0;
  background: radial-gradient(320px 220px at 78% 12%, rgba(255,255,255,.30), transparent 60%); }
.svc-visual .pnum-lg { position: absolute; top: 12px; left: 22px; font-size: 4.6rem; font-weight: 800;
  color: rgba(255,255,255,.30); line-height: 1; letter-spacing: -.03em; }
.svc-visual .svc-ic { position: relative; z-index: 1; width: 94px; height: 94px; border-radius: 24px;
  background: rgba(255,255,255,.16); display: grid; place-items: center; }
.svc-body h2 { margin-bottom: .3em; }
.svc-intro { font-size: 1.15rem; color: var(--ink-2); margin-bottom: 1.4em; }
.svc-points { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 30px; margin: 0 0 1.8em; }
.svc-points dt { font-size: .73rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 4px; }
.svc-points dd { margin: 0; font-size: .95rem; color: var(--muted); }
.svc-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Products: controls, chips, badges ---------- */
.prod-controls { display: flex; justify-content: space-between; align-items: center; gap: 18px;
  flex-wrap: wrap; margin-bottom: 16px; }
.search-wrap { position: relative; flex: 1 1 280px; max-width: 380px; }
.search-wrap svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.search-wrap input { width: 100%; padding: 12px 16px 12px 44px; border: 1.5px solid var(--line);
  border-radius: 999px; font: inherit; font-size: .98rem; background: #fff; color: var(--ink); }
.search-wrap input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(224,30,38,.15); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font: inherit; font-size: .85rem; font-weight: 700; cursor: pointer; color: var(--ink-2);
  background: #fff; border: 1.5px solid var(--line); padding: 8px 14px; border-radius: 999px; transition: .15s; }
.chip:hover { border-color: var(--brand); color: var(--brand-dark); }
.chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.result-count { font-size: .9rem; color: var(--muted); margin: 0 0 22px; }
.prod .thumb { position: relative; }
.feat-badge { position: absolute; top: 10px; left: 10px; z-index: 1; font-size: .67rem; font-weight: 800;
  letter-spacing: .03em; color: #7a5b00; background: #ffd873; padding: 4px 9px; border-radius: 999px;
  box-shadow: var(--shadow-sm); }
.vid-badge { position: absolute; top: 10px; right: 10px; z-index: 1; font-size: .67rem; font-weight: 800;
  color: #fff; background: rgba(12,26,48,.82); padding: 4px 9px; border-radius: 999px; }
.prod-link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.prod-link:hover { color: inherit; }
.prod-link .link-more { color: var(--brand); margin-top: auto; }
.no-results { text-align: center; padding: 56px 20px; color: var(--muted); }
.no-results svg { color: #cfd8e6; margin: 0 auto 14px; }
.no-results h3 { color: var(--ink); margin-bottom: .3em; }
.no-results .btn { margin-top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- About page ---------- */
.about-grid { display: grid; grid-template-columns: 1.5fr .9fr; gap: clamp(28px,5vw,56px); align-items: start; }
.about-story p { font-size: 1.06rem; color: var(--ink-2); margin-bottom: 1.1em; }
.about-story p:first-child { font-size: 1.18rem; color: var(--ink); }
.facts-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; position: sticky; top: 90px; }
.facts-card h3 { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.facts-card dl { margin: 0; display: grid; gap: 14px; }
.facts-card .row { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.facts-card .row:last-child { padding-bottom: 0; border-bottom: 0; }
.facts-card dt { font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: var(--brand); font-weight: 800; margin-bottom: 3px; }
.facts-card dd { margin: 0; font-weight: 700; color: var(--ink); font-size: 1.02rem; }

/* ---------- Contact page + forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1.6fr .9fr; gap: clamp(28px,5vw,48px); align-items: start; }
.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px,3vw,34px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
fieldset { border: 0; padding: 0; margin: 0 0 18px; }
.field label, .field legend { display: block; font-weight: 700; font-size: .9rem; color: var(--ink); margin-bottom: 7px; padding: 0; }
.req { color: var(--brand); font-weight: 800; }
input, select, textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; font-size: .98rem; color: var(--ink); background: #fff; }
textarea { resize: vertical; min-height: 120px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(224,30,38,.14); }
input.invalid, select.invalid, textarea.invalid { border-color: var(--brand); background: #fff6f6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.field--inline .radio { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; margin-right: 20px; color: var(--ink-2); }
.radio input, .check input { width: auto; padding: 0; }
input[type="radio"], input[type="checkbox"] { accent-color: var(--brand); }
.field--check .check { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--ink-2); font-weight: 500; cursor: pointer; }
.field--check .check input { margin-top: 3px; flex: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
#submitBtn { margin-top: 6px; }
#submitBtn[disabled] { opacity: .6; cursor: default; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 12px; }
.form-alert { padding: 14px 16px; border-radius: 10px; margin-bottom: 20px; font-weight: 600; font-size: .95rem; }
.form-alert.ok { background: #e9f9ee; border: 1px solid #b6e6c5; color: #1a7a3d; }
.form-alert.err { background: #fdeaea; border: 1px solid #f4c2c2; color: #b3161d; }
/* Contact info sidebar */
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.info-card h2 { font-size: 1.15rem; margin-bottom: 18px; }
.info-row { display: flex; gap: 12px; margin-bottom: 16px; }
.info-row .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; flex: none; }
.info-row b { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 2px; font-weight: 800; }
.info-row a { color: var(--ink); font-weight: 700; }
.info-row a:hover { color: var(--brand); }
.info-social { display: flex; gap: 10px; margin-top: 4px; }
.info-social a { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-soft); display: grid; place-items: center; color: var(--ink-2); }
.info-social a:hover { background: var(--brand); color: #fff; }
.info-card--soft { background: var(--bg-soft); }
.info-card--soft h3 { font-size: 1.05rem; margin-bottom: .4em; }
.info-card--soft p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Product detail (landing page) ---------- */
.breadcrumb { font-size: .85rem; color: var(--muted); padding-top: 18px; }
.breadcrumb a { color: var(--muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span[aria-current] { color: var(--ink); font-weight: 700; }
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,48px); align-items: start; }
.pdp-photo { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); aspect-ratio: 16/10; }
.pdp-photo img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pdp-thumb { width: 72px; height: 56px; padding: 0; border: 1.5px solid var(--line); border-radius: 8px; overflow: hidden; cursor: pointer; background: #fff; }
.pdp-thumb.active { border-color: var(--brand); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info .tag { margin-bottom: 14px; }
.pdp-info h1 { font-size: clamp(1.8rem,3.5vw,2.6rem); margin-bottom: .4em; }
.pdp-desc { font-size: 1.05rem; color: var(--ink-2); margin-bottom: 1.4em; }
.pdp-placeholder { color: var(--muted); background: var(--bg-soft); border: 1px dashed var(--line); border-radius: 10px; padding: 16px; }
.pdp-meta { display: grid; gap: 0; margin: 0 0 1.6em; }
.pdp-meta > div { display: flex; gap: 12px; border-bottom: 1px solid var(--line); padding: 12px 0; }
.pdp-meta > div:last-child { border-bottom: 0; }
.pdp-meta dt { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 800; min-width: 110px; }
.pdp-meta dd { margin: 0; font-weight: 700; color: var(--ink); }
.pdp-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pdp-video { margin-top: clamp(40px,6vw,64px); }
.pdp-video h2 { margin-bottom: 18px; }
.video-embed { position: relative; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: var(--shadow); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pdp-materials { margin-top: clamp(32px,5vw,52px); }
.pdp-materials h2 { margin-bottom: 18px; }
.mat-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-wrap: wrap; gap: 12px; }
.mat-list li { display: inline-flex; align-items: center; gap: 9px; background: var(--brand-tint); color: var(--brand-dark);
  border: 1px solid #ffc9cb; padding: 11px 16px; border-radius: 10px; font-weight: 700; font-size: .95rem; }
.mat-list li svg { color: var(--brand); flex: none; }
.pdp-distribution { margin-top: clamp(28px,4vw,44px); }
.pdp-distribution h2 { margin-bottom: 16px; }
.dist-chip { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 1rem;
  color: var(--ink); background: var(--bg-soft); border: 1px solid var(--line); padding: 12px 18px; border-radius: 10px; }
.dist-chip svg { color: var(--brand); flex: none; }

/* ---------- Team page ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 22px; }
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  text-align: center; transition: transform .2s ease, box-shadow .2s ease; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card .photo { aspect-ratio: 3 / 2; background: var(--bg-soft); overflow: hidden; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.team-card .avatar { width: 82px; height: 82px; border-radius: 50%; margin: 24px auto 0; background: var(--brand-tint);
  color: var(--brand-dark); display: grid; place-items: center; font-weight: 800; font-size: 1.55rem; }
.team-card .tc-body { padding: 18px 20px 22px; }
.team-card h3 { font-size: 1.05rem; margin-bottom: .15em; }
.team-card .role { color: var(--muted); font-size: .9rem; font-weight: 600; margin: 0; }

/* ---------- Products rotating banner ---------- */
.prod-banner { position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(120deg, var(--bg-navy), var(--bg-navy-2)); box-shadow: var(--shadow); }
.prod-banner::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px 300px at 88% 10%, rgba(224,30,38,.28), transparent 60%); }
.pb-track { position: relative; min-height: 360px; z-index: 1; }
.pb-slide { position: absolute; inset: 0; display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px;
  align-items: center; padding: clamp(24px,4vw,52px); opacity: 0; visibility: hidden; transition: opacity .6s ease; }
.pb-slide.active { opacity: 1; visibility: visible; }
.pb-text .eyebrow { color: #ff8f93; }
.pb-text h2 { color: #fff; font-size: clamp(1.7rem,3vw,2.6rem); margin-bottom: .3em; }
.pb-text .tag { margin-bottom: 20px; }
.pb-media { justify-self: center; width: 100%; max-width: 400px; background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.pb-media img { width: 100%; height: auto; display: block; }
.pb-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.pb-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: .2s; }
.pb-dot.active { background: #fff; width: 26px; border-radius: 5px; }
.pb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.16); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; z-index: 3; }
.pb-nav:hover { background: rgba(255,255,255,.32); }
.pb-prev { left: 14px; } .pb-next { right: 14px; }

/* ---------- Legal pages ---------- */
.legal { max-width: 780px; }
.legal h2 { font-size: 1.35rem; margin: 1.7em 0 .5em; }
.legal p, .legal li { color: var(--ink-2); }
.legal ul { padding-left: 1.2rem; }
.legal li { margin: 6px 0; }
.legal .muted { color: var(--muted); font-size: .95rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Accessibility ---------- */
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 200; }
.skip-link:focus { left: 8px; color: #fff; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 340px; order: -1; }
  .grid-3, .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .process::before { display: none; }
  .channels { grid-template-columns: repeat(3, 1fr); }
  .cta-paths { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .nav-links, .utilbar .est { display: none; }
  .nav-cta .btn { display: none; } /* hero + hamburger cover conversion; avoids overflow */
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 12px; gap: 2px; box-shadow: var(--shadow); border-top: 1px solid var(--line);
  }
  .site-header.open .nav-links a { padding: 12px 14px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-grid.reverse .svc-visual { order: 0; }
  .svc-visual { min-height: 190px; }
  .svc-visual .svc-ic { width: 76px; height: 76px; }
  .about-grid { grid-template-columns: 1fr; }
  .facts-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .pdp { grid-template-columns: 1fr; }
  .pb-slide { grid-template-columns: 1fr; text-align: center; gap: 20px; padding-bottom: 46px; }
  .pb-track { min-height: 520px; }
  .pb-text .tag { margin-inline: auto; }
  .pb-media { max-width: 300px; order: -1; }
  .pb-nav { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-3, .prod-grid, .grid-2 { grid-template-columns: 1fr; }
  .channels { grid-template-columns: repeat(2, 1fr); }
  .cta-paths { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .utilbar .util-contact { gap: 14px; font-size: .8rem; }
  /* Stagger hero cards vertically so nothing clips / overlaps captions on phones */
  .hero-visual { min-height: 420px; }
  .hc1 { width: 68%; left: 0; top: 0; }
  .hc2 { width: 62%; right: 0; top: 30%; }
  .hc3 { width: 60%; left: 6%; bottom: 0; top: auto; }
  .hero-badge { top: 2%; right: 3%; width: 74px; height: 74px; font-size: .68rem; }
  .hero-badge b { font-size: 1.15rem; }
  .svc-points { grid-template-columns: 1fr; }
  .prod-controls { flex-direction: column; align-items: stretch; }
  .search-wrap { max-width: none; }
  .form-grid { grid-template-columns: 1fr; }
  .brand-logo { height: 38px; }
}
