/* =========================================================
   Safora Technet — stylesheet

   Structure
   1. Tokens + section themes (dark / light / mist)
   2. Reset + base
   3. Layout primitives (wrap, section, section-head)
   4. Buttons, links, chips
   5. Header + mobile menu
   6. Hero slider + facts strip
   7. Page banners + sticky jump-nav
   8. Service cards + service rows
   9. Product cards + product pages
  10. Industries (one shared component, used on Home + About)
  11. About blocks (vision/mission, quote, why-choose, presence)
  12. Contact
  13. CTA card
  14. Footer + WhatsApp button

   Every section sets a theme class (theme-dark / theme-light /
   theme-mist). Components read the theme's variables, so the same
   card or chip works on a dark or a white background.
   ========================================================= */

/* ---------- 1. tokens + themes ---------- */
:root {
  --ink: #0f111a;
  --navy: #161927;
  --navy-2: #1e2233;
  --navy-line: #2a2f45;

  --magenta: #e31c79;
  --magenta-btn: #d9196f;
  --cyan: #29b6d8;

  --font-display: "Space Grotesk", "IBM Plex Sans", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;

  --max: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(56px, 8vw, 104px);
  --header-h: 68px;
  --subnav-h: 58px;
  --radius: 14px;
  --radius-sm: 8px;
}
@media (max-width: 640px) { :root { --header-h: 64px; } }

.theme-dark {
  --bg: #0f111a;
  --card: #161927;
  --card-2: #1e2233;
  --border: #2a2f45;
  --fg: #d3d7e6;
  --fg-strong: #ffffff;
  --fg-muted: #a3aac3;
  --fg-subtle: #8a92ae;
  --link: #4cc7e6;
  --icon-line: #6f789b;
  --grad-a: #29b6d8;
  --grad-b: #f0308a;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  --ghost-border: rgba(255, 255, 255, 0.24);
  --ghost-hover: #ffffff;
}
.theme-light,
.theme-mist {
  --bg: #ffffff;
  --card: #ffffff;
  --card-2: #eef1f8;
  --border: #dfe4f0;
  --fg: #2b3049;
  --fg-strong: #0f111a;
  --fg-muted: #4b5371;
  --fg-subtle: #5f6787;
  --link: #0a7e9c;
  --icon-line: #8c94ae;
  --grad-a: #0c93b6;
  --grad-b: #d0176c;
  --shadow: 0 16px 40px rgba(20, 28, 60, 0.11);
  --ghost-border: #c5cce0;
  --ghost-hover: #0f111a;
}
.theme-mist {
  --bg: #f3f5fb;
  --card-2: #e9edf7;
  --border: #dce1ee;
}

/* ---------- 2. reset + base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: #d3d7e6;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  line-height: 1.15;
  color: var(--fg-strong, #fff);
}
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--link, var(--cyan));
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 100;
  background: #fff;
  color: #0f111a;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 3. layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  background: var(--bg);
  color: var(--fg);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
/* used when two sections share the same background, so their padding doesn't stack */
.section.section-flush-top { padding-top: 0; }

.section-head {
  max-width: 700px;
  margin-bottom: clamp(32px, 4.5vw, 56px);
}
.section-head h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  letter-spacing: -0.015em;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 44px; height: 3px;
  margin-top: 18px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--grad-a), var(--grad-b));
}
.section-head p {
  margin-top: 18px;
  color: var(--fg-muted);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  max-width: 58ch;
}

