@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --navy-950: #031126;
  --navy-900: #061b3a;
  --navy-800: #0a2854;
  --navy-700: #123b73;
  --blue-600: #1359d8;
  --blue-500: #2f6bff;
  --blue-300: #8cb3ff;
  --blue-100: #dce9ff;
  --blue-050: #eef5ff;
  --ink: #102038;
  --muted: #5d6b7f;
  --line: #dbe3ed;
  --surface: #ffffff;
  --surface-alt: #f4f7fb;
  --warm: #f4efe8;
  --tan: #a95a26;
  --success: #07886f;
  --shadow-sm: 0 8px 24px rgba(7, 28, 61, 0.08);
  --shadow-lg: 0 26px 70px rgba(4, 23, 51, 0.16);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--navy-900);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 { font-size: clamp(3rem, 6.7vw, 6.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
h3 { font-size: 1.22rem; }
p { margin: 0; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(76px, 9vw, 128px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 10px 16px; color: #fff; background: var(--navy-950); border-radius: 8px; }
.skip-link:focus { top: 16px; }

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light { color: #a8c6ff; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: #fff;
  background: var(--blue-600);
  border: 1px solid var(--blue-600);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(19, 89, 216, .24); background: #0e4fc6; }
.button svg, .text-link svg, .card-link svg { width: 19px; margin-left: 10px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-small { min-height: 44px; padding-inline: 18px; font-size: .92rem; }
.button-light { color: var(--navy-900); background: #fff; border-color: #fff; }
.button-light:hover { background: var(--blue-050); box-shadow: 0 10px 28px rgba(0, 0, 0, .18); }
.button-ghost-light { color: #fff; background: transparent; border-color: rgba(255,255,255,.35); }
.button-ghost-light:hover { background: rgba(255,255,255,.1); box-shadow: none; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.text-link, .card-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue-600);
  font-weight: 700;
}

.text-link:hover, .card-link:hover { color: var(--navy-900); }
.text-link.large { font-size: 1.05rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(215, 226, 240, .75);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
}

.header-inner { display: flex; align-items: center; min-height: 78px; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; gap: 10px; }
.brand-mark { width: 46px; height: 46px; }
.brand-a { fill: var(--blue-600); }
.brand-b { fill: var(--navy-950); }
.brand-flask { fill: none; stroke: var(--blue-600); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.brand strong { display: block; color: var(--navy-950); font: 800 1rem/1 "Manrope", sans-serif; letter-spacing: .035em; }
.brand small { display: block; margin-top: 5px; color: var(--blue-600); font: 800 .55rem/1 "Manrope", sans-serif; letter-spacing: .26em; }
.site-nav { display: flex; align-items: center; gap: 27px; margin-left: auto; }
.site-nav a { position: relative; padding-block: 27px; color: #263b57; font-size: .92rem; font-weight: 600; }
.site-nav a::after { position: absolute; left: 0; bottom: 20px; width: 0; height: 2px; content: ""; background: var(--blue-500); transition: width .2s ease; }
.site-nav a:hover::after { width: 100%; }
.header-cta { margin-left: 4px; }
.nav-toggle { display: none; border: 0; background: transparent; }

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 36%, rgba(47, 107, 255, .38), transparent 32%),
    radial-gradient(circle at 10% 10%, rgba(22, 99, 220, .25), transparent 32%),
    linear-gradient(132deg, #031126 4%, #072653 54%, #073b95 100%);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .24;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; min-height: 710px; gap: 40px; padding-block: 72px 95px; }
.hero-copy { max-width: 680px; }
.hero-copy h1 { color: #fff; font-size: clamp(4rem, 7.2vw, 7.4rem); letter-spacing: -.07em; }
.hero-copy h1 em { color: #86b7ff; font-style: normal; }
.hero-copy > p { max-width: 650px; margin-top: 28px; color: #d7e5fb; font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.65; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 30px; color: #bbcee9; font-size: .87rem; }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 18px; fill: none; stroke: #6ee7cb; stroke-width: 2; }
.hero-edge { position: absolute; right: -4%; bottom: -70px; left: -4%; height: 120px; background: #fff; border-radius: 50% 50% 0 0 / 80% 80% 0 0; }

.hero-art { position: relative; width: min(600px, 100%); aspect-ratio: 1; margin-left: auto; }
.hero-art > svg { position: relative; z-index: 2; width: 100%; filter: saturate(.95); }
.hero-orbit { position: absolute; z-index: 1; border: 1px solid rgba(165, 200, 255, .25); border-radius: 50%; }
.orbit-one { inset: 4%; }
.orbit-two { inset: 18%; }
.art-label { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 13px; background: rgba(3, 17, 38, .68); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); }
.art-label strong { color: #fff; font: 800 1.5rem/1 "Manrope", sans-serif; }
.art-label span { max-width: 90px; color: #c4d8f4; font-size: .72rem; line-height: 1.25; }
.label-one { right: 3%; bottom: 20%; }
.label-two { left: 7%; top: 26%; }

.intro-section { padding-top: 88px; }
.split-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 10%; margin-bottom: 50px; }
.split-heading h2 { max-width: 700px; }
.split-heading > p { max-width: 540px; color: var(--muted); font-size: 1.08rem; }
.section-heading { margin-bottom: 45px; }
.section-heading h2 { max-width: 800px; }
.section-heading > p { max-width: 650px; margin-top: 18px; color: var(--muted); font-size: 1.08rem; }
.section-heading.centered { text-align: center; }
.section-heading.centered h2, .section-heading.centered p { margin-inline: auto; }
.row-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }

.category-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 16px; }
.category-card { position: relative; overflow: hidden; grid-column: span 2; min-height: 360px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s ease, box-shadow .25s ease, border .25s ease; }
.category-card::after { position: absolute; right: -45px; bottom: -45px; width: 130px; height: 130px; content: ""; border: 30px solid color-mix(in srgb, var(--accent) 10%, transparent); border-radius: 50%; }
.category-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--accent) 45%, white); box-shadow: var(--shadow-lg); }
.category-icon { display: grid; width: 55px; height: 55px; margin-bottom: 42px; color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, white); border-radius: 15px; place-items: center; }
.category-icon svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.category-card .eyebrow { margin-bottom: 11px; color: var(--accent); font-size: .64rem; }
.category-card h3 { font-size: 1.28rem; }
.category-card p { margin-top: 13px; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.category-card .text-link { position: absolute; right: 28px; bottom: 27px; left: 28px; color: var(--accent); font-size: .84rem; }

.finder-promo { background: var(--surface-alt); }
.finder-promo-grid { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 8%; }
.finder-promo-grid > div:last-child p { margin: 24px 0 30px; color: var(--muted); font-size: 1.05rem; }
.finder-visual { position: relative; overflow: hidden; min-height: 480px; padding: 50px; border-radius: var(--radius-lg); color: #fff; background: radial-gradient(circle at 78% 16%, #2f6bff, transparent 32%), linear-gradient(145deg, #061b3a, #0b3774); box-shadow: var(--shadow-lg); }
.finder-visual::before { position: absolute; inset: 0; content: ""; opacity: .17; background-image: radial-gradient(circle, #fff 1.5px, transparent 1.5px); background-size: 25px 25px; }
.process-line { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 13px; color: #cfe0f8; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }
.process-line i { width: 1px; height: 22px; margin-left: 7px; background: #669dff; }
.finder-result { position: absolute; z-index: 2; right: 38px; bottom: 38px; left: 42%; padding: 22px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: rgba(255,255,255,.1); backdrop-filter: blur(12px); }
.result-label { display: block; color: #91b9f4; font-size: .66rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.finder-result strong { display: block; margin: 8px 0 17px; font: 700 1.05rem/1.35 "Manrope", sans-serif; }
.result-bars { display: grid; gap: 8px; }
.result-bars::before { content: "Process fit"; color: #8ba8cb; font-size: .68rem; }
.result-bars i { display: block; width: var(--w); height: 5px; background: linear-gradient(90deg, #7ddfd0, #64a1ff); border-radius: 99px; }

.solutions-section { background: #fff; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution-card { position: relative; min-height: 290px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, #fff 58%, #f3f7fc); transition: .25s ease; }
.solution-card::before { position: absolute; top: 0; left: 32px; width: 48px; height: 4px; content: ""; background: var(--blue-500); }
.solution-card:hover { transform: translateY(-5px); border-color: #aac5ee; box-shadow: var(--shadow-sm); }
.solution-card h3 { font-size: 1.42rem; }
.solution-card p { margin: 17px 0 34px; color: var(--muted); }
.solution-card .text-link { position: absolute; bottom: 28px; font-size: .88rem; }
.solution-grid.large .solution-card { min-height: 330px; }

.technical-section { color: #fff; background: var(--navy-950); }
.technical-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10%; align-items: center; }
.technical-section h2, .process-consult h2 { color: #fff; }
.technical-section p, .process-consult p { margin: 25px 0; color: #b8c9df; font-size: 1.04rem; }
.technical-section .text-link { color: #8ab5ff; }
.support-steps { display: grid; margin: 0; padding: 0; list-style: none; }
.support-steps li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.support-steps li:first-child { border-top: 1px solid rgba(255,255,255,.13); }
.support-steps li > span { color: #6fa5ff; font: 700 .8rem/1 "Manrope", sans-serif; letter-spacing: .1em; }
.support-steps strong { color: #fff; font: 700 1.05rem/1.2 "Manrope", sans-serif; }
.support-steps p { margin: 7px 0 0; color: #9eb1ca; font-size: .92rem; }
.intro-support .support-steps li { border-color: var(--line); }
.intro-support .support-steps strong { color: var(--navy-900); }
.intro-support .support-steps p { color: var(--muted); }

.featured-section { background: var(--surface-alt); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-grid-three { grid-template-columns: repeat(3, 1fr); }
.product-card { position: relative; display: flex; flex-direction: column; min-height: 420px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.product-card:hover { transform: translateY(-5px); border-color: #b8cae1; box-shadow: var(--shadow-sm); }
.product-card[hidden] { display: none; }
.product-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 36px; }
.product-category { position: relative; color: var(--accent); font-size: .67rem; font-weight: 800; letter-spacing: .08em; line-height: 1.3; text-transform: uppercase; }
.product-category::before { display: inline-block; width: 7px; height: 7px; margin-right: 7px; content: ""; background: var(--accent); border-radius: 50%; }
.product-category.light { color: #a7c7ff; }
.product-form { padding: 5px 9px; color: #607087; background: var(--surface-alt); border-radius: 7px; font-size: .72rem; font-weight: 700; }
.product-card h3 { font-size: 1.35rem; letter-spacing: -.02em; }
.product-card h3 a::after { position: absolute; inset: 0; content: ""; }
.product-subtitle { margin: 7px 0 18px; color: var(--blue-600) !important; font-weight: 700; }
.product-card > p { color: var(--muted); font-size: .91rem; line-height: 1.58; }
.chip-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.chip-row span { padding: 5px 9px; color: #52657e; background: #eff4fa; border-radius: 999px; font-size: .7rem; font-weight: 700; }
.card-link { margin-top: auto; padding-top: 24px; font-size: .86rem; }

.cta-band { color: #fff; background: linear-gradient(120deg, #08295a, #0d52ba); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 55px; }
.cta-inner > div:first-child { max-width: 720px; }
.cta-inner h2 { color: #fff; }
.cta-inner p { max-width: 670px; margin-top: 18px; color: #c8daf3; font-size: 1.04rem; }
.cta-actions { display: flex; flex-shrink: 0; flex-direction: column; gap: 10px; min-width: 245px; }

.site-footer { padding-top: 76px; color: #aebdd0; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .7fr 1.2fr; gap: 50px; padding-bottom: 60px; }
.footer-brand .brand strong, .footer-brand .brand small { color: #fff; }
.footer-brand .brand-a { fill: #5f97ff; }
.footer-brand .brand-b { fill: #fff; }
.footer-brand p { max-width: 340px; margin-top: 23px; }
.tagline { display: flex; align-items: center; gap: 10px; margin-top: 25px; color: #7593b9; font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.tagline i { width: 4px; height: 4px; background: #4f84e9; border-radius: 50%; }
.site-footer h2 { margin: 8px 0 20px; color: #fff; font-size: .9rem; letter-spacing: .02em; }
.site-footer > .footer-grid > div:not(:first-child) > a { display: block; margin: 10px 0; color: #aebdd0; font-size: .9rem; }
.site-footer a:hover { color: #fff; }
.footer-contact p { margin-top: 18px; color: #788ba4; font-size: .84rem; }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #72849b; font-size: .78rem; }

.whatsapp-float { position: fixed; z-index: 50; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 9px; padding: 8px 14px 8px 8px; color: #fff; background: #067a66; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; box-shadow: 0 14px 34px rgba(3, 21, 40, .25); font-size: .78rem; }
.whatsapp-float span { display: grid; width: 30px; height: 30px; background: #fff; color: #067a66; border-radius: 50%; font-size: .65rem; font-weight: 900; place-items: center; }

.page-hero, .product-hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 80% 30%, rgba(46, 113, 255, .35), transparent 28%), linear-gradient(130deg, #031126, #082d65 70%, #0e4fae); }
.page-hero::after, .product-hero::after { position: absolute; right: -120px; bottom: -200px; width: 500px; height: 500px; content: ""; border: 70px solid rgba(255,255,255,.05); border-radius: 50%; }
.compact-hero > .shell:not(.breadcrumbs) { position: relative; z-index: 1; max-width: 980px; margin-left: max(20px, calc((100% - min(1180px, calc(100% - 40px))) / 2)); padding-block: 100px 115px; }
.compact-hero h1 { max-width: 950px; color: #fff; font-size: clamp(3.1rem, 6vw, 6rem); }
.compact-hero p { max-width: 700px; margin-top: 24px; color: #c8dbf4; font-size: 1.16rem; }
.breadcrumbs { position: relative; z-index: 2; display: flex; align-items: center; gap: 7px; padding-top: 25px; color: #b9cbe3; font-size: .76rem; }
.breadcrumbs a:hover { color: #fff; }
.crumb-separator svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.catalogue-section { background: var(--surface-alt); }
.catalogue-toolbar { margin-bottom: 38px; }
.search-field { position: relative; display: block; max-width: 760px; margin-bottom: 25px; }
.search-field svg { position: absolute; top: 50%; left: 21px; width: 23px; transform: translateY(-50%); fill: none; stroke: #63738a; stroke-width: 1.7; }
.search-field input { width: 100%; min-height: 62px; padding: 0 22px 0 58px; color: var(--ink); background: #fff; border: 1px solid #cbd7e5; border-radius: 14px; outline: none; }
.search-field input:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(47,107,255,.11); }
.filter-row { display: flex; flex-wrap: wrap; gap: 9px; }
.filter-button { padding: 9px 13px; color: #45566d; background: #fff; border: 1px solid #cfd9e5; border-radius: 999px; cursor: pointer; font-size: .82rem; font-weight: 700; }
.filter-button span { margin-left: 5px; color: #8190a4; font-size: .7rem; }
.filter-button:hover, .filter-button.active { color: #fff; background: var(--navy-900); border-color: var(--navy-900); }
.filter-button.active span { color: #bcd1eb; }
.result-count { margin-top: 20px; color: var(--muted); font-size: .83rem; }
.empty-state { padding: 65px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.empty-state p { margin: 10px 0 22px; color: var(--muted); }

.category-hero { --accent: var(--blue-500); }
.category-hero::before { position: absolute; top: -220px; right: -120px; width: 600px; height: 600px; content: ""; border: 100px solid color-mix(in srgb, var(--accent) 38%, transparent); border-radius: 50%; }
.category-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 280px; align-items: center; gap: 90px; padding-block: 80px 115px; }
.category-hero h1 { color: #fff; font-size: clamp(3.4rem, 7vw, 6.4rem); }
.category-hero p { max-width: 690px; margin: 25px 0 30px; color: #c8dbf4; font-size: 1.16rem; }
.category-hero-mark { display: grid; width: 230px; height: 230px; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; place-content: center; text-align: center; backdrop-filter: blur(12px); }
.category-hero-mark svg { width: 44px; margin: 0 auto 15px; fill: none; stroke: #a8c7ff; stroke-width: 1.5; }
.category-hero-mark strong { font: 800 3.3rem/1 "Manrope", sans-serif; }
.category-hero-mark span { color: #b9cee8; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; }

.product-hero { --accent: var(--blue-500); }
.product-hero::before { position: absolute; inset: 0; content: ""; opacity: .08; background-image: linear-gradient(30deg, transparent 24%, #fff 25%, #fff 26%, transparent 27%, transparent 74%, #fff 75%, #fff 76%, transparent 77%), linear-gradient(150deg, transparent 24%, #fff 25%, #fff 26%, transparent 27%, transparent 74%, #fff 75%, #fff 76%, transparent 77%); background-size: 80px 140px; }
.product-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .65fr; align-items: center; gap: 10%; min-height: 620px; padding-block: 65px 100px; }
.product-hero h1 { margin-top: 15px; color: #fff; font-size: clamp(3.8rem, 7.8vw, 7.4rem); }
.product-hero-subtitle { margin-top: 7px; color: #83b3ff; font: 700 clamp(1.2rem, 2.2vw, 1.65rem)/1.3 "Manrope", sans-serif; }
.product-lead { max-width: 760px; margin-top: 24px; color: #d4e2f5; font-size: 1.08rem; }
.product-visual { position: relative; display: flex; flex-direction: column; justify-content: end; min-height: 385px; padding: 34px; color: #fff; background: linear-gradient(155deg, rgba(255,255,255,.18), rgba(255,255,255,.05)); border: 1px solid rgba(255,255,255,.22); border-radius: 28px; box-shadow: 0 30px 80px rgba(0,0,0,.24); backdrop-filter: blur(12px); }
.product-visual::before { position: absolute; top: 28px; right: 28px; width: 105px; height: 105px; content: ""; border: 20px solid color-mix(in srgb, var(--accent) 55%, transparent); border-radius: 50%; }
.product-visual-icon { position: absolute; top: 32px; left: 32px; display: grid; width: 62px; height: 62px; color: #fff; background: var(--accent); border-radius: 17px; place-items: center; }
.product-visual-icon svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.product-visual small { color: #a8c3e6; font-size: .74rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.product-visual strong { margin-top: 8px; font: 800 2.25rem/1.1 "Manrope", sans-serif; letter-spacing: -.04em; }
.product-visual em { margin-top: 8px; color: #bbd1ed; font-style: normal; }

.product-detail-section { background: var(--surface-alt); }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: start; gap: 70px; }
.detail-main > p { max-width: 760px; margin-top: 24px; color: var(--muted); font-size: 1.1rem; }
.detail-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 45px; }
.detail-panel { min-height: 260px; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.detail-panel h3 { margin-bottom: 20px; }
.check-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; color: var(--muted); }
.check-list li { display: flex; align-items: flex-start; gap: 10px; }
.check-list svg { flex: 0 0 19px; width: 19px; margin-top: 4px; fill: none; stroke: var(--success); stroke-width: 2; }
.process-fit { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 18px; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.process-fit .eyebrow { margin-bottom: 7px; }
.large-chips { justify-content: flex-end; margin-top: 0; }
.large-chips span { padding: 8px 12px; color: var(--navy-800); background: var(--blue-050); }
.technical-notice { display: grid; grid-template-columns: 52px 1fr; gap: 22px; margin-top: 18px; padding: 28px; border: 1px solid #bad0ef; border-radius: var(--radius); background: #eef5ff; }
.technical-notice > span { display: grid; width: 52px; height: 52px; color: var(--blue-600); background: #fff; border-radius: 14px; place-items: center; }
.technical-notice > span svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.technical-notice p { margin: 10px 0 15px; color: #536985; }
.detail-aside { position: sticky; top: 105px; display: grid; gap: 18px; }
.enquiry-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.enquiry-card h2 { font-size: 1.65rem; }
.enquiry-card p { margin: 17px 0 24px; color: var(--muted); }
.enquiry-card .button { width: 100%; }
.contact-inline { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; color: var(--navy-700); font-size: .88rem; font-weight: 700; }
.contact-inline svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.quick-facts { padding: 27px; color: #fff; background: var(--navy-900); border-radius: var(--radius); }
.quick-facts h3 { margin-bottom: 15px; color: #fff; }
.quick-facts dl { margin: 0; }
.quick-facts dl > div { display: flex; justify-content: space-between; gap: 15px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.12); }
.quick-facts dt { color: #97aac3; }
.quick-facts dd { margin: 0; text-align: right; font-weight: 700; }
.related-section { background: #fff; }

.solution-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 400px; align-items: center; gap: 90px; padding-block: 80px 110px; }
.solution-hero h1 { max-width: 830px; color: #fff; font-size: clamp(3.4rem, 6.6vw, 6.5rem); }
.solution-hero p { max-width: 710px; margin: 25px 0 30px; color: #cbdcf1; font-size: 1.13rem; }
.needs-panel { padding: 30px; border: 1px solid rgba(255,255,255,.2); border-radius: 22px; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.needs-panel > span { display: block; margin-bottom: 17px; color: #8eb9ff; font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.needs-panel > div { display: flex; gap: 11px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.12); }
.needs-panel svg { flex: 0 0 19px; width: 19px; fill: none; stroke: #73e1cb; stroke-width: 2; }
.process-consult { color: #fff; background: linear-gradient(125deg, #151d2b, #09254d); }

.support-options, .values-section { background: var(--surface-alt); }
.card-grid-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card-grid-three article { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.card-grid-three .number { display: block; margin-bottom: 42px; color: var(--blue-600); font: 800 .76rem/1 "Manrope", sans-serif; letter-spacing: .13em; }
.card-grid-three p { margin-top: 15px; color: var(--muted); }
.quality-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.quality-grid article { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); }
.quality-grid article > span { display: grid; width: 52px; height: 52px; margin-bottom: 35px; color: var(--blue-600); background: var(--blue-050); border-radius: 14px; place-items: center; }
.quality-grid svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.quality-grid p { margin-top: 13px; color: var(--muted); }
.document-callout { padding-block: 65px; background: var(--surface-alt); }
.document-callout > .shell { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.document-callout p { margin-top: 12px; color: var(--muted); }
.about-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 300px; align-items: center; gap: 100px; padding-block: 120px; }
.about-hero h1 { color: #fff; font-size: clamp(3.4rem, 6.4vw, 6.2rem); }
.about-hero p { max-width: 710px; margin-top: 25px; color: #cadcf2; font-size: 1.14rem; }
.about-stat { display: flex; flex-direction: column; padding: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: 25px; background: rgba(255,255,255,.08); }
.about-stat strong { color: #fff; font: 800 5rem/1 "Manrope", sans-serif; }
.about-stat span { margin-top: 12px; color: #a9c0de; }
.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 12%; }
.story-copy { display: grid; gap: 22px; color: var(--muted); font-size: 1.08rem; }

.contact-hero > .shell { position: relative; z-index: 1; max-width: 1000px; margin-left: max(20px, calc((100% - min(1180px, calc(100% - 40px))) / 2)); padding-block: 100px 110px; }
.contact-hero h1 { color: #fff; font-size: clamp(3.3rem, 6.4vw, 6.3rem); }
.contact-hero p { max-width: 720px; margin-top: 22px; color: #c6d9f1; font-size: 1.14rem; }
.contact-section { background: var(--surface-alt); }
.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 8%; }
.contact-copy > p { margin-top: 20px; color: var(--muted); }
.direct-contact { display: grid; gap: 10px; margin-top: 35px; }
.direct-contact a { display: flex; align-items: center; gap: 14px; padding: 15px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.direct-contact svg { flex: 0 0 22px; width: 22px; fill: none; stroke: var(--blue-600); stroke-width: 1.7; }
.direct-contact span { min-width: 0; overflow-wrap: anywhere; font-weight: 700; }
.direct-contact small { display: block; color: var(--muted); font-weight: 400; }
.address-card { margin-top: 18px; padding: 24px; color: #fff; background: var(--navy-900); border-radius: var(--radius); }
.address-card p { margin-top: 10px; color: #b7c9df; }
.address-card small { display: block; margin-top: 18px; color: #8095b1; }
.enquiry-form { padding: clamp(25px, 4vw, 48px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.enquiry-form label { display: grid; gap: 8px; margin-bottom: 18px; color: #263a55; font-size: .84rem; font-weight: 700; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #fbfcfe; border: 1px solid #cbd7e4; border-radius: 10px; outline: 0; resize: vertical; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(47,107,255,.1); }
.enquiry-form .consent { grid-template-columns: 18px 1fr; align-items: start; color: var(--muted); font-weight: 400; }
.consent input { width: 17px; margin-top: 4px; }
.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 12px; }
.form-actions > span { max-width: 290px; color: var(--muted); font-size: .72rem; }
.form-result { margin-top: 25px; padding: 25px; background: var(--blue-050); border: 1px solid #b9d1f5; border-radius: 14px; }
.form-result h3 { margin-bottom: 9px; }
.form-result p { color: var(--muted); }
.form-result .button-row { margin-top: 19px; }

.prose { max-width: 820px; }
.prose h2 { margin-top: 42px; font-size: 1.7rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-top: 14px; color: var(--muted); }
.prose a { color: var(--blue-600); text-decoration: underline; }
.legal-note { padding: 20px; background: var(--surface-alt); border-left: 4px solid var(--blue-500); }
.not-found { min-height: 650px; padding-block: 140px; color: #fff; background: radial-gradient(circle at 80% 30%, rgba(47,107,255,.35), transparent 30%), var(--navy-950); }
.not-found h1 { max-width: 900px; color: #fff; }
.not-found p { margin-top: 25px; color: #bdd0e7; font-size: 1.1rem; }

@media (max-width: 1080px) {
  .site-nav { gap: 17px; }
  .site-nav a { font-size: .84rem; }
  .header-cta { display: none; }
  .category-grid { grid-template-columns: repeat(6, 1fr); }
  .category-card { grid-column: span 2; }
  .category-card:nth-child(4), .category-card:nth-child(5) { grid-column: span 3; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid-featured { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr .83fr; }
  .hero-copy h1 { font-size: clamp(4rem, 8vw, 6rem); }
  .detail-layout { gap: 35px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); }
  .section { padding-block: 75px; }
  .nav-toggle { display: grid; width: 44px; height: 44px; margin-left: auto; padding: 11px; place-content: center; gap: 4px; }
  .nav-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; background: var(--navy-900); transition: .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { position: fixed; top: 78px; right: 0; bottom: 0; left: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 30px 20px; background: #fff; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 17px 5px; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .site-nav a::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 90px; }
  .home-hero { min-height: auto; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-copy .button-row, .hero-trust { justify-content: center; }
  .hero-art { width: min(500px, 100%); margin: 0 auto; }
  .split-heading, .finder-promo-grid, .technical-grid, .detail-layout, .solution-hero-grid, .about-hero-grid, .story-grid, .contact-layout { grid-template-columns: 1fr; }
  .split-heading { gap: 25px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card, .category-card:nth-child(4), .category-card:nth-child(5) { grid-column: auto; }
  .category-card:last-child { grid-column: span 2; }
  .solution-grid, .product-grid, .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid-three { grid-template-columns: repeat(2, 1fr); }
  .technical-grid { gap: 45px; }
  .row-heading { align-items: start; flex-direction: column; }
  .cta-inner { align-items: start; flex-direction: column; }
  .cta-actions { width: 100%; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
  .category-hero-grid { grid-template-columns: 1fr 180px; gap: 35px; }
  .category-hero-mark { width: 170px; height: 170px; }
  .product-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .product-visual { max-width: 440px; width: 100%; }
  .detail-aside { position: static; }
  .solution-hero-grid { gap: 35px; }
  .needs-panel { max-width: 520px; }
  .card-grid-three { grid-template-columns: 1fr; }
  .about-hero-grid { gap: 45px; }
  .about-stat { max-width: 320px; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.25rem; }
  .brand-mark { width: 40px; height: 40px; }
  .brand strong { font-size: .86rem; }
  .header-inner { min-height: 70px; }
  .site-nav { top: 70px; }
  .home-hero::before { display: none; }
  .hero-grid { padding-block: 70px 100px; }
  .hero-copy h1 { font-size: clamp(3.4rem, 17vw, 5rem); }
  .hero-copy > p { font-size: 1rem; }
  .hero-copy .button-row { flex-direction: column; }
  .hero-copy .button { width: 100%; }
  .hero-trust { align-items: center; flex-direction: column; gap: 8px; }
  .hero-art { margin-top: -15px; }
  .art-label { display: none; }
  .category-grid, .solution-grid, .product-grid, .product-grid-featured, .product-grid-three, .quality-grid { grid-template-columns: 1fr; }
  .category-card, .category-card:last-child { grid-column: auto; }
  .category-card { min-height: 330px; }
  .finder-visual { min-height: 420px; padding: 32px; }
  .finder-result { right: 22px; bottom: 22px; left: 35%; }
  .cta-inner h2 { font-size: 2.35rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .whatsapp-float strong { display: none; }
  .whatsapp-float { padding-right: 8px; }
  .compact-hero > .shell:not(.breadcrumbs), .contact-hero > .shell { margin-left: 14px; padding-block: 78px 90px; }
  .compact-hero h1, .contact-hero h1 { font-size: 3rem; }
  .filter-row { flex-wrap: nowrap; margin-right: -14px; padding-right: 14px; overflow-x: auto; }
  .filter-button { flex: 0 0 auto; }
  .category-hero-grid { grid-template-columns: 1fr; padding-block: 55px 80px; }
  .category-hero-mark { width: 150px; height: 150px; }
  .category-hero h1, .solution-hero h1 { font-size: 3.2rem; }
  .product-hero-grid { padding-block: 50px 75px; }
  .product-hero h1 { font-size: 3.3rem; overflow-wrap: anywhere; }
  .product-visual { min-height: 310px; }
  .detail-columns, .form-row { grid-template-columns: 1fr; }
  .process-fit, .document-callout > .shell { align-items: start; flex-direction: column; }
  .large-chips { justify-content: start; }
  .technical-notice { grid-template-columns: 1fr; }
  .solution-hero-grid { padding-block: 55px 80px; }
  .form-actions { align-items: start; flex-direction: column; }
}

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