/* ==================================================================
   Product listing & detail, blog, industries, brands
   ================================================================== */

/* Category / product cards */
.product-card { display: flex; flex-direction: column; height: 100%; }
.product-card .card-img { aspect-ratio: 4/3; }
.product-card .card-body { display: flex; flex-direction: column; flex: 1; }
.product-card h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.product-card p { font-size: var(--fs-sm); color: var(--text-muted); flex: 1; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: var(--sp-4); }
.product-card .placeholder-img { display: grid; place-items: center; aspect-ratio: 4/3; background: var(--grey-100); color: var(--grey-400); }
.product-card .placeholder-img svg { width: 64px; height: 64px; opacity: .5; }

/* Filter sidebar */
.product-layout { display: grid; grid-template-columns: 260px 1fr; gap: var(--sp-7); align-items: start; }
.filter-panel { position: sticky; top: calc(var(--header-h) + 16px); border: 1px solid rgba(24,17,68,.07); border-radius: var(--radius); padding: var(--sp-5); background: var(--gloss-light); }
.filter-panel { box-shadow: var(--shadow-xs); }
.filter-panel h4 { font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .06em; color: var(--grey-500); margin-bottom: var(--sp-4); }
.filter-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.filter-list a { display: flex; justify-content: space-between; padding: var(--sp-3) var(--sp-3); border-radius: var(--radius-sm); color: var(--navy-700); font-size: var(--fs-sm); }
.filter-list a:hover, .filter-list a.is-active { background: var(--grey-50); color: var(--cyan-500); }
.filter-list .count { color: var(--grey-400); font-size: var(--fs-xs); }

/* Product detail */
.product-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--sp-7); align-items: start; }
.product-gallery__main {
  position: relative; border: 1px solid rgba(24,17,68,.07); border-radius: var(--radius);
  overflow: hidden; background: var(--grey-50); aspect-ratio: 4/3; display: grid; place-items: center;
  cursor: zoom-in;
}
.product-gallery__main { box-shadow: var(--shadow-xs); }
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; will-change: transform; }
.product-gallery__main.is-zoomed img { transform: scale(2.3); transition: none; }
/* Magnifier hint badge */
.product-gallery__zoom-hint {
  position: absolute; right: 10px; bottom: 10px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 999px; pointer-events: none;
  background: rgba(23,25,28,.72); color: #fff; font-size: var(--fs-xs); font-weight: 600;
  opacity: .9; transition: opacity var(--transition);
}
.product-gallery__main.is-zoomed .product-gallery__zoom-hint { opacity: 0; }

/* Fullscreen lightbox (click / touch) */
.lightbox {
  position: fixed; inset: 0; z-index: 500; background: rgba(12,15,16,.92);
  display: grid; place-items: center; padding: var(--sp-5);
  opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 88vh; object-fit: contain; border-radius: var(--radius); }
.lightbox__close {
  position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); color: #fff;
  display: grid; place-items: center; cursor: pointer; font-size: 22px; line-height: 1;
}
.lightbox__close:hover { background: rgba(255,255,255,.25); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); color: #fff;
  display: grid; place-items: center; cursor: pointer;
}
.lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__prev { left: 18px; } .lightbox__next { right: 18px; }
.product-gallery__thumbs { display: flex; gap: var(--sp-3); margin-top: var(--sp-3); flex-wrap: wrap; }
.product-gallery__thumbs img { width: 76px; height: 76px; object-fit: cover; border: 2px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; }
.product-gallery__thumbs img.is-active { border-color: var(--cyan-500); }

.product-info .badge { margin-bottom: var(--sp-4); }
.product-info h1 { font-size: var(--fs-3xl); margin-bottom: var(--sp-4); }
.enquiry-box { background: var(--gloss-light); border: 1px solid rgba(24,17,68,.07); border-radius: var(--radius); padding: var(--sp-5); margin-top: var(--sp-5); }
.enquiry-box { box-shadow: var(--shadow-xs); }
.enquiry-box .btn-whatsapp { font-size: var(--fs-lg); padding: 1.1rem 1.5rem; }