/* ---------- 4. buttons, links, chips ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--magenta-btn);
  color: #fff;
  box-shadow: 0 8px 22px rgba(227, 28, 121, 0.28);
}
.btn-primary:hover { background: #ea2280; }
.btn-ghost {
  border-color: var(--ghost-border);
  color: var(--fg-strong);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ghost-hover); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 480px) {
  .btn-row .btn { flex: 1 1 100%; }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--link);
}
.text-link::after {
  content: "";
  width: 7px; height: 7px;
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}
a:hover > .text-link::after,
.text-link:hover::after { transform: rotate(45deg) translate(2px, -2px); }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--fg-muted);
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: 100px;
}

.icon-wrap {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--card-2);
  border: 1px solid var(--border);
  color: var(--icon-line);
  display: flex; align-items: center; justify-content: center;
}
.icon-wrap svg { width: 26px; height: 26px; }

/* ---------- 5. header + mobile menu ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 17, 26, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-line);
  color: #d3d7e6;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}
.logo { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 38px; width: auto; flex-shrink: 0; }
.logo .word { display: flex; flex-direction: column; line-height: 1; }
.logo .word b {
  font-family: var(--font-display);
  color: var(--magenta);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.logo .word span {
  font-family: var(--font-display);
  color: var(--cyan);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: clamp(20px, 3vw, 36px); }
.nav-links a {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--header-h);
  font-size: 0.95rem;
  color: #a3aac3;
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
}
.nav-links .nav-menu-cta { display: none; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { min-height: 42px; padding: 9px 20px; font-size: 0.92rem; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-sm);
  width: 44px; height: 44px;
  color: #fff;
  align-items: center;
  justify-content: center;
}
.nav-toggle .bars-close { display: none; }
header.site.open .nav-toggle .bars-open { display: none; }
header.site.open .nav-toggle .bars-close { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-primary { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border-bottom: 1px solid var(--navy-line);
    padding: 6px var(--gutter) 22px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
  }
  header.site.open .nav-links { display: flex; }
  .nav-links a {
    height: auto;
    min-height: 52px;
    padding: 12px 0;
    border-bottom: 1px solid var(--navy-line);
    font-size: 1.02rem;
  }
  .nav-links a.active::after {
    left: -12px; right: auto; top: 12px; bottom: 12px;
    width: 3px; height: auto;
    background: linear-gradient(180deg, var(--cyan), var(--magenta));
  }
  .nav-links .nav-menu-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 18px;
    border-bottom: none;
    color: #fff;
  }
}

/* ---------- 6. hero slider + facts strip ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--fg);
}
.hero-slider {
  --hero-h: calc(100vh - var(--header-h));
  position: relative;
  height: clamp(600px, var(--hero-h), 860px);
}
@supports (height: 100svh) {
  .hero-slider { --hero-h: calc(100svh - var(--header-h)); }
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.7s ease, visibility 0s linear 0.7s;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.7s ease, visibility 0s;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 66% center;
}
.hero-slide.active .hero-bg img { animation: hero-zoom 9s ease-out both; }
@keyframes hero-zoom { from { transform: scale(1.07); } to { transform: scale(1); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 11, 17, 0.95) 0%, rgba(10, 11, 17, 0.78) 30%, rgba(10, 11, 17, 0.3) 62%, rgba(10, 11, 17, 0.06) 100%),
    linear-gradient(0deg, rgba(10, 11, 17, 0.8) 0%, rgba(10, 11, 17, 0) 40%);
}
.hero-slide .wrap {
  position: relative;
  z-index: 2;
  padding-bottom: 92px;
}
.hero-content { max-width: 620px; }
.hero-content .kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
}
.hero-content h1,
.hero-content .hero-heading {
  color: #fff;
  font-size: clamp(2.3rem, 5.2vw, 4.1rem);
  letter-spacing: -0.025em;
  line-height: 1.06;
  text-wrap: balance;
}
.hero-content .lede {
  margin-top: 22px;
  color: #c3c8dc;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  max-width: 50ch;
}
.hero-content .btn-row { margin-top: 34px; }
.hero-content .btn-ghost { --ghost-border: rgba(255, 255, 255, 0.4); --ghost-hover: #fff; color: #fff; }

.hero-slide.active .hero-content > * { animation: hero-rise 0.7s cubic-bezier(.2, .7, .3, 1) both; }
.hero-slide.active .hero-content > *:nth-child(2) { animation-delay: 0.08s; }
.hero-slide.active .hero-content > *:nth-child(3) { animation-delay: 0.16s; }
.hero-slide.active .hero-content > *:nth-child(4) { animation-delay: 0.24s; }
@keyframes hero-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.hero-controls-wrap {
  position: absolute;
  left: 0; right: 0;
  bottom: 88px;
  z-index: 4;
}
.hero-controls { display: flex; align-items: center; gap: 22px; }
.hero-dots { display: flex; gap: 8px; }
.hero-dot {
  position: relative;
  width: 44px; height: 28px;   /* generous tap target; the bar itself is drawn in ::before / ::after */
  padding: 0;
  border: none;
  background: transparent;
}
.hero-dot::before,
.hero-dot::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 3px;
  margin-top: -1.5px;
  border-radius: 2px;
}
.hero-dot::before { background: rgba(255, 255, 255, 0.3); }
.hero-dot::after {
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transform: scaleX(0);
  transform-origin: left center;
}
.hero-dot.active::after { transform: scaleX(1); animation: dot-fill 6s linear both; }
.hero.paused .hero-dot.active::after { animation-play-state: paused; }
.hero.no-autoplay .hero-dot.active::after { animation: none; transform: scaleX(1); }
@keyframes dot-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-arrows { display: flex; gap: 10px; }
.hero-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(10, 11, 17, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.hero-arrow:hover { border-color: #fff; background: rgba(255, 255, 255, 0.12); }

@media (max-width: 1024px) {
  .hero-slider { --hero-h: calc(86vh - var(--header-h)); height: clamp(560px, var(--hero-h), 760px); }
}
@supports (height: 100svh) {
  @media (max-width: 1024px) { .hero-slider { --hero-h: calc(86svh - var(--header-h)); } }
}
@media (max-width: 640px) {
  .hero-slider { --hero-h: calc(84vh - var(--header-h)); height: clamp(560px, var(--hero-h), 700px); }
  .hero-slide { align-items: flex-end; }
  .hero-slide .wrap { padding-bottom: 92px; }
  .hero-bg img { object-position: 72% center; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(10, 11, 17, 0.97) 0%, rgba(10, 11, 17, 0.72) 48%, rgba(10, 11, 17, 0.2) 80%),
      linear-gradient(90deg, rgba(10, 11, 17, 0.5) 0%, rgba(10, 11, 17, 0.1) 70%);
  }
  .hero-controls-wrap { bottom: 60px; }
  .hero-arrows { display: none; }
  .hero-dot { width: 38px; }
  .hero-content .btn-row { margin-top: 26px; }
}
@supports (height: 100svh) {
  @media (max-width: 640px) { .hero-slider { --hero-h: calc(84svh - var(--header-h)); } }
}
@media (max-width: 380px) {
  .hero-content h1, .hero-content .hero-heading { font-size: 2.05rem; }
}

/* facts strip: a white card that straddles the bottom edge of the hero */
.facts-band {
  --overlap: 56px;
  position: relative;
  z-index: 6;
  margin-top: calc(var(--overlap) * -1);
  background: linear-gradient(to bottom, transparent var(--overlap), #ffffff var(--overlap));
}
@media (max-width: 640px) { .facts-band { --overlap: 34px; } }
.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid #dfe4f0;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(10, 14, 40, 0.22);
  overflow: hidden;
}
.fact {
  padding: clamp(18px, 2.4vw, 30px) clamp(16px, 2.4vw, 30px);
  border-left: 1px solid #e6eaf4;
}
.fact:first-child { border-left: none; }
.fact .v {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #0c93b6, #d0176c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fact .l {
  display: block;
  margin-top: 8px;
  color: #4b5371;
  font-size: 0.9rem;
  line-height: 1.4;
}
@media (max-width: 760px) {
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 16px; }
  .fact:nth-child(3) { border-left: none; }
  .fact:nth-child(n+3) { border-top: 1px solid #e6eaf4; }
}

/* ---------- 7. page banners + sticky jump-nav ---------- */
.page-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: clamp(260px, 32vw, 380px);
  background: var(--ink);
}
.page-banner .banner-bg { position: absolute; inset: 0; }
.page-banner .banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.page-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10, 11, 17, 0.96) 0%, rgba(10, 11, 17, 0.62) 55%, rgba(10, 11, 17, 0.25) 100%),
    linear-gradient(90deg, rgba(10, 11, 17, 0.7) 0%, rgba(10, 11, 17, 0.1) 70%);
}
.page-banner .wrap {
  position: relative;
  z-index: 2;
  padding-top: clamp(72px, 9vw, 110px);
  padding-bottom: clamp(30px, 4vw, 52px);
}
.page-banner h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  letter-spacing: -0.02em;
  max-width: 20ch;
}
.page-banner p {
  margin-top: 16px;
  color: #c3c8dc;
  max-width: 56ch;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
}

