/* =========================================================================
   Elken Service Solutions (ESS) — Homepage Stylesheet
   Design system: "Premium Corporate Vitality" (Stitch-approved)
   ========================================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colours */
  --navy:        #0A2540;
  --navy-900:    #06182b;
  --blue:        #0055D4;
  --blue-600:    #0049b5;
  --azure:       #E0F2FE;
  --azure-soft:  #EFF8FF;
  --bg:          #F7FAFD;
  --white:       #FFFFFF;
  --muted:       #F1F5F9;
  --ink:         #1A2330;
  --ink-soft:    #475467;
  --line:        #E2E8F0;
  --line-soft:   #EDF1F6;

  /* Typography */
  --font-head: "Hanken Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: 32px;
  --section-pad: 120px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --pill: 9999px;

  /* Elevation */
  --shadow-sm: 0 4px 14px rgba(10, 37, 64, 0.05);
  --shadow:    0 12px 34px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 28px 60px rgba(10, 37, 64, 0.14);
  --shadow-navy: 0 24px 60px rgba(10, 37, 64, 0.30);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--blue); color: #fff; }

/* ---------- Typography helpers ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--navy); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow--line::before { content: ""; width: 36px; height: 2px; background: var(--blue); display: inline-block; }
/* Stronger, more prominent eyebrow */
.eyebrow--em { font-size: 15px; font-weight: 700; letter-spacing: 0.22em; color: var(--blue); }
.eyebrow--em.eyebrow--line::before { width: 54px; height: 3px; border-radius: 2px; }
.display { font-size: clamp(2.6rem, 5.2vw, 4rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }
.h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 600; }
.h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); font-weight: 600; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.18rem); line-height: 1.65; color: var(--ink-soft); }
.muted-text { color: var(--ink-soft); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); width: 100%; }
.section { padding-block: var(--section-pad); }
.section--tight { padding-block: 80px; }
.bg-white { background: var(--white); }
picture { display: contents; }
.bg-muted { background: var(--muted); }
.bg-azure { background: linear-gradient(180deg, var(--azure-soft), #fff); }
.section-head { max-width: 760px; }
.section-head .h2 { margin-top: 18px; }
.section-head .lead { margin-top: 20px; }
.center { text-align: center; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.02em;
  padding: 15px 30px; border-radius: var(--radius-sm);
  transition: transform .2s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn .ic { width: 18px; height: 18px; }
.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--accent { background: var(--blue); color: #fff; }
.btn--accent:hover { background: #fff; color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn--wa { background: linear-gradient(180deg, #2BA64E 0%, #18823C 100%); color: #fff; }
.btn--wa .ic { fill: currentColor; stroke: none; }
.btn--wa:hover { background: linear-gradient(180deg, #259147 0%, #146F34 100%); transform: translateY(-2px); box-shadow: var(--shadow); }
.link-arrow { color: var(--blue); font-weight: 600; font-size: 14px; letter-spacing: .04em; display: inline-flex; align-items: center; gap: 8px; }
.link-arrow .ic { transition: transform .25s ease; }
.link-arrow:hover .ic { transform: translateX(5px); }

/* Icon (inline svg currentColor) */
.ic { width: 24px; height: 24px; flex: none; display: inline-block; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.link-arrow .ic { width: 18px; height: 18px; }

/* =========================================================================
   Header / Navigation
   ========================================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(244,250,255,.50);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid transparent;
  transition: padding .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 18px; }
.header.is-scrolled { padding-block: 0; box-shadow: 0 6px 24px rgba(10,37,64,.07); border-color: var(--line-soft); }
.header.is-scrolled .header__inner { padding-block: 12px; }
.brand { display: flex; align-items: center; }
.brand img { height: 38px; width: auto; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft); padding-bottom: 4px; position: relative; transition: color .2s ease;
}
.nav__link::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--blue); transition: width .25s ease; }
.nav__link:hover, .nav__link.is-active { color: var(--blue); }
.nav__link.is-active::after, .nav__link:hover::after { width: 100%; }

/* ---- Products dropdown (desktop) ---- */
.nav__dd { position: relative; display: flex; align-items: center; gap: 4px; }
.nav__caret-btn { display: inline-flex; align-items: center; justify-content: center; padding: 4px; color: var(--ink-soft); border-radius: 6px; transition: color .2s ease; }
.nav__dd:hover .nav__caret-btn, .nav__dd:focus-within .nav__caret-btn, .nav__dd.is-open .nav__caret-btn { color: var(--blue); }
.nav__caret { width: 15px; height: 15px; transition: transform .25s ease; }
.nav__dd:hover .nav__caret, .nav__dd.is-open .nav__caret { transform: rotate(180deg); }
.nav__panel {
  position: absolute; top: 100%; left: 50%; margin-top: 14px;
  transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 12px; min-width: 250px; z-index: 130;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.nav__panel::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav__dd:hover .nav__panel, .nav__dd:focus-within .nav__panel, .nav__dd.is-open .nav__panel {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav__dd-group { padding: 4px; }
.nav__dd-group + .nav__dd-group { border-top: 1px solid var(--line-soft); margin-top: 6px; padding-top: 8px; }
.nav__dd-title { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--navy); padding: 9px 12px; border-radius: 9px; transition: background .15s ease, color .15s ease; }
.nav__dd-title:hover { background: var(--azure-soft); color: var(--blue); }
.nav__dd-title .ic { width: 15px; height: 15px; color: var(--blue); }
.nav__dd-link { display: block; font-family: var(--font-body); font-weight: 500; font-size: 13.5px; letter-spacing: 0; text-transform: none; color: var(--ink-soft); padding: 8px 12px 8px 26px; border-radius: 9px; transition: background .15s ease, color .15s ease; }
.nav__dd-link:hover { background: var(--azure-soft); color: var(--blue); }

/* ---- Mobile products accordion ---- */
.m-acc { border-bottom: 1px solid var(--line-soft); }
.m-acc__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 14px 6px; font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--navy); background: none; border: none; cursor: pointer; }
.m-acc__caret { width: 20px; height: 20px; color: var(--ink-soft); transition: transform .25s ease; }
.m-acc.is-open .m-acc__caret { transform: rotate(180deg); color: var(--blue); }
.m-acc__panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.m-acc.is-open .m-acc__panel { max-height: 460px; }
.m-sublink { display: block; padding: 11px 6px 11px 18px; font-size: 1rem; color: var(--ink-soft); }
.m-sublink:active, .m-sublink:hover { color: var(--blue); }
.m-sublink--strong { font-family: var(--font-head); font-weight: 600; color: var(--navy); }
.m-subhead { display: block; padding: 12px 6px 2px; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); font-weight: 700; }

.header__cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; color: var(--navy); }
.nav-toggle .ic { width: 26px; height: 26px; }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: rgba(10,37,64,.55);
  backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity .3s ease;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 360px);
  background: #fff; padding: 96px 32px 32px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__panel a.m-link { padding: 14px 6px; font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--navy); border-bottom: 1px solid var(--line-soft); }
.mobile-nav__panel .btn { margin-top: 22px; }
.mobile-close { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; color: var(--navy); }
.mobile-close .ic { width: 26px; height: 26px; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; padding-block: 140px 110px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,20,38,.82) 0%, rgba(6,20,38,.55) 42%, rgba(6,20,38,.12) 72%, rgba(6,20,38,0) 100%); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; width: 100%; }
.hero__copy { max-width: 620px; color: #fff; display: flex; flex-direction: column; gap: 22px; }
.hero__copy .eyebrow { color: #8FC9FF; }
.hero h1 { color: #fff; font-size: clamp(2.8rem, 6vw, 4.4rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.04; }
.hero h1 .accent { color: #8FC9FF; }
.hero__copy p { color: rgba(255,255,255,.85); font-size: clamp(1.05rem,1.4vw,1.18rem); max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.hero__stats { display: flex; gap: 36px; margin-top: 30px; flex-wrap: wrap; }
.hero__stat .num { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; color: #fff; line-height: 1; }
.hero__stat .lbl { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 6px; }
/* Floating glass card */
.hero__float { position: relative; display: none; }
@media (min-width: 1025px) {
  .hero__grid { grid-template-columns: 1.12fr 0.88fr; gap: 40px; }
  .hero__float { display: flex; flex-direction: column; align-items: flex-end; padding-left: 24px; padding-top: 150px; gap: 0; }
  .hero__float .glass-card { width: 252px; max-width: 252px; padding: 22px; }
  .hero__float .glass-card .ic-badge { width: 46px; height: 46px; margin-bottom: 14px; }
  .hero__float .glass-card h3 { font-size: 1.15rem; }
  .hero__float .glass-card p { font-size: 13.5px; }
  /* Top (glass) card sits at the right edge with extra bottom room for the overlap */
  .hero__float .glass-card:not(.glass-card--solid) { padding-bottom: 62px; position: relative; z-index: 1; margin-right: 0; }
  /* Bottom (solid) card is pulled up and nudged left so it overlaps the card above */
  .hero__float .glass-card--solid { margin: -54px 28px 0 0; position: relative; z-index: 2; }
}
.glass-card {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-lg); padding: 30px; color: #fff; box-shadow: var(--shadow-lg);
  max-width: 320px;
}
.glass-card .ic-badge { width: 54px; height: 54px; border-radius: 14px; background: rgba(143,201,255,.22); color: #cfe7ff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.glass-card .ic-badge .ic { width: 28px; height: 28px; }
.glass-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 6px; }
.glass-card p { color: rgba(255,255,255,.75); font-size: 14.5px; }
.glass-card--solid { background: var(--navy); border-color: rgba(143,201,255,.3); margin-left: 48px; margin-top: -22px; }
.hero__blob { position: absolute; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(0,85,212,.5), transparent 70%); filter: blur(40px); top: -40px; right: -30px; z-index: -1; }

/* =========================================================================
   Trust indicators
   ========================================================================= */
.trust { background: linear-gradient(180deg, #F2F5F9 0%, #E4E9F1 100%); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding-block: 44px; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust__item { display: flex; align-items: center; gap: 16px; padding: 8px 4px; }
.trust__ic { flex: none; width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(206,215,229,.62) 100%); -webkit-backdrop-filter: blur(10px) saturate(125%); backdrop-filter: blur(10px) saturate(125%); border: 1px solid rgba(255,255,255,.78); box-shadow: 0 10px 22px rgba(20,40,70,.12), inset 0 1px 0 rgba(255,255,255,.8); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.trust__ic .ic { width: 28px; height: 28px; }
.trust__item .num { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--navy); line-height: 1.1; }
.trust__item .txt { font-size: 14px; color: var(--ink-soft); }

/* =========================================================================
   Generic card grids
   ========================================================================= */
.grid { display: grid; gap: var(--gutter); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-5 { grid-template-columns: repeat(5, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card .ic-tile { width: 60px; height: 60px; border-radius: 16px; background: var(--azure); color: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: background .3s ease, color .3s ease; }
.card .ic-tile .ic { width: 30px; height: 30px; }
.card:hover .ic-tile { background: var(--blue); color: #fff; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15px; }

/* Problems section accents */
.problems { position: relative; overflow: hidden; background: radial-gradient(56% 48% at 50% 4%, rgba(0,85,212,.13), transparent 62%), linear-gradient(180deg, #E9F3FC 0%, #F3F9FD 55%, #EEF6FC 100%); }
.problems::before { content: ""; position: absolute; top: -170px; left: 50%; transform: translateX(-50%); width: 780px; height: 780px; max-width: 96vw; border-radius: 50%; background: repeating-radial-gradient(circle at center, rgba(0,85,212,.07) 0 1.5px, transparent 1.5px 30px); -webkit-mask-image: radial-gradient(circle at center, #000 0 42%, transparent 70%); mask-image: radial-gradient(circle at center, #000 0 42%, transparent 70%); pointer-events: none; z-index: 0; }
.problems .container { position: relative; z-index: 1; }

/* =========================================================================
   Feature split (POE / N-Series editorial blocks)
   ========================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media .frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3.2; }
.split__media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.split__media:hover .frame img { transform: scale(1.05); }
.split__media .frame--contain { background: linear-gradient(160deg, #f4f8fc, #e7f1fb); display: flex; align-items: center; justify-content: center; }
.split__media .frame--contain img { object-fit: contain; padding: 24px; }
.float-badge {
  position: absolute; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 20px 24px; display: flex; align-items: center; gap: 14px; border: 1px solid var(--line-soft);
}
.float-badge--br { right: -22px; bottom: -26px; }
.float-badge--bl { left: -22px; bottom: -26px; }
.float-badge .ic-c { width: 46px; height: 46px; border-radius: 12px; background: var(--azure); color: var(--blue); display: flex; align-items: center; justify-content: center; flex: none; }

/* Glass icon tiles — blue-grey shading */
.card .ic-tile, .float-badge .ic-c { background: linear-gradient(180deg, rgba(239,242,244,.9) 0%, rgba(206,215,229,.62) 100%); -webkit-backdrop-filter: blur(10px) saturate(125%); backdrop-filter: blur(10px) saturate(125%); border: 1px solid rgba(255,255,255,.78); box-shadow: 0 10px 22px rgba(20,40,70,.12), inset 0 1px 0 rgba(255,255,255,.8); }
.float-badge .num { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--navy); line-height: 1; }
.float-badge .lbl { font-size: 12px; color: var(--ink-soft); letter-spacing: .04em; }
.split__body .h2 { margin-top: 18px; }
.split__body .lead { margin-top: 18px; }
.feature-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ic-check { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--azure); color: var(--blue); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.feature-list .ic-check .ic { width: 15px; height: 15px; stroke-width: 2.4; }
.feature-list b { color: var(--navy); font-weight: 600; }
.feature-list span.d { color: var(--ink-soft); font-size: 14.5px; display: block; }
.split__body .btn { margin-top: 30px; }

/* Pills row (stages) */
.stage-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.stage-chip { background: var(--azure); color: var(--navy); font-weight: 600; font-size: 13px; padding: 9px 16px; border-radius: var(--pill); display: inline-flex; gap: 8px; align-items: center; }
.stage-chip .n { width: 20px; height: 20px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 11px; display: inline-flex; align-items: center; justify-content: center; }

/* =========================================================================
   Product cards
   ========================================================================= */
.product-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
/* Fixed media height keeps every product panel even, regardless of image shape.
   Target source image: 1000x1000px (1:1), product centred, transparent/white bg. */
.product-card__media { height: 300px; background: linear-gradient(180deg, #ffffff, #f4f8fc); border-bottom: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: center; padding: 22px; position: relative; }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__tag { position: absolute; top: 16px; left: 16px; background: rgba(10,37,64,.88); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--pill); }
.product-card__body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.product-card__body h3 { font-size: 1.15rem; }
.product-card__body .sub { color: var(--ink-soft); font-size: 14px; margin-top: 8px; flex: 1; }
.product-card__meta { display: flex; align-items: baseline; justify-content: space-between; margin-top: 18px; gap: 10px; }
.product-card__price { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.25rem; }
.product-card__price small { font-weight: 500; font-size: 12px; color: var(--ink-soft); display: block; letter-spacing: .02em; }
.product-card__link { color: var(--blue); font-weight: 600; font-size: 13.5px; display: inline-flex; align-items: center; gap: 6px; }
.product-card__link .ic { width: 16px; height: 16px; transition: transform .25s ease; }
.product-card:hover .product-card__link .ic { transform: translateX(4px); }

/* =========================================================================
   Company story
   ========================================================================= */
.story { background: linear-gradient(180deg, #F3F6F9 0%, #E9EEF4 100%); overflow: hidden; }
.story__media { position: relative; }
.story__media .main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; }
.story__media .main img { width: 100%; height: 100%; object-fit: cover; }
.story__media .inset { position: absolute; width: 46%; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid #fff; right: -18px; bottom: -34px; }
.story__media .inset img { width: 100%; height: 100%; object-fit: cover; }
.story__media .dot-grid { position: absolute; left: -34px; top: -34px; width: 120px; height: 120px; background-image: radial-gradient(var(--blue) 1.6px, transparent 1.6px); background-size: 16px 16px; opacity: .18; z-index: -1; }
.awards { display: flex; align-items: center; gap: 22px; margin-top: 32px; flex-wrap: wrap; }
.awards img { height: 62px; width: auto; border-radius: 10px; }
.awards .awards__txt { font-size: 13px; color: var(--ink-soft); max-width: 220px; }

/* =========================================================================
   Why choose (dark band)
   ========================================================================= */
.why { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.why::before { content: ""; position: absolute; top: -120px; right: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(0,85,212,.4), transparent 70%); }
.why .eyebrow { color: #8FC9FF; }
.why .h2, .why h3 { color: #fff; }
.why .lead { color: rgba(255,255,255,.78); }
.why__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 56px; position: relative; z-index: 1; }
.why-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 28px 22px; transition: background .3s ease, transform .3s ease; }
.why-card:hover { background: rgba(255,255,255,.10); transform: translateY(-5px); }
.why-card .ic-tile { width: 52px; height: 52px; border-radius: 13px; background: rgba(143,201,255,.16); color: #9bd0ff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-card .ic-tile .ic { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,.66); font-size: 14px; }

/* =========================================================================
   Testimonials (carousel)
   ========================================================================= */
.testi__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.testi__track-wrap { overflow: hidden; margin: 28px -22px 0; padding: 24px 22px 50px; }
.testi__track { display: flex; gap: var(--gutter); transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 34px; flex: 0 0 calc((100% - 2 * var(--gutter)) / 3); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.testi-card .stars { color: #F5A623; display: flex; gap: 3px; margin-bottom: 18px; }
.testi-card .stars .ic { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.testi-card blockquote { font-size: 1.02rem; color: var(--ink); line-height: 1.6; flex: 1; }
.testi-card .who { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.testi-card .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--azure); color: var(--blue); font-family: var(--font-head); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.testi-card .who .nm { display: block; font-weight: 600; color: var(--navy); font-size: 15px; }
.testi-card .who .ro { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.stub-note { margin-top: 20px; font-size: 13px; color: var(--ink-soft); background: var(--azure-soft); border: 1px dashed #b9dcff; border-radius: 10px; padding: 10px 16px; display: inline-block; }
.carousel-ctl { display: flex; gap: 12px; }
.carousel-ctl button { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--line); color: var(--navy); display: flex; align-items: center; justify-content: center; transition: all .2s ease; background: #fff; }
.carousel-ctl button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.carousel-ctl button .ic { width: 20px; height: 20px; }

/* =========================================================================
   Knowledge Centre
   ========================================================================= */
.article-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }

/* ---- Premium glass cards (site-wide) ---- */
.card, .product-card, .testi-card, .article-card { background: rgba(255,255,255,.6); -webkit-backdrop-filter: blur(14px) saturate(140%); backdrop-filter: blur(14px) saturate(140%); border: 1px solid rgba(247,247,247,.7); box-shadow: 0 18px 40px rgba(10,42,90,.10), inset 0 1px 0 rgba(255,255,255,.7); }

/* Card carries the blue-grey shading; remove the redundant inner icon box */
.card { background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(230,233,238,.6) 100%); }
.card .ic-tile { background: none; border: none; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; width: auto; height: auto; border-radius: 0; margin-bottom: 20px; display: block; }
.card .ic-tile .ic { width: 35px; height: 35px; display: block; }
.card:hover .ic-tile { background: none; color: var(--blue); }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.article-card__media { display: block; aspect-ratio: 16/10; overflow: hidden; }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.article-card:hover .article-card__media img { transform: scale(1.06); }
.article-card__body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.article-card__cat { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }
.article-card__body h3 { font-size: 1.18rem; margin: 12px 0 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-card__body p { color: var(--ink-soft); font-size: 14.5px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.article-card__link { margin-top: 18px; }

/* =========================================================================
   Final CTA
   ========================================================================= */
.final-cta { position: relative; overflow: hidden; background: var(--navy); padding-block: clamp(52px, 7vw, 100px); color: #fff; }
.cta-panel { position: static; background: transparent; color: #fff; }
.cta-panel__bg { position: absolute; inset: 0; opacity: .22; z-index: 0; }
.cta-panel__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-panel::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(105deg, var(--navy) 32%, rgba(10,37,64,.55) 62%, rgba(0,85,212,.32) 100%); }
.cta-panel__inner { position: relative; z-index: 2; padding: 0; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.cta-panel .eyebrow { color: #8FC9FF; }
.cta-panel h2 { color: #fff; margin-top: 16px; }
.cta-panel p { color: rgba(255,255,255,.82); margin-top: 18px; max-width: 520px; }
.cta-panel__actions { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.cta-panel__actions .btn { width: 100%; }
.cta-panel__contact { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.7); text-align: center; }
.cta-panel__contact a { color: #fff; font-weight: 600; }

/* =========================================================================
   Footer
   ========================================================================= */
.footer { background: var(--navy-900); color: rgba(255,255,255,.72); position: relative; }
.footer__newsletter { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__newsletter .inner { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding-block: 44px; }
.footer__newsletter h3 { color: #fff; font-size: 1.5rem; }
.footer__newsletter p { color: rgba(255,255,255,.7); margin-top: 6px; font-size: 15px; }
.news-form { display: flex; gap: 12px; min-width: min(440px, 80vw); }
.news-form input { flex: 1; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; border-radius: var(--radius-sm); padding: 14px 18px; font-size: 15px; }
.news-form input::placeholder { color: rgba(255,255,255,.5); }
.news-form input:focus { outline: none; border-color: #8FC9FF; box-shadow: 0 0 0 2px rgba(143,201,255,.3); }
.footer__main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-block: 72px 48px; }
.footer__brand img { height: 40px; margin-bottom: 22px; }
.footer__brand p { font-size: 14.5px; max-width: 300px; line-height: 1.7; }
.footer__col h4 { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 14.5px; transition: color .2s ease; }
.footer__col a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; margin-bottom: 14px; }
.footer__contact .ic { width: 18px; height: 18px; color: #8FC9FF; flex: none; margin-top: 2px; }
.footer__contact a { color: rgba(255,255,255,.82); }
.footer__contact a:hover { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; transition: all .25s ease; }
.socials a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); }
.socials .ic { width: 19px; height: 19px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.footer__bottom a:hover { color: #fff; }
.footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }

/* Floating WhatsApp */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(180deg, #2BA64E 0%, #18823C 100%); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(0,40,20,.30); transition: transform .25s ease; }
.wa-float:hover { transform: scale(1.08); }
.wa-float .ic { width: 30px; height: 30px; fill: currentColor; stroke: none; }

/* =========================================================================
   Series cards (homepage two-column range chooser)
   ========================================================================= */
.series-card { position: relative; display: block; aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.series-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.series-card:hover img { transform: scale(1.05); }
.series-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,37,64,.94), rgba(10,37,64,.45) 55%, rgba(10,37,64,.05)); }
.series-card__body { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 38px; color: #fff; }
.series-card__body .eyebrow { color: #8FC9FF; }
.series-card__body h3 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2.1rem); margin: 10px 0 10px; }
.series-card__body p { color: rgba(255,255,255,.86); font-size: 15px; max-width: 440px; }
.series-card__cta { margin-top: 20px; font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; color: #fff; transition: color .2s ease; }
.series-card__cta .ic { width: 17px; height: 17px; transition: transform .25s ease; }
.series-card:hover .series-card__cta { color: #8FC9FF; }
.series-card:hover .series-card__cta .ic { transform: translateX(4px); }

/* =========================================================================
   Scroll reveal
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
  :root { --section-pad: 88px; }
  .nav, .header__cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero__float { display: none; }
  .split { gap: 44px; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  .why__grid { grid-template-columns: repeat(3, 1fr); }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-5 { grid-template-columns: repeat(3, 1fr); }
  .cta-panel__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .testi-card { flex-basis: calc((100% - var(--gutter)) / 2); }
}
@media (max-width: 760px) {
  :root { --gutter: 20px; --section-pad: 68px; }
  .hero { min-height: auto; padding-block: 130px 70px; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .split, .cols-2, .cols-3, .cols-5, .why__grid, .footer__newsletter .inner { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .why__grid { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: 1fr 1fr; }
  .product-card__media { height: 260px; }
  .testi-card { flex-basis: 100%; }
  .section-head { text-align: left; }
  .testi__head, .testi__head .h2 { width: 100%; }
  .news-form { flex-direction: column; min-width: 0; width: 100%; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .story__media .inset { position: relative; right: 0; bottom: 0; width: 60%; margin-top: 16px; }
  .float-badge--br, .float-badge--bl { position: relative; right: 0; left: 0; bottom: 0; margin-top: 16px; display: inline-flex; }
  .awards img { height: 50px; }
}
@media (max-width: 460px) {
  .cols-4 { grid-template-columns: 1fr; }
  .hero__stats { gap: 22px; }
  .btn { width: 100%; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}
/* =========================================================================
   Promo tooltip (product pages) — "Ask About Current Promotions"
   ========================================================================= */
/* Pill slides out horizontally from behind the WhatsApp float button (z-index 90),
   then retracts back into it. Tucked under the button via z-index 89 + padding-right. */
.promo-tip { position: fixed; right: 22px; bottom: 24px; z-index: 89; height: 56px; display: flex; align-items: center; gap: 12px; padding: 0 80px 0 14px; background: linear-gradient(180deg, #2BA64E 0%, #18823C 100%); color: #fff; border-radius: 28px; box-shadow: 0 10px 26px rgba(0,40,20,.28); font-family: var(--font-sans, "Inter", sans-serif); white-space: nowrap; transform: translateX(110%); opacity: 0; pointer-events: none; transition: transform .55s cubic-bezier(.22,.61,.36,1), opacity .4s ease; }
.promo-tip.is-visible { transform: translateX(0); opacity: 1; pointer-events: auto; }
.promo-tip__text { font-size: 14.5px; font-weight: 600; line-height: 1; letter-spacing: .01em; }
.promo-tip__arrow { font-weight: 700; opacity: .8; margin-left: -5px; }
.promo-tip__close { flex: 0 0 auto; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.22); border: none; border-radius: 50%; color: #fff; cursor: pointer; font-size: 16px; line-height: 1; transition: background .2s ease; }
.promo-tip__close:hover { background: rgba(255,255,255,.4); }
@media (max-width: 420px) { .promo-tip { height: 52px; padding: 0 76px 0 12px; gap: 9px; } .promo-tip__text { font-size: 13px; } }
@media (prefers-reduced-motion: reduce) { .promo-tip { transition: opacity .4s ease; transform: translateX(0); } }

/* =========================================================================
   Certifications band (product pages) — centered logo grid (3 + 2)
   ========================================================================= */
.cert-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 38px 52px; margin: 50px auto 0; }
.cert-grid--5 { max-width: 760px; }
.cert-item { flex: 0 0 200px; max-width: 200px; margin: 0; text-align: center; }
.cert-item img { display: block; height: 112px; width: auto; max-width: 100%; margin: 0 auto 16px; object-fit: contain; }
.cert-item figcaption { font-size: 13px; line-height: 1.45; color: var(--c-slate, #5a6b7b); }
.cert-item--wide { flex-basis: 260px; max-width: 260px; }
@media (max-width: 760px) { .cert-grid--5 { max-width: 540px; } }
@media (max-width: 520px) { .cert-grid { gap: 30px 28px; } .cert-item { flex-basis: 140px; } .cert-item img { height: 92px; } }

/* end of stylesheet */