/* Tabs */
.tabs { border-bottom: 2px solid var(--border); display: flex; gap: var(--sp-2); margin-bottom: var(--sp-6); flex-wrap: wrap; }
.tabs button { background: none; border: 0; padding: var(--sp-4) var(--sp-4); font-weight: 600; color: var(--grey-500); border-bottom: 3px solid transparent; margin-bottom: -2px; }
.tabs button.is-active { color: var(--navy-800); border-bottom-color: var(--cyan-500); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); text-align: left; font-size: var(--fs-sm); }
.spec-table th { width: 40%; color: var(--grey-600); font-weight: 600; background: var(--grey-50); }

/* Feature checklist */
.check-list { list-style: none; padding: 0; display: grid; gap: var(--sp-3); }
.check-list li { display: flex; gap: var(--sp-3); align-items: flex-start; }
.check-list li::before { content: "✓"; flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: rgba(23,182,129,.14); color: var(--green-500); display: grid; place-items: center; font-size: 13px; font-weight: 700; margin-top: 2px; }

/* Brand strip */
.brand-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); align-items: center; }
.brand-logo { display: grid; place-items: center; padding: var(--sp-5); border: 1px solid var(--border); border-radius: var(--radius); background: #fff; min-height: 96px; transition: all var(--transition); }
.brand-logo:hover { box-shadow: var(--shadow); }
.brand-logo span { font-weight: 700; color: var(--grey-500); letter-spacing: .02em; }

/* ---- Logo slider (continuous marquee, pauses on hover) --------- */
.logo-slider { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.logo-slider__track { display: flex; width: max-content; animation: logo-scroll 32s linear infinite; }
.logo-slider:hover .logo-slider__track { animation-play-state: paused; }
.logo-slider__item {
  flex: 0 0 auto; width: 210px; height: 92px; margin: 0 8px;
  display: grid; place-items: center;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.logo-slider__item { box-shadow: var(--shadow-xs); }
.logo-slider__item:hover { border-color: var(--grey-300); box-shadow: var(--shadow-sm); }
/* Partner logos show in their real brand colours (no grayscale wash) */
.logo-slider__item img { max-height: 46px; max-width: 150px; object-fit: contain; transition: transform var(--transition); }
.logo-slider__item:hover img { transform: scale(1.04); }
.logo-slider__item span { font-weight: 700; color: var(--ink); letter-spacing: .01em; }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-slider__track { animation: none; } }

/* Industries */
.industry-card { display: flex; gap: var(--sp-4); padding: var(--sp-5); border: 1px solid var(--border); border-left: 3px solid var(--red-500); border-radius: var(--radius); background: #fff; transition: all var(--transition); }
.industry-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-left-color: var(--green-500); }
.industry-card__icon { flex: 0 0 auto; width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--red-500); color: #fff; display: grid; place-items: center; }
.industry-card__icon svg { width: 28px; height: 28px; stroke: #fff; }
.industry-card h4 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.industry-card p { font-size: var(--fs-sm); color: var(--text-muted); margin: 0; }

/* ---- Blog listing layout + sidebar ----------------------------- */
/* Sidebar (fixed, standard width) is first in the DOM, articles fill the rest */
.blog-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: var(--sp-7); align-items: start; }
.blog-sidebar { position: sticky; top: calc(var(--header-h) + 16px); display: grid; gap: var(--sp-5); }
.blog-widget { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: var(--sp-5); box-shadow: var(--shadow-xs); }
.blog-widget h5 { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em; color: var(--grey-500); margin-bottom: var(--sp-4); }
.blog-search { display: flex; gap: 8px; }
.blog-search input { flex: 1; }
.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: 999px; font-size: var(--fs-sm); font-weight: 600;
  background: var(--grey-100); color: var(--navy-800); transition: all var(--transition);
}
.cat-pill:hover { background: var(--grey-200); color: var(--ink); }
.cat-pill__count { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px; background: #fff; color: var(--grey-600); font-size: var(--fs-xs); }
.cat-pill.is-active { background: var(--teal-500); color: #06301f; }
.cat-pill.is-active .cat-pill__count { background: rgba(6,48,31,.16); color: #06301f; }
.recent-posts { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-4); }
.recent-post { display: flex; gap: var(--sp-3); align-items: flex-start; }
.recent-post img, .recent-post__ph { width: 56px; height: 56px; flex: 0 0 auto; border-radius: var(--radius-sm); object-fit: cover; }
.recent-post__ph { display: grid; place-items: center; background: var(--grey-100); color: var(--grey-400); }
.recent-post__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.recent-post__body strong { font-size: var(--fs-sm); line-height: 1.35; color: var(--navy-800); }
.recent-post:hover strong { color: var(--teal-600); }
.recent-post__body time { font-size: var(--fs-xs); color: var(--text-muted); }
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

/* Blog */
.post-card .card-img { aspect-ratio: 16/9; }
.post-card__meta { display: flex; align-items: center; flex-wrap: wrap; gap: var(--sp-3); font-size: var(--fs-xs); color: var(--text-muted); margin-bottom: var(--sp-3); }
.post-card__meta > span { display: inline-flex; align-items: center; gap: 5px; line-height: 1; }
/* Article meta strip sitting under the featured image — single row */
.post-meta-row { gap: var(--sp-4); margin: var(--sp-4) 0 var(--sp-6); flex-wrap: nowrap; }
.post-meta-row > span { white-space: nowrap; }
@media (max-width: 560px) { .post-meta-row { flex-wrap: wrap; gap: var(--sp-3); } }
.post-card__meta svg { flex: 0 0 auto; }
.post-card h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-3); }
.post-card h3 a { color: var(--navy-800); }
.post-card h3 a:hover { color: var(--cyan-500); }

/* ---- Blog detail hero ------------------------------------------ */
.blog-hero { position: relative; }
.blog-hero__cat { margin-bottom: var(--sp-4); }
.blog-hero__title { font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.1; margin-bottom: var(--sp-4); }
.blog-hero__lead { font-size: var(--fs-lg); line-height: 1.6; max-width: 70ch; margin-bottom: var(--sp-5); }
.blog-hero__meta { margin: 0; font-size: var(--fs-sm); }
.blog-hero__meta svg { color: var(--teal-500); }

/* Plain (no featured image): light hero */
.blog-hero--plain { padding-top: var(--sp-6); padding-bottom: 0; }
.blog-hero--plain .blog-hero__lead { color: var(--grey-600); }
.blog-hero--plain .blog-hero__meta { color: var(--grey-600); }

/* Image hero: featured image as background, dark overlay, text on top */
.blog-hero--image {
  background-size: cover; background-position: center; background-repeat: no-repeat;
  color: #fff; overflow: hidden;
  padding-block: clamp(3rem, 9vw, 6rem);
}
.blog-hero--image::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(10,14,15,.72) 0%, rgba(10,14,15,.62) 55%, rgba(10,14,15,.82) 100%);
}
.blog-hero--image .container { position: relative; z-index: 1; }
.blog-hero--image .blog-hero__title { color: #fff; }
.blog-hero--image .blog-hero__lead { color: rgba(255,255,255,.9); }
.blog-hero--image .blog-hero__meta { color: rgba(255,255,255,.88); }
.blog-hero--image .blog-hero__meta svg { color: var(--cyan-300); }
.blog-hero--image .badge-cyan { background: var(--teal-500); color: #06301f; }
/* light breadcrumbs on the dark hero */
.blog-hero .breadcrumbs { padding-top: 0; }
.blog-hero .breadcrumbs .container { max-width: none; padding-inline: 0; }
.blog-hero--image .breadcrumbs, .blog-hero--image .breadcrumbs [aria-current] { color: rgba(255,255,255,.75); }
.blog-hero--image .breadcrumbs a { color: rgba(255,255,255,.85); }
.blog-hero--image .breadcrumbs li::after { color: rgba(255,255,255,.5); }

/* ---- Article detail layout + tracking TOC ---------------------- */
.article-layout-detail { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: var(--sp-8); align-items: start; }
.article-main { min-width: 0; max-width: 820px; }
.article-toc { position: sticky; top: calc(var(--header-h) + 24px); }
.toc__title { display: block; font-size: var(--fs-lg); font-weight: 700; color: var(--ink); margin-bottom: var(--sp-4); padding-bottom: var(--sp-3); border-bottom: 1px solid var(--border); }
.toc__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.toc__list li a {
  display: block; padding: 7px 0 7px 16px; margin-left: -1px;
  border-left: 2px solid var(--border);
  font-size: var(--fs-sm); line-height: 1.4; color: var(--grey-500);
  transition: color var(--transition), border-color var(--transition), font-weight var(--transition);
}
.toc__list li a:hover { color: var(--ink); }
.toc__list li.toc--h3 a { padding-left: 30px; font-size: var(--fs-xs); }
.toc__list li.is-active > a { color: var(--teal-600); font-weight: 700; border-left-color: var(--teal-500); }
/* offset so anchored headings aren't hidden under the sticky header */
.article-body :is(h2, h3)[id] { scroll-margin-top: calc(var(--header-h) + 20px); }
@media (max-width: 992px) {
  .article-layout-detail { grid-template-columns: 1fr; }
  .article-toc { display: none; }
}

.article-body { font-size: var(--fs-lg); line-height: 1.75; }
.article-body h2 { margin: var(--sp-7) 0 var(--sp-4); font-size: var(--fs-2xl); }
.article-body h3 { margin: var(--sp-6) 0 var(--sp-3); }
.article-body p { margin-bottom: var(--sp-5); }
.article-body img { border-radius: var(--radius); margin-block: var(--sp-5); }
.article-body blockquote { border-left: 4px solid var(--cyan-500); padding-left: var(--sp-5); color: var(--grey-600); font-style: italic; margin-block: var(--sp-5); }

/* ---- FAQ accordion (article + solution) ------------------------ */
.post-faq { margin-top: var(--sp-7); padding-top: var(--sp-6); border-top: 1px solid var(--border); }
.post-faq__title { font-size: var(--fs-2xl); margin-bottom: var(--sp-5); }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: var(--sp-3); background: #fff; overflow: hidden; }
.faq-item[open] { border-color: var(--teal-500); }
.faq-item > summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5); font-weight: 600; color: var(--navy-800);
  cursor: pointer; list-style: none;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item__chev { flex: 0 0 auto; color: var(--teal-600); transition: transform var(--transition); }
.faq-item[open] > summary .faq-item__chev { transform: rotate(180deg); }
.faq-item__body { padding: 0 var(--sp-5) var(--sp-4); color: var(--grey-600); line-height: 1.7; }

/* ---- Carousel (3 per view desktop · 2 tablet · 1 mobile) -------- */
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: var(--sp-5);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__item { flex: 0 0 calc((100% - 2 * var(--sp-5)) / 3); scroll-snap-align: start; }
.carousel__item > * { height: 100%; }
.carousel__nav {
  position: absolute; top: 42%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center; z-index: 5; cursor: pointer; color: var(--ink);
  transition: all var(--transition);
}
.carousel__nav:hover {
  background: var(--teal-500); color: #fff; border-color: var(--teal-500);
  box-shadow: var(--shadow);
}
.carousel__nav:active { transform: translateY(-50%) scale(.94); }
.carousel__nav[disabled] { opacity: .3; cursor: default; pointer-events: none; }
.carousel__nav svg { width: 20px; height: 20px; }
.carousel__prev { left: -18px; }
.carousel__next { right: -18px; }
.carousel__dots { display: flex; gap: 6px; justify-content: center; margin-top: var(--sp-5); }
.carousel__dot { width: 8px; height: 8px; border-radius: 50%; border: 0; background: var(--grey-300); cursor: pointer; padding: 0; }
.carousel__dot.is-active { background: var(--teal-500); width: 22px; border-radius: 4px; }
@media (max-width: 992px) {
  .carousel__item { flex-basis: calc((100% - var(--sp-5)) / 2); }
  .carousel__prev { left: 4px; } .carousel__next { right: 4px; }
}
@media (max-width: 768px) {
  .carousel__item { flex-basis: 100%; }
}

/* ---- Feature cards — square, icon top-right, green on hover ----- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: var(--sp-5); }
.feature-card {
  position: relative; aspect-ratio: 1 / 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--sp-6);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-xs); overflow: hidden;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card__icon {
  position: absolute; top: var(--sp-6); right: var(--sp-6);
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: grid; place-items: center;
  background: var(--grey-100); color: var(--green-600);
  transition: background var(--transition), color var(--transition);
}
.feature-card__icon svg { width: 26px; height: 26px; }
/* Category pill (sits where the icon used to, top-left) */
.feature-card__pill {
  position: absolute; top: var(--sp-6); left: var(--sp-6); z-index: 2;
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: 999px;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .02em;
  background: var(--teal-500); color: #06301f;
  transition: background var(--transition), color var(--transition);
}
/* keep the pill readable when a plain card fills green on hover */
.feature-card:hover .feature-card__pill { background: #06301f; color: #fff; }
.feature-card--image .feature-card__pill,
.feature-card--image:hover .feature-card__pill { background: var(--teal-500); color: #06301f; }
/* keep the pill pinned top-left on image cards (overrides .feature-card--image > *) */
.feature-card--image .feature-card__pill { position: absolute; top: var(--sp-6); left: var(--sp-6); }
.feature-card h3, .feature-card h4 { margin: 0 0 var(--sp-2); transition: color var(--transition); }
.feature-card p { color: var(--text-muted); font-size: var(--fs-sm); margin: 0; transition: color var(--transition); }

/* hover → solid green fill with dark, high-contrast text */
.feature-card:hover { background: var(--teal-500); border-color: var(--teal-500); transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-card:hover h3, .feature-card:hover h4 { color: #06301f; }
.feature-card:hover p { color: rgba(6,48,31,.82); }
.feature-card:hover .feature-card__icon { background: rgba(255,255,255,.4); color: #06301f; }

/* Feature card with a background image (managed from the CMS) */
.feature-card--image { background-size: cover; background-position: center; border: 0; }
.feature-card--image::before {
  content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit;
  background: linear-gradient(to top, rgba(8,11,12,.88) 0%, rgba(8,11,12,.35) 55%, rgba(8,11,12,.12) 100%);
  transition: background var(--transition);
}
.feature-card--image > * { position: relative; z-index: 1; }
.feature-card--image h3, .feature-card--image h4 { color: #fff; }
.feature-card--image p { color: rgba(255,255,255,.85); }
.feature-card--image .feature-card__icon { background: rgba(255,255,255,.22); color: #fff; }
/* image cards keep the card lift + overlay polish on hover, but the photo itself
   stays put — re-pin size/position so the `background` shorthand can't shift it. */
.feature-card--image:hover {
  background-color: transparent; background-size: cover; background-position: center;
  border: 0; transform: translateY(-3px); box-shadow: var(--shadow);
}
.feature-card--image:hover::before { background: linear-gradient(to top, rgba(6,48,31,.9) 0%, rgba(8,11,12,.4) 60%, rgba(8,11,12,.15) 100%); }
.feature-card--image:hover h3, .feature-card--image:hover h4 { color: #fff; }
.feature-card--image:hover p { color: rgba(255,255,255,.9); }

@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { aspect-ratio: auto; min-height: 190px; }
}

/* ---- Info card (Vision/Mission/Values, overview capabilities) --- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
@media (max-width: 900px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
.info-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-7) var(--sp-6);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.info-card__icon {
  width: 56px; height: 56px; margin-bottom: var(--sp-2);
  border-radius: var(--radius); display: grid; place-items: center;
  background: rgba(37,211,148,.12); color: var(--cyan-500);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.info-card__icon svg { width: 27px; height: 27px; }
.info-card h3 { margin: 0; font-size: var(--fs-xl); color: var(--ink); }
.info-card p { margin: 0; color: var(--text-muted); font-size: var(--fs-base); line-height: 1.65; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-500); }
.info-card:hover .info-card__icon { background: var(--teal-500); color: #06301f; transform: translateY(-2px); }
@media (max-width: 560px) { .info-grid { grid-template-columns: 1fr; } }

/* Link variant — used for the support channel cards */
.info-card--link { text-decoration: none; color: inherit; }
.info-card--link .info-card__cta {
  margin-top: auto; padding-top: var(--sp-4);
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-sm); font-weight: 700; color: var(--cyan-500);
}
.info-card--link .info-card__cta svg { transition: transform var(--transition); }
.info-card--link:hover .info-card__cta svg { transform: translateX(4px); }

/* ---- Support page ---------------------------------------------- */
/* Header with a trailing action — spans the full container so the action
   sits flush right (.section-header caps at 720px, which would strand it). */
.section-header--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--sp-5); flex-wrap: wrap;
  max-width: none; width: 100%;
}
.section-header--row > :first-child { max-width: 720px; }
.section-header--row .btn { flex: 0 0 auto; }
@media (max-width: 560px) {
  .section-header--row { align-items: flex-start; }
}
.support-contact { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: center; }
.support-contact__hours {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--grey-600); font-size: var(--fs-sm); margin: 0;
}
.support-contact__hours svg { color: var(--teal-600); flex: 0 0 auto; }
.support-channels { display: grid; gap: var(--sp-3); }
.support-channel {
  display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-xs); text-decoration: none; color: inherit;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.support-channel:hover { border-color: var(--teal-500); transform: translateY(-2px); box-shadow: var(--shadow); }
.support-channel__icon {
  width: 46px; height: 46px; flex: 0 0 auto; border-radius: var(--radius-sm);
  display: grid; place-items: center;
  background: rgba(37,211,148,.12); color: var(--cyan-500);
  transition: background var(--transition), color var(--transition);
}
.support-channel:hover .support-channel__icon { background: var(--teal-500); color: #06301f; }
.support-channel__main { flex: 1; min-width: 0; }
.support-channel__label {
  display: block; font-size: var(--fs-xs); text-transform: uppercase;
  letter-spacing: .06em; color: var(--grey-500);
}
.support-channel strong { display: block; color: var(--ink); font-size: var(--fs-base); }
.support-channel__go { color: var(--grey-400); flex: 0 0 auto; transition: transform var(--transition), color var(--transition); }
.support-channel:hover .support-channel__go { color: var(--teal-600); transform: translateX(3px); }

/* Download rows live in forms.css — shared by the public site, CMS and portal. */

/* Customer portal */
.account-head {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5);
  flex-wrap: wrap; padding-bottom: var(--sp-5); margin-bottom: var(--sp-5);
  border-bottom: 1px solid var(--border);
}
.account-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.account-stat {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-xs); padding: var(--sp-5);
  font-size: var(--fs-sm); color: var(--grey-600);
}
.account-stat span { display: block; font-size: var(--fs-2xl); font-weight: 800; color: var(--ink); line-height: 1.1; margin-bottom: 2px; }

.ticket-list { display: grid; gap: var(--sp-3); }
.ticket-row {
  display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-5); text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.ticket-row:hover { border-color: var(--teal-500); transform: translateY(-2px); box-shadow: var(--shadow); }
.ticket-row__main { flex: 1; min-width: 0; }
.ticket-row__top { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; margin-bottom: 6px; }
.ticket-row__main h4 { margin: 0 0 4px; font-size: var(--fs-base); color: var(--ink); }
.ticket-row__meta { font-size: var(--fs-xs); color: var(--grey-500); }
.ticket-row__go { color: var(--grey-400); flex: 0 0 auto; transition: transform var(--transition), color var(--transition); }
.ticket-row:hover .ticket-row__go { color: var(--teal-600); transform: translateX(3px); }

@media (max-width: 560px) { .account-stats { grid-template-columns: 1fr; } }

@media (max-width: 860px) { .support-contact { grid-template-columns: 1fr; gap: var(--sp-6); } }
@media (max-width: 560px) {
  .dl-row { flex-wrap: wrap; }
  .dl-row .btn-download { width: 100%; justify-content: center; }
}

/* ---- Implementation process — connected step timeline ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.process__step { position: relative; text-align: center; padding: 0 var(--sp-3); }
.process__num {
  position: relative; z-index: 1; width: 60px; height: 60px; margin: 0 auto var(--sp-4);
  border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: #fff;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
  /* the ring is the section background — it masks the connector under the circle */
  box-shadow: 0 0 0 7px var(--bg-alt), var(--shadow-xs);
}
.process__step:first-child .process__num { background: var(--teal-500); color: #06301f; }
.process__step h4 { margin-bottom: var(--sp-2); }
.process__step p { color: var(--text-muted); font-size: var(--fs-sm); margin: 0; }
/* dashed connector between circles */
.process__step:not(:last-child)::before {
  content: ""; position: absolute; z-index: 0; top: 30px; height: 2px;
  left: calc(50% + 36px); right: calc(-50% + 36px);
  background: repeating-linear-gradient(90deg, var(--grey-300) 0 7px, transparent 7px 13px);
}
@media (max-width: 900px) { .process { grid-template-columns: 1fr 1fr; gap: var(--sp-7) var(--sp-6); }
  .process__step:not(:last-child)::before { display: none; } }
@media (max-width: 560px) {
  .process { grid-template-columns: 1fr; gap: 0; }
  .process__step { text-align: left; display: grid; grid-template-columns: 60px 1fr; gap: var(--sp-4); padding: 0 0 var(--sp-6); }
  .process__num { margin: 0; }
  .process__content { padding-top: 4px; }
  .process__step:not(:last-child)::before {
    display: block; top: 62px; bottom: -8px; left: 29px; height: auto; width: 2px; right: auto;
    background: repeating-linear-gradient(180deg, var(--grey-300) 0 7px, transparent 7px 13px);
  }
}

/* ---- Homepage "about" media (owner picks image or video) -------- */
.about-media { width: 100%; }
.about-media .media-image {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.media-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--grey-100);
  box-shadow: var(--shadow-xs);
}
.media-frame iframe,
.media-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; object-fit: cover; }

/* ---- Blog comments --------------------------------------------- */
.comments { margin-top: var(--sp-7); padding-top: var(--sp-6); border-top: 1px solid var(--border); }
.comments__title { font-size: var(--fs-2xl); margin-bottom: var(--sp-5); }
.comment-list { list-style: none; padding: 0; margin: 0 0 var(--sp-7); display: grid; gap: var(--sp-5); }
.comment { display: flex; gap: var(--sp-4); }
.comment__avatar {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700;
  background: rgba(37,211,148,.16); color: var(--green-600);
}
.comment__main { flex: 1; min-width: 0; }
.comment__head { display: flex; align-items: baseline; gap: var(--sp-3); flex-wrap: wrap; margin-bottom: 4px; }
.comment__head strong { color: var(--ink); }
.comment__head time { font-size: var(--fs-xs); color: var(--text-muted); }
.comment__body { margin: 0; color: var(--grey-600); line-height: 1.65; }

.comment-form { background: var(--grey-50); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--sp-6); }
.comment-form h3 { font-size: var(--fs-xl); margin-bottom: .25rem; }
/* Honeypot — visually hidden but not display:none (bots skip those) */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Testimonials */
.testimonial { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: var(--sp-6); position: relative; }
.testimonial__quote { font-size: var(--fs-lg); color: var(--navy-800); line-height: 1.6; margin-bottom: var(--sp-5); }
.testimonial__quote::before { content: "\201C"; font-size: 3rem; color: var(--cyan-300); line-height: 0; position: absolute; top: 30px; left: 20px; opacity: .4; }
.testimonial__author { display: flex; align-items: center; gap: var(--sp-3); }
.testimonial__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy-700); color: #fff; display: grid; place-items: center; font-weight: 700; }
.testimonial__author strong { display: block; color: var(--navy-800); font-size: var(--fs-sm); }
.testimonial__author span { font-size: var(--fs-xs); color: var(--text-muted); }
.stars { color: var(--orange-500); letter-spacing: 2px; margin-bottom: var(--sp-3); }