/* sticky jump-nav (Services + Products) */
.jump-nav {
  position: sticky;
  top: calc(var(--header-h) - 1px);
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #dfe4f0;
}
.jump-nav-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.jump-nav-row::-webkit-scrollbar { display: none; }
.jump-link {
  flex-shrink: 0;
  font-size: 0.88rem;
  color: #4b5371;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid #dfe4f0;
  background: #fff;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.jump-link:hover { color: #0f111a; border-color: #9aa3bf; }
.jump-link.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, #0c93b6, #d0176c);
}

/* ---------- 8. service cards + service rows ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}
@media (max-width: 1000px) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .svc-grid { grid-template-columns: minmax(0, 1fr); } }
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(22px, 2.6vw, 32px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.svc-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--grad-a), var(--grad-b));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
  .svc-card:hover::before { transform: scaleX(1); }
}
.svc-card h3 { font-size: 1.15rem; }
.svc-card p { color: var(--fg-muted); font-size: 0.97rem; }
.svc-card .text-link { margin-top: auto; padding-top: 4px; }

.svc-list { border-top: 1px solid var(--border); }
.svc-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(26px, 3.4vw, 42px) 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-h) + var(--subnav-h) + 12px);
}
@media (max-width: 760px) { .svc-row { grid-template-columns: minmax(0, 1fr); gap: 16px; } }
.svc-row h3 {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
}
.svc-row p.desc { color: var(--fg-muted); font-size: 1.02rem; }
.svc-row ul { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.svc-row li {
  position: relative;
  padding-left: 20px;
  color: var(--fg-subtle);
  font-size: 0.95rem;
}
.svc-row li::before {
  content: "";
  position: absolute; left: 0; top: 0.72em;
  width: 8px; height: 2px;
  background: var(--magenta);
}

/* ---------- 9. product cards + product pages ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
@media (max-width: 999px) { .product-grid { grid-template-columns: minmax(0, 1fr); } }
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) {
  .product-card:hover { transform: translateY(-4px); border-color: var(--cyan); box-shadow: var(--shadow); }
  .product-card:hover .thumb img { transform: scale(1.04); }
}
.product-card .thumb {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #0b0d16;
}
.product-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.2, .7, .3, 1);
}
.product-card .body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  padding: clamp(22px, 2.4vw, 30px);
}
.product-card .tag {
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--link);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
}
.product-card h3 { font-size: 1.28rem; }
.product-card p.desc { color: var(--fg-muted); font-size: 0.97rem; }
.product-card .body > .btn { margin-top: auto; }
.product-card p.desc { margin-bottom: 10px; }
@media (min-width: 640px) and (max-width: 999px) {
  .product-card { flex-direction: row; }
  .product-card .thumb { flex: 0 0 44%; aspect-ratio: auto; min-height: 280px; }
  .product-card .thumb img { object-position: left center; }
}

/* products page */
.product-block { scroll-margin-top: calc(var(--header-h) + var(--subnav-h)); }
.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) {
  .product-intro { grid-template-columns: minmax(0, 1fr); }
  .product-intro .product-shot { order: -1; }
}
.product-intro .tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--link);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
}
.product-intro h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.8rem);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.product-intro .lede {
  margin-top: 18px;
  color: var(--fg-muted);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  max-width: 54ch;
}
.product-intro .btn-row { margin-top: 28px; }
.product-shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #0b0d16;
}
.product-shot img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }

