:root {
  --ink: #17222e;
  --muted: #617080;
  --green: #63ca3d;
  --green-2: #37ad48;
  --lime: #dff55f;
  --yellow: #ffc928;
  --orange: #ff7a1a;
  --blue: #143e8f;
  --cyan: #1dbfd3;
  --paper: #ffffff;
  --mist: #f3f7f1;
  --warm: #fff9eb;
  --line: rgba(23, 34, 46, .12);
  --shadow: 0 24px 70px rgba(28, 60, 42, .12);
  --radius: 30px;
  --max: 1320px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--lime); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--blue);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.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;
}

.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { position: relative; padding: 104px 0; }
.section-sm { position: relative; padding: 70px 0; }
.section-mist { background: var(--mist); }
.section-warm { background: var(--warm); }
.section-grid {
  background-color: #fff;
  background-image: linear-gradient(rgba(23,34,46,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(23,34,46,.035) 1px, transparent 1px);
  background-size: 38px 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--green-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { width: 30px; height: 4px; border-radius: 20px; background: var(--yellow); content: ""; }
.eyebrow.light { color: #fff; }

h1, h2, h3, h4 { margin: 0; line-height: 1.06; letter-spacing: -.035em; }
h1 { font-size: clamp(3.25rem, 7vw, 7.4rem); font-weight: 900; }
h2 { font-size: clamp(2.3rem, 4.2vw, 4.7rem); font-weight: 900; }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 850; }
h4 { font-size: 1.08rem; font-weight: 850; }
p { margin: 0 0 1em; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.08rem, 1.6vw, 1.35rem); line-height: 1.7; }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 520px); gap: 50px; align-items: end; margin-bottom: 52px; }
.section-head.one { display: block; max-width: 860px; }
.section-head.center { display: block; max-width: 900px; margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .lead { margin: 22px auto 0; }
.accent { color: var(--green-2); }
.accent-orange { color: var(--orange); }
.marker { position: relative; z-index: 0; display: inline-block; }
.marker::after { position: absolute; z-index: -1; left: -2%; right: -2%; bottom: .05em; height: .22em; border-radius: 20px; background: var(--yellow); content: ""; transform: rotate(-1deg); }

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.1;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.btn-primary { color: #fff; background: var(--green-2); box-shadow: 0 14px 34px rgba(55,173,72,.26); }
.btn-primary:hover { background: #269a3b; box-shadow: 0 18px 40px rgba(55,173,72,.34); }
.btn-yellow { color: var(--ink); background: var(--yellow); box-shadow: 0 14px 34px rgba(255,201,40,.28); }
.btn-dark { color: #fff; background: var(--ink); }
.btn-ghost { border-color: rgba(23,34,46,.2); background: rgba(255,255,255,.78); }
.btn .arrow { font-size: 1.35em; transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.topbar { position: relative; z-index: 90; color: #fff; background: var(--blue); font-size: .78rem; font-weight: 750; }
.topbar-inner { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 24px; }
.topbar-list { display: flex; align-items: center; gap: 22px; }
.topbar a:hover { color: var(--lime); }
.live-dot { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(223,245,95,.15); }

.site-header { position: sticky; z-index: 80; top: 0; border-bottom: 1px solid rgba(23,34,46,.08); background: rgba(255,255,255,.94); backdrop-filter: blur(16px); }
.header-inner { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; width: 206px; min-width: 170px; align-items: center; }
.brand img { width: 100%; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .nav-product-link, .nav-drop-toggle { display: inline-flex; min-height: 44px; align-items: center; padding: 10px 12px; border: 0; border-radius: 12px; background: transparent; cursor: pointer; font-size: .88rem; font-weight: 800; white-space: nowrap; }
.nav > a:hover, .nav > a[aria-current="page"], .nav-product-link:hover, .nav-product-link[aria-current="page"], .nav-drop-toggle:hover { background: var(--mist); color: var(--green-2); }
.nav-drop { position: relative; }
.nav-drop-head { display: flex; align-items: center; }
.nav-product-link { padding-right: 5px; border-radius: 12px 4px 4px 12px; }
.nav-drop-toggle { min-width: 30px; padding-right: 8px; padding-left: 5px; border-radius: 4px 12px 12px 4px; }
.nav-drop-toggle span { transition: transform .2s ease; }
.nav-drop.open .nav-drop-toggle span { transform: rotate(180deg); }
.mega {
  position: absolute;
  top: calc(100% + 14px);
  right: -240px;
  width: min(820px, 80vw);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .22s ease;
}
.nav-drop:hover .mega, .nav-drop:focus-within .mega, .nav-drop.open .mega { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mega a { display: flex; align-items: center; gap: 10px; padding: 13px; border-radius: 14px; font-size: .84rem; font-weight: 800; }
.mega a:hover { background: var(--mist); color: var(--green-2); }
.mega-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; color: var(--blue); background: #eaf0ff; }
.header-cta { min-height: 46px; padding: 12px 16px; font-size: .84rem; }
.menu-toggle { display: none; width: 48px; height: 48px; place-items: center; border: 0; border-radius: 14px; background: var(--mist); cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--ink); content: ""; transition: .2s ease; }
.menu-toggle span { margin: 5px auto; }

.page-home .topbar { position: absolute; z-index: 92; top: 0; right: 0; left: 0; border-bottom: 1px solid rgba(255,255,255,.15); background: rgba(8,17,24,.22); }
.page-home .site-header { position: absolute; z-index: 90; top: 38px; right: 0; left: 0; border-top: 1px solid rgba(255,255,255,.14); border-bottom-color: rgba(255,255,255,.18); background: rgba(8,17,24,.16); backdrop-filter: blur(8px); }
.page-home .brand img { filter: brightness(0) invert(1); }
.page-home .nav > a, .page-home .nav-product-link, .page-home .nav-drop-toggle { color: #fff; }
.page-home .nav > a:hover, .page-home .nav > a[aria-current="page"], .page-home .nav-product-link:hover, .page-home .nav-product-link[aria-current="page"], .page-home .nav-drop-toggle:hover { color: var(--yellow); background: rgba(255,255,255,.1); }
.page-home .header-cta { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }

.hero { position: relative; height: 100svh; min-height: 780px; overflow: hidden; color: #fff; background: #101820; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity .8s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-slide::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,13,19,.78) 0%, rgba(6,13,19,.52) 52%, rgba(6,13,19,.35) 100%), linear-gradient(180deg, rgba(6,13,19,.22) 0%, rgba(6,13,19,.08) 54%, rgba(6,13,19,.72) 100%); content: ""; }
.hero-content { position: relative; z-index: 3; display: flex; height: 100%; min-height: 780px; align-items: center; padding: 155px 0 180px; }
.hero-copy { width: min(900px, 74vw); }
.hero .eyebrow { color: var(--yellow); letter-spacing: .18em; }
.hero .eyebrow::before { width: 48px; background: var(--yellow); }
.hero h1 { max-width: 1020px; margin-top: 22px; color: #fff; font-size: clamp(4rem, 7.8vw, 9rem); letter-spacing: -.055em; text-shadow: 0 8px 40px rgba(0,0,0,.22); }
.hero .lead { max-width: 700px; margin: 24px 0 32px; color: rgba(255,255,255,.8); font-size: 1.06rem; }
.btn-hero { min-height: 58px; padding: 16px 24px; border: 1px solid rgba(255,255,255,.62); border-radius: 0; color: #fff; background: rgba(5,13,18,.12); backdrop-filter: blur(6px); }
.btn-hero:hover { border-color: var(--yellow); color: var(--ink); background: var(--yellow); }
.btn-hero-accent { border-color: var(--yellow); color: var(--ink); background: var(--yellow); }
.hero-foot { position: absolute; z-index: 4; right: 0; bottom: 0; left: 0; }
.hero-foot-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.24); }
.hero-category { position: relative; display: grid; min-height: 126px; align-content: center; padding: 22px 28px; border-right: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.62); transition: .25s ease; }
.hero-category::before { position: absolute; top: -2px; left: 0; width: 0; height: 3px; background: var(--yellow); content: ""; transition: width .3s ease; }
.hero-category:hover, .hero-category.is-active { color: #fff; background: rgba(3,9,13,.18); }
.hero-category:hover::before, .hero-category.is-active::before { width: 100%; }
.hero-category > span { position: absolute; top: 38px; left: 24px; color: #fff; font-size: .72rem; font-weight: 950; }
.hero-category small, .hero-category b { margin-left: 34px; }
.hero-category small { font-size: .62rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hero-category b { margin-top: 7px; font-size: 1rem; }
.hero-dots { position: absolute; z-index: 5; right: 36px; bottom: 152px; display: flex; gap: 8px; }
.hero-dot { width: 12px; height: 12px; padding: 0; border: 2px solid #fff; border-radius: 50%; background: rgba(23,34,46,.3); cursor: pointer; box-shadow: 0 2px 10px rgba(0,0,0,.2); }
.hero-dot.is-active { width: 34px; border-radius: 20px; background: var(--yellow); }

.page-hero { position: relative; min-height: 500px; overflow: hidden; background: var(--mist); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.93) 45%, rgba(255,255,255,.2) 80%); content: ""; }
.page-hero-content { position: relative; z-index: 2; display: flex; min-height: 500px; max-width: 820px; flex-direction: column; justify-content: center; padding: 80px 0; }
.page-hero h1 { font-size: clamp(3.1rem, 6.6vw, 7rem); }
.page-hero .lead { margin-top: 24px; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin: 0 0 24px; padding: 0; color: var(--muted); list-style: none; font-size: .78rem; font-weight: 800; }
.breadcrumbs li + li::before { margin-right: 7px; content: "/"; opacity: .5; }

.color-band { height: 12px; background: linear-gradient(90deg, var(--green) 0 22%, var(--yellow) 22% 44%, var(--orange) 44% 64%, var(--cyan) 64% 82%, var(--blue) 82%); }
.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.ticker-track { display: flex; width: max-content; animation: ticker 32s linear infinite; }
.ticker-item { display: flex; align-items: center; gap: 14px; padding: 18px 30px; font-size: .8rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.ticker-item::before { width: 9px; height: 9px; border-radius: 3px; background: var(--green); content: ""; transform: rotate(45deg); }

.intro-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; }
.image-stack { position: relative; min-height: 620px; }
.image-main { position: absolute; inset: 0 14% 8% 0; overflow: hidden; border-radius: 36px; box-shadow: var(--shadow); }
.image-main img { width: 100%; height: 100%; object-fit: cover; }
.image-float { position: absolute; right: 0; bottom: 0; width: 42%; overflow: hidden; border: 10px solid #fff; border-radius: 28px; box-shadow: var(--shadow); }
.image-float img { aspect-ratio: 1/1.15; object-fit: cover; }
.year-badge { position: absolute; z-index: 2; top: 8%; right: 2%; display: grid; width: 136px; height: 136px; place-items: center; padding: 18px; border-radius: 50%; color: var(--ink); background: var(--yellow); text-align: center; box-shadow: 0 20px 40px rgba(255,201,40,.25); transform: rotate(7deg); }
.year-badge strong { display: block; font-size: 2.2rem; line-height: 1; }
.year-badge span { font-size: .72rem; font-weight: 900; line-height: 1.2; text-transform: uppercase; }
.feature-list { display: grid; gap: 16px; margin: 32px 0; }
.feature { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; }
.feature-icon { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 16px; color: var(--blue); background: #e9efff; font-size: 1.4rem; font-weight: 900; }
.feature p { margin: 6px 0 0; color: var(--muted); font-size: .93rem; }

.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.metric { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.metric:nth-child(2) { background: var(--yellow); }
.metric:nth-child(3) { color: #fff; background: var(--blue); }
.metric b { display: block; font-size: clamp(2rem, 4vw, 4rem); font-weight: 950; line-height: 1; }
.metric span { display: block; margin-top: 12px; font-size: .82rem; font-weight: 850; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card { position: relative; display: flex; min-height: 500px; overflow: hidden; border-radius: var(--radius); color: #fff; background: var(--ink); isolation: isolate; }
.product-card[hidden] { display: none !important; }
.product-card::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(23,34,46,.04) 28%, rgba(23,34,46,.9) 100%); content: ""; }
.product-card img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.product-card:hover img { transform: scale(1.06); }
.product-card-content { display: flex; width: 100%; flex-direction: column; align-self: end; padding: 28px; }
.product-no { width: fit-content; margin-bottom: auto; padding: 8px 11px; border-radius: 10px; color: var(--ink); background: var(--yellow); font-size: .73rem; font-weight: 950; }
.product-card h3 { margin-top: 15px; font-size: 1.7rem; }
.product-card p { margin: 10px 0 18px; opacity: .82; font-size: .9rem; }
.product-link { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.25); font-size: .82rem; font-weight: 900; }
.product-link i { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--ink); background: #fff; font-style: normal; transition: .25s ease; }
.product-card:hover .product-link i { background: var(--yellow); transform: rotate(-35deg); }
.product-filter { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.filter-button { padding: 11px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; font-size: .8rem; font-weight: 850; }
.filter-button.is-active, .filter-button:hover { border-color: var(--green); color: #fff; background: var(--green-2); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 330px; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; transition: .3s ease; }
.service-card::after { position: absolute; right: -70px; bottom: -70px; width: 150px; height: 150px; border-radius: 50%; background: var(--lime); content: ""; opacity: .65; transition: .35s ease; }
.service-card:nth-child(2)::after, .service-card:nth-child(5)::after { background: #b9edff; }
.service-card:nth-child(3)::after, .service-card:nth-child(6)::after { background: #ffe3bd; }
.service-card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-7px); }
.service-card:hover::after { transform: scale(1.35); }
.service-index { display: grid; width: 56px; height: 56px; place-items: center; margin-bottom: 50px; border-radius: 18px; color: #fff; background: var(--blue); font-weight: 950; }
.service-card h3 { position: relative; z-index: 1; }
.service-card p { position: relative; z-index: 1; margin-top: 15px; color: var(--muted); font-size: .94rem; }

.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; counter-reset: step; }
.process-step { position: relative; padding: 24px 26px; border-top: 3px solid var(--line); counter-increment: step; }
.process-step::before { position: absolute; top: -10px; left: 0; width: 18px; height: 18px; border: 4px solid #fff; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 1px var(--green); content: ""; }
.process-step::after { display: block; margin-bottom: 30px; color: var(--green-2); font-size: 1.9rem; font-weight: 950; content: "0" counter(step); }
.process-step p { margin-top: 10px; color: var(--muted); font-size: .86rem; }

.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.project-card { position: relative; grid-column: span 6; min-height: 450px; overflow: hidden; border-radius: 30px; color: #fff; background: var(--ink); isolation: isolate; }
.project-card:nth-child(3n) { grid-column: span 12; min-height: 520px; }
.project-card img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project-card::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(23,34,46,.04) 25%, rgba(23,34,46,.88) 100%); content: ""; }
.project-card:hover img { transform: scale(1.045); }
.project-card-content { position: absolute; right: 0; bottom: 0; left: 0; padding: 30px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.project-meta span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(23,34,46,.25); backdrop-filter: blur(6px); font-size: .68rem; font-weight: 850; }
.project-card p { max-width: 780px; margin: 12px 0 0; opacity: .78; font-size: .9rem; }

.reference-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.reference-logo { display: grid; min-height: 118px; place-items: center; padding: 20px; border: 1px solid var(--line); border-radius: 22px; background: #fff; filter: grayscale(1); transition: .25s ease; }
.reference-logo:hover { filter: grayscale(0); border-color: var(--green); transform: translateY(-4px); }
.reference-logo img { max-height: 62px; width: auto; }

.cta-panel { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: clamp(34px, 5vw, 72px); overflow: hidden; border-radius: 36px; color: #fff; background: var(--blue); }
.cta-panel::before { position: absolute; top: -100px; right: 18%; width: 240px; height: 240px; border: 50px solid rgba(255,201,40,.96); border-radius: 50%; content: ""; }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel p { max-width: 700px; margin: 18px 0 0; opacity: .78; }
.cta-panel .btn-yellow { white-space: nowrap; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split.reverse > :first-child { order: 2; }
.media-card { overflow: hidden; border-radius: 34px; box-shadow: var(--shadow); }
.media-card img { width: 100%; min-height: 520px; object-fit: cover; }
.content-stack > * + * { margin-top: 24px; }
.content-stack ul, .check-list { display: grid; gap: 11px; margin: 24px 0; padding: 0; list-style: none; }
.content-stack li, .check-list li { position: relative; padding-left: 30px; color: var(--muted); }
.content-stack li::before, .check-list li::before { position: absolute; top: .45em; left: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--green); box-shadow: inset 0 0 0 5px #fff; outline: 1px solid var(--green); content: ""; }
.note-box { padding: 22px; border-left: 5px solid var(--yellow); border-radius: 0 18px 18px 0; background: var(--warm); color: #596672; }

.product-showcase-section { background: #f8f9fb; }
.product-showcase { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .31fr); gap: 36px; align-items: start; }
.product-visual-column { min-width: 0; }
.gallery-main { position: relative; overflow: hidden; border-radius: 28px; background: var(--mist); }
.gallery-main img { width: 100%; aspect-ratio: 16/10.4; object-fit: cover; }
.product-gallery { box-shadow: 0 22px 55px rgba(23,34,46,.1); }
.gallery-arrow { position: absolute; z-index: 3; top: 50%; display: grid; width: 52px; height: 52px; place-items: center; padding: 0; border: 1px solid rgba(23,34,46,.08); border-radius: 50%; color: #7b8792; background: rgba(255,255,255,.94); box-shadow: 0 10px 24px rgba(23,34,46,.12); cursor: pointer; font-size: 1.2rem; transform: translateY(-50%); transition: .2s ease; }
.gallery-arrow:hover { color: var(--ink); background: var(--yellow); }
.gallery-prev { left: -1px; }
.gallery-next { right: -1px; }
.gallery-thumbs { position: absolute; z-index: 4; right: 18px; bottom: 18px; display: flex; gap: 7px; padding: 7px; border-radius: 999px; background: rgba(13,23,31,.5); backdrop-filter: blur(7px); }
.gallery-thumb { display: grid; width: 27px; height: 27px; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: #fff; background: transparent; cursor: pointer; font-size: .64rem; font-weight: 900; }
.gallery-thumb.is-active { border-color: var(--yellow); color: var(--ink); background: var(--yellow); }
.product-summary { max-width: 950px; padding: 36px 6px 0; }
.product-summary h1 { margin-top: 12px; font-size: clamp(2.7rem, 5vw, 5.7rem); }
.product-summary .lead { max-width: 900px; margin-top: 18px; color: var(--ink); }
.product-summary > p:not(.lead) { margin-top: 20px; color: var(--muted); }
.product-summary .actions { margin-top: 28px; }
.product-sidebar { position: sticky; top: 112px; max-height: calc(100svh - 140px); overflow: auto; padding: 28px 26px; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: 0 20px 48px rgba(23,34,46,.07); }
.product-sidebar-head { padding: 0 2px 18px; }
.product-sidebar-head span { color: var(--orange); font-size: .7rem; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.product-sidebar-head h2 { margin-top: 2px; color: var(--orange); font-size: 1.65rem; letter-spacing: -.03em; }
.product-sidebar nav { display: grid; }
.product-sidebar nav a { display: flex; min-height: 54px; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 8px; border-bottom: 1px solid #edf0f3; font-size: .81rem; font-weight: 760; transition: .2s ease; }
.product-sidebar nav a:last-child { border-bottom: 0; }
.product-sidebar nav a i { color: #c7ccd1; font-style: normal; transition: .2s ease; }
.product-sidebar nav a:hover, .product-sidebar nav a[aria-current="page"] { color: var(--green-2); }
.product-sidebar nav a[aria-current="page"] { font-weight: 950; }
.product-sidebar nav a:hover i, .product-sidebar nav a[aria-current="page"] i { color: var(--orange); transform: rotate(45deg); }
.detail-panel { position: sticky; top: 116px; padding: 38px; border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: var(--shadow); }
.detail-panel h1 { font-size: clamp(2.4rem, 4.5vw, 4.8rem); }
.detail-panel .lead { margin-top: 22px; font-size: 1.02rem; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 28px 0; }
.spec { padding: 16px; border-radius: 16px; background: var(--mist); }
.spec small { display: block; color: var(--muted); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.spec b { display: block; margin-top: 4px; font-size: .86rem; }
.long-copy { max-width: 900px; margin-inline: auto; }
.long-copy h2 { margin: 72px 0 24px; font-size: clamp(2rem, 4vw, 3.8rem); }
.long-copy h3 { margin: 44px 0 18px; }
.long-copy p, .long-copy li { color: #485767; font-size: 1.05rem; line-height: 1.86; }
.long-copy ul, .long-copy ol { display: grid; gap: 10px; padding-left: 24px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { display: flex; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; flex-direction: column; transition: .3s ease; }
.blog-card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-6px); }
.blog-card-image { overflow: hidden; }
.blog-card-image img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover img { transform: scale(1.05); }
.blog-card-content { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.blog-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 15px; color: var(--green-2); font-size: .72rem; font-weight: 850; }
.blog-card h3 { font-size: 1.5rem; }
.blog-card p { margin: 14px 0 20px; color: var(--muted); font-size: .9rem; }
.blog-card .text-link { margin-top: auto; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-size: .82rem; font-weight: 900; }
.text-link::after { content: "→"; transition: .2s ease; }
.text-link:hover::after { transform: translateX(5px); }

.article-wrap { display: grid; grid-template-columns: minmax(0, 860px) 280px; gap: 70px; align-items: start; }
.article { min-width: 0; }
.article-head { max-width: 1000px; margin: 0 auto 55px; }
.article-head h1 { font-size: clamp(3rem, 6vw, 6.5rem); }
.article-head .lead { margin-top: 25px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 28px; color: var(--muted); font-size: .8rem; font-weight: 800; }
.article-cover { overflow: hidden; border-radius: 34px; }
.article-cover img { width: 100%; aspect-ratio: 16/8.5; object-fit: cover; }
.article-body { max-width: 820px; }
.article-body h2 { margin: 64px 0 22px; font-size: clamp(2rem, 3.5vw, 3.35rem); }
.article-body h3 { margin: 40px 0 16px; }
.article-body p, .article-body li { color: #445465; font-size: 1.04rem; line-height: 1.9; }
.article-body ul, .article-body ol { display: grid; gap: 12px; padding-left: 24px; }
.article-body blockquote { margin: 36px 0; padding: 26px 30px; border-left: 6px solid var(--green); border-radius: 0 22px 22px 0; background: var(--mist); font-size: 1.12rem; font-weight: 750; }
.article-body .source-note { margin-top: 50px; padding: 22px; border-radius: 18px; background: var(--warm); font-size: .86rem; }
.article-body .source-note p { margin: 0; font-size: .86rem; line-height: 1.65; }
.article-toc { position: sticky; top: 120px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.article-toc strong { display: block; margin-bottom: 14px; }
.article-toc ol { display: grid; gap: 10px; margin: 0; padding-left: 18px; color: var(--muted); font-size: .78rem; }
.article-toc a:hover { color: var(--green-2); }
.article-faq { display: grid; gap: 10px; margin-top: 55px; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.faq-item summary { padding: 18px 22px; cursor: pointer; font-weight: 850; }
.faq-item div { padding: 0 22px 20px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-cards { display: grid; gap: 14px; margin-top: 34px; }
.contact-card { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.contact-card i { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 15px; color: var(--blue); background: #eaf0ff; font-style: normal; font-size: 1.25rem; }
.contact-card small { display: block; color: var(--muted); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.contact-card b, .contact-card a { display: block; margin-top: 4px; font-size: .96rem; font-weight: 850; }
.form-panel { padding: clamp(28px, 4vw, 50px); border-radius: 32px; background: var(--mist); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .76rem; font-weight: 850; }
.field input, .field select, .field textarea { width: 100%; min-height: 54px; padding: 13px 15px; border: 1px solid rgba(23,34,46,.14); border-radius: 14px; color: var(--ink); background: #fff; }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { margin-top: 14px; color: var(--muted); font-size: .72rem; }
.map-card { position: relative; min-height: 400px; overflow: hidden; border-radius: 32px; background: #dff0e2; }
.map-card::before { position: absolute; inset: 0; opacity: .38; background-image: linear-gradient(28deg, transparent 38%, rgba(20,62,143,.2) 40%, rgba(20,62,143,.2) 42%, transparent 44%), linear-gradient(125deg, transparent 46%, rgba(55,173,72,.2) 48%, rgba(55,173,72,.2) 50%, transparent 52%); background-size: 170px 130px, 210px 160px; content: ""; }
.map-pin { position: absolute; top: 50%; left: 50%; display: grid; width: 80px; height: 80px; place-items: center; border: 10px solid rgba(255,255,255,.7); border-radius: 50% 50% 50% 10%; color: #fff; background: var(--orange); box-shadow: var(--shadow); font-weight: 950; transform: translate(-50%,-50%) rotate(-45deg); }
.map-pin span { transform: rotate(45deg); }
.map-label { position: absolute; left: 50%; bottom: 28px; width: min(440px, calc(100% - 40px)); padding: 18px; border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); text-align: center; transform: translateX(-50%); }
.map-label b { display: block; }
.map-label span { color: var(--muted); font-size: .8rem; }

.sticky-actions { position: fixed; z-index: 75; top: 50%; right: 0; display: flex; overflow: hidden; border-radius: 18px 0 0 18px; box-shadow: 0 16px 40px rgba(23,34,46,.22); flex-direction: column; transform: translateY(-50%); }
.sticky-action { display: grid; width: 74px; min-height: 78px; place-items: center; align-content: center; padding: 8px 5px; color: #fff; text-align: center; transition: width .2s ease; }
.sticky-action:hover { width: 86px; }
.sticky-action svg { width: 22px; height: 22px; margin-bottom: 5px; fill: currentColor; }
.sticky-action span { font-size: .63rem; font-weight: 900; line-height: 1.15; }
.sticky-action.offer { background: var(--blue); }
.sticky-action.phone { background: var(--orange); }
.sticky-action.whatsapp { background: #139b3a; }
.language-switch { position: fixed; z-index: 76; right: 18px; bottom: 18px; display: flex; gap: 7px; padding: 7px; border: 1px solid rgba(23,34,46,.12); border-radius: 16px; background: rgba(255,255,255,.94); box-shadow: 0 12px 30px rgba(23,34,46,.16); backdrop-filter: blur(10px); }
.language-switch a { display: grid; width: 43px; height: 31px; place-items: center; overflow: hidden; border: 2px solid transparent; border-radius: 8px; opacity: .62; }
.language-switch a[aria-current="true"] { border-color: var(--green); opacity: 1; }
.language-switch svg { width: 100%; height: 100%; }

.site-footer { color: var(--ink); background: var(--mist); }
.footer-main { display: grid; grid-template-columns: 1.25fr .7fr .8fr 1.15fr; gap: 46px; padding: 80px 0 56px; }
.footer-brand img { width: 210px; }
.footer-brand p { max-width: 360px; margin-top: 22px; color: var(--muted); font-size: .88rem; }
.footer-title { margin-bottom: 20px; color: var(--green-2); font-size: .72rem; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #475667; font-size: .86rem; font-weight: 700; }
.footer-links a:hover { color: var(--green-2); }
.footer-contact { display: grid; gap: 12px; color: #475667; font-size: .86rem; }
.footer-contact b { color: var(--ink); }
.footer-bottom { display: flex; min-height: 68px; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.honeypot { position: absolute !important; left: -9999px !important; }
.only-mobile { display: none; }

@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes float { 50% { transform: translateY(20px) rotate(8deg); } }

@media (max-width: 1180px) {
  .nav > a, .nav-product-link, .nav-drop-toggle { padding-inline: 8px; font-size: .78rem; }
  .header-cta { display: none; }
  .product-showcase { grid-template-columns: minmax(0, 1fr) minmax(260px, .34fr); gap: 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .reference-strip { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .article-wrap { grid-template-columns: minmax(0, 1fr) 240px; gap: 40px; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 34px), var(--max)); }
  .section { padding: 78px 0; }
  .topbar-list:last-child { display: none; }
  .header-inner { min-height: 72px; }
  .brand { width: 176px; }
  .menu-toggle { display: grid; }
  .nav { position: fixed; top: 110px; right: 17px; left: 17px; display: none; max-height: calc(100svh - 135px); overflow-y: auto; padding: 18px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
  .nav.is-open { display: grid; }
  .nav > a, .nav-product-link { width: 100%; justify-content: space-between; padding: 13px; font-size: .92rem; }
  .nav-drop-head { width: 100%; }
  .nav-drop-toggle { width: 48px; justify-content: center; padding: 13px; font-size: .92rem; }
  .page-home .nav > a, .page-home .nav-product-link, .page-home .nav-drop-toggle { color: var(--ink); }
  .page-home .nav > a:hover, .page-home .nav > a[aria-current="page"], .page-home .nav-product-link:hover, .page-home .nav-product-link[aria-current="page"], .page-home .nav-drop-toggle:hover { color: var(--green-2); background: var(--mist); }
  .mega { position: static; display: none; width: 100%; margin-top: 4px; padding: 8px; border: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
  .nav-drop.open .mega { display: block; }
  .mega-grid { grid-template-columns: 1fr 1fr; }
  .hero, .hero-content { min-height: 750px; }
  .hero-copy { width: min(690px, 86vw); }
  .hero-slide::after { background: linear-gradient(90deg, rgba(6,13,19,.82) 0%, rgba(6,13,19,.58) 68%, rgba(6,13,19,.4) 100%), linear-gradient(180deg, rgba(6,13,19,.18), rgba(6,13,19,.66)); }
  .hero-foot-grid { display: flex; overflow-x: auto; }
  .hero-category { min-width: 240px; min-height: 112px; }
  .hero-dots { bottom: 136px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .intro-grid, .split, .contact-grid, .product-detail-grid, .product-showcase { grid-template-columns: 1fr; gap: 48px; }
  .product-sidebar { position: static; max-height: none; }
  .image-stack { min-height: 530px; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .project-card, .project-card:nth-child(3n) { grid-column: span 12; min-height: 430px; }
  .detail-panel { position: static; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-toc { position: static; order: -1; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { padding-bottom: 66px; }
  .container { width: min(calc(100% - 24px), var(--max)); }
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  h1 { font-size: clamp(2.85rem, 15vw, 4.5rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.5rem); }
  .topbar-inner { justify-content: center; }
  .topbar-list:first-child span:not(.live-dot) { display: none; }
  .brand { width: 162px; min-width: 0; }
  .nav { top: 105px; }
  .mega-grid { grid-template-columns: 1fr; }
  .hero, .hero-content { min-height: 760px; }
  .hero-content { align-items: flex-start; padding: 175px 0 160px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 5.5rem); }
  .hero .lead { font-size: 1rem; }
  .hero-slide img { object-position: 62% center; }
  .hero-slide::after { background: linear-gradient(180deg, rgba(6,13,19,.72) 0%, rgba(6,13,19,.55) 58%, rgba(6,13,19,.82) 100%); }
  .hero-dots { right: 18px; bottom: 130px; }
  .hero-category { min-width: 210px; padding: 18px; }
  .hero-category > span { left: 18px; }
  .page-hero, .page-hero-content { min-height: 480px; }
  .page-hero img { object-position: 65% center; }
  .page-hero::after { background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 70%, rgba(255,255,255,.42) 100%); }
  .image-stack { min-height: 430px; }
  .image-main { right: 8%; }
  .image-float { width: 48%; border-width: 6px; }
  .year-badge { width: 105px; height: 105px; }
  .year-badge strong { font-size: 1.6rem; }
  .product-grid, .service-grid, .blog-grid, .metric-grid, .reference-strip, .form-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 440px; }
  .process { grid-template-columns: 1fr; }
  .process-step { padding-left: 40px; border-top: 0; border-left: 3px solid var(--line); }
  .process-step::before { top: 28px; left: -10px; }
  .process-step::after { margin-bottom: 8px; }
  .project-card, .project-card:nth-child(3n) { min-height: 390px; }
  .project-card-content { padding: 22px; }
  .product-detail-grid { gap: 28px; }
  .product-showcase { gap: 30px; }
  .gallery-main { border-radius: 20px; }
  .gallery-main img { aspect-ratio: 4/3; }
  .gallery-arrow { width: 44px; height: 44px; }
  .gallery-thumbs { right: 12px; bottom: 12px; }
  .product-summary { padding-top: 28px; }
  .product-sidebar { padding: 24px 20px; border-radius: 22px; }
  .detail-panel { padding: 26px; }
  .spec-grid { grid-template-columns: 1fr; }
  .article-head h1 { font-size: clamp(2.7rem, 13vw, 4.5rem); }
  .article-body p, .article-body li { font-size: 1rem; }
  .article-body h2 { margin-top: 50px; }
  .contact-grid { gap: 36px; }
  .form-panel { padding: 24px 18px; }
  .field.full { grid-column: auto; }
  .sticky-actions { top: auto; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-radius: 0; transform: none; }
  .sticky-action { width: 100%; min-height: 64px; display: flex; gap: 8px; }
  .sticky-action:hover { width: 100%; }
  .sticky-action svg { margin: 0; }
  .sticky-action span { font-size: .7rem; }
  .language-switch { right: 10px; bottom: 76px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; padding-top: 60px; }
  .footer-bottom { align-items: flex-start; padding: 22px 0; flex-direction: column; }
  .only-mobile { display: initial; }
}

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

@media print {
  .topbar, .site-header, .sticky-actions, .language-switch, .ticker, .site-footer, .cta-panel { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding: 32px 0; }
  a { text-decoration: underline; }
}