.product-body { margin-top: clamp(32px, 4.5vw, 56px); }
.product-body > * + * { margin-top: clamp(28px, 4vw, 44px); }
.product-body > h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 18px; }
.product-body > h3 + * { margin-top: 0; }
.product-body p.desc { color: var(--fg-muted); font-size: 1.02rem; max-width: 78ch; }
.product-body > p.desc + p.desc { margin-top: 16px; }
.product-body > .split + .split { margin-top: 24px; }
.product-body p.desc strong { color: var(--fg-strong); font-weight: 600; }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}
@media (max-width: 900px) { .mission-grid { grid-template-columns: minmax(0, 1fr); } }
.mission-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px);
}
.mission-card h4 { font-size: 1.12rem; margin-bottom: 8px; }
.mission-card p { color: var(--fg-muted); font-size: 0.96rem; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 800px) { .stat-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.stat-pill {
  padding: clamp(18px, 2.4vw, 28px);
  border-left: 1px solid var(--border);
}
.stat-pill:first-child { border-left: none; }
@media (max-width: 800px) {
  .stat-pill:nth-child(3) { border-left: none; }
  .stat-pill:nth-child(n+3) { border-top: 1px solid var(--border); }
}
.stat-pill .num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600;
  line-height: 1.1;
  background: linear-gradient(90deg, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-pill .label { display: block; margin-top: 8px; color: var(--fg-muted); font-size: 0.88rem; line-height: 1.4; }

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
}
@media (max-width: 800px) { .split { grid-template-columns: minmax(0, 1fr); } }
.split h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); letter-spacing: -0.015em; margin-bottom: 16px; }
.split h3 { font-size: 1.25rem; margin-bottom: 12px; }
.split p { color: var(--fg-muted); }

.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px clamp(24px, 4vw, 48px);
}
.bullet-grid.one-col { grid-template-columns: minmax(0, 1fr); }
@media (max-width: 680px) { .bullet-grid { grid-template-columns: minmax(0, 1fr); } }
.bullet-grid li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--fg-muted);
  font-size: 0.98rem;
}
.bullet-grid li::before {
  content: "";
  flex-shrink: 0;
  width: 8px; height: 2px;
  margin-top: 0.8em;
  background: var(--magenta);
}

/* ---------- 10. industries (single shared component) ---------- */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}
.ind-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #dfe4f0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(20, 28, 60, 0.06);
  transition: transform 0.25s cubic-bezier(.2, .7, .3, 1), box-shadow 0.25s ease;
}
.ind-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0f111a;
}
.ind-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2, .7, .3, 1);
}
.ind-body {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 18px;
  min-height: 78px;
}
.ind-body::before {
  content: "";
  position: absolute;
  left: 18px; top: 0;
  width: 30px; height: 3px;
  background: linear-gradient(90deg, #29b6d8, #e31c79);
  border-radius: 0 0 2px 2px;
  transition: width 0.3s ease;
}
.ind-body h3 {
  color: #0f111a;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  font-weight: 600;
  line-height: 1.25;
}
.ind-cta {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0f111a, #1e2233);
  border: 1px solid #2a2f45;
  color: #d3d7e6;
}
.ind-cta h3 { color: #fff; font-size: 1.1rem; }
.ind-cta p { font-size: 0.92rem; color: #a3aac3; }
.ind-cta .text-link { color: #4cc7e6; margin-top: 4px; }

@media (hover: hover) {
  .ind-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(20, 28, 60, 0.18); }
  .ind-card:hover .ind-media img { transform: scale(1.07); }
  .ind-card:hover .ind-body::before { width: 56px; }
}

/* tablet: 3 columns; a 9th tile fills the last slot */
@media (max-width: 1023px) {
  .ind-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ind-cta { display: flex; }
}
/* phone: 2 columns of near-square cards; the 9th tile spans the row */
@media (max-width: 640px) {
  .ind-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .ind-media { aspect-ratio: 1 / 1; }
  .ind-body { padding: 14px; min-height: 68px; }
  .ind-body::before { left: 14px; }
  .ind-body h3 { font-size: 0.95rem; }
  .ind-cta { grid-column: 1 / -1; padding: 20px; }
}
@media (max-width: 340px) {
  .ind-grid { grid-template-columns: minmax(0, 1fr); }
  .ind-media { aspect-ratio: 16 / 10; }
}

/* ---------- 11. about blocks ---------- */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
@media (max-width: 760px) { .vm-grid { grid-template-columns: minmax(0, 1fr); } }
.vm-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow);
}
.vm-card .icon-wrap { width: 52px; height: 52px; margin-bottom: 20px; }
.vm-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.vm-card p { color: var(--fg-muted); }

.quote-block { max-width: 860px; margin: 0; }
.quote-block blockquote { margin: 0; }
.quote-block .quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 0.8;
  height: 44px;
  color: var(--magenta);
}
.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.95rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--fg-strong);
  text-wrap: pretty;
}
.quote-block cite {
  display: block;
  margin-top: 22px;
  color: var(--fg-muted);
  font-style: normal;
  font-size: 0.95rem;
}

.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}
@media (max-width: 960px) { .icon-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .icon-card-grid { grid-template-columns: minmax(0, 1fr); } }
.icon-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) {
  .icon-card:hover { transform: translateY(-3px); border-color: var(--grad-a); box-shadow: var(--shadow); }
}
.icon-card .icon-wrap { margin-bottom: 18px; }
.icon-card h4 { font-size: 1.08rem; margin-bottom: 8px; }
.icon-card p { color: var(--fg-muted); font-size: 0.97rem; }

.presence {
  margin-top: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
}
@media (max-width: 800px) { .presence { grid-template-columns: minmax(0, 1fr); } }
.presence > div { padding: clamp(24px, 3.2vw, 40px); }
.presence > div + div { border-left: 1px solid var(--border); }
@media (max-width: 800px) {
  .presence > div + div { border-left: none; border-top: 1px solid var(--border); }
}
.presence h3 { font-size: 1.25rem; margin-bottom: 12px; }
.presence p { color: var(--fg-muted); }

/* ---------- 12. contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }

.contact-info-card,
.contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 36px);
}
.contact-info-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.contact-info-card dl { margin: 0; display: flex; flex-direction: column; }
.contact-info-card dl > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-card dl > div:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-card .icon-wrap { width: 44px; height: 44px; }
.contact-info-card .icon-wrap svg { width: 22px; height: 22px; }
.contact-info-card dt { font-size: 0.8rem; color: var(--fg-subtle); font-family: var(--font-display); }
.contact-info-card dd { margin: 2px 0 0; font-size: 1.02rem; color: var(--fg-strong); overflow-wrap: anywhere; }
.contact-info-card dd a:hover { color: var(--link); }

.map-note {
  margin-top: 20px;
  border: 1px dashed #c5cce0;
  border-radius: var(--radius);
  padding: 20px;
  color: var(--fg-subtle);
  font-size: 0.88rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: minmax(0, 1fr); } }
label {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  min-height: 48px;
  background: #fff;
  border: 1px solid #ccd3e4;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #0f111a;
  font-family: var(--font-body);
  font-size: 1rem;          /* 16px+ stops iOS zooming into the field */
}
input::placeholder, textarea::placeholder { color: #7d85a1; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #0c93b6;
  box-shadow: 0 0 0 3px rgba(12, 147, 182, 0.18);
}
textarea { resize: vertical; min-height: 130px; }
.form-actions { margin-top: 22px; }
.form-note { margin-top: 14px; font-size: 0.86rem; color: var(--fg-subtle); }
.form-status { margin-top: 12px; font-size: 0.95rem; min-height: 1.4em; }
.form-status.ok { color: #0a7e5a; }
.form-status.err { color: #c2135c; }

/* ---------- 13. CTA card ---------- */
.cta-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px 40px;
  flex-wrap: wrap;
  padding: clamp(30px, 6vw, 72px);
  border-radius: 22px;
  background: var(--ink);
  color: #d3d7e6;
}
.cta-card .cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-card .cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 11, 17, 0.96) 0%, rgba(10, 11, 17, 0.82) 45%, rgba(10, 11, 17, 0.5) 100%);
}
.cta-card h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  letter-spacing: -0.02em;
  max-width: 22ch;
  text-wrap: balance;
}
.cta-card .btn-ghost { --ghost-border: rgba(255, 255, 255, 0.4); --ghost-hover: #fff; color: #fff; }
@media (max-width: 720px) {
  .cta-card { border-radius: 18px; }
  .cta-card::before { background: linear-gradient(0deg, rgba(10, 11, 17, 0.96), rgba(10, 11, 17, 0.7)); }
}

/* ---------- 14. footer + WhatsApp ---------- */
footer.site {
  background: var(--ink);
  border-top: 1px solid var(--navy-line);
  padding: clamp(44px, 6vw, 72px) 0 calc(28px + env(safe-area-inset-bottom, 0px));
  color: #a3aac3;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 800px) {
  .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) { .foot-grid { grid-template-columns: minmax(0, 1fr); } }
.foot-grid h5 { font-size: 0.95rem; color: #fff; margin-bottom: 16px; }
.foot-grid ul { display: flex; flex-direction: column; gap: 2px; }
.foot-grid ul a { display: inline-block; padding: 5px 0; color: #a3aac3; font-size: 0.95rem; overflow-wrap: anywhere; }
.foot-grid ul a:hover { color: #4cc7e6; }
.foot-tagline { color: #8a92ae; font-size: 0.95rem; margin-top: 16px; max-width: 34ch; }
.foot-bottom {
  margin-top: clamp(32px, 5vw, 52px);
  padding-top: 22px;
  border-top: 1px solid var(--navy-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: #8a92ae;
  font-size: 0.85rem;
}

.whatsapp-fab {
  position: fixed;
  right: max(18px, env(safe-area-inset-right, 0px));
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  z-index: 60;
  transition: transform 0.15s ease;
}
.whatsapp-fab:hover { transform: scale(1.06); }
.whatsapp-fab svg { width: 28px; height: 28px; }
