﻿:root {
  --bg:#050608;
  --bg2:#0b1118;
  --card:#101923;
  --line:rgba(255, 255, 255, .10);
  --text:#f3f6f8;
  --muted:#a9b3bd;
  --cyan:#07b8c8;
  --blue:#0b5ea8;
  --deep:#09264c;
  --grad:linear-gradient(135deg, #08c7c9 0%, #067db6 50%, #082253 100%);
  --shadow:0 24px 80px rgba(0, 0, 0, .45);
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  font-family:Barlow, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}
.skip-link {
  position:fixed;
  left:16px;
  top:12px;
  z-index:2000;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  color:#061018;
  font-weight:700;
  transform:translateY(-140%);
  transition:transform .2s ease;
}
.skip-link:focus {
  transform:translateY(0);
}
a {
  color:inherit;
  text-decoration:none
}
.container {
  width:min(1160px, 92%);
  margin:auto
}
.site-header {
  min-height:100vh;
  background:radial-gradient(circle at 75% 20%, rgba(8, 184, 200, .18), transparent 30%), linear-gradient(180deg, #030405 0%, #081018 100%);
  overflow:hidden
}
.navbar {
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 5%;
  background:rgba(3, 4, 5, .72);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line)
}
.brand img {
  width:132px;
  height:auto;
  display:block
}
.nav-links {
  display:flex;
  align-items:center;
  gap:26px;
  color:#d7dde3;
  font-weight:600
}
.nav-links a {
  transition:.25s
}
.nav-links a:hover {
  color:var(--cyan)
}
.nav-cta {
  padding:11px 18px;
  border:1px solid rgba(8, 184, 200, .5);
  border-radius:999px;
  background:rgba(8, 184, 200, .08)
}
.menu-toggle {
  display:none;
  background:none;
  border:0;
  cursor:pointer
}
.menu-toggle span {
  display:block;
  width:28px;
  height:2px;
  background:#fff;
  margin:6px 0
}
.hero {
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:54px;
  align-items:center;
  min-height:100vh;
  padding-top:120px
}
.eyebrow {
  display:inline-flex;
  text-transform:uppercase;
  letter-spacing:.24em;
  color:var(--cyan);
  font-size:.78rem;
  font-weight:800;
  margin-bottom:16px
}
.hero h1, .section-title h2, .about-content h2, .locator h2, .contact h2 {
  font-size:clamp(2.3rem, 5vw, 5.2rem);
  line-height:.95;
  margin:0 0 22px;
  font-weight:800;
  letter-spacing:-.04em
}
.hero p, .section-title p, .about-content p, .locator p, .contact p {
  font-size:1.13rem;
  line-height:1.7;
  color:var(--muted);
  max-width:680px
}
.hero-actions {
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:34px
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 24px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
  transition:.25s;
  cursor:pointer;
}
.btn-primary {
  background:var(--grad);
  box-shadow:0 12px 35px rgba(8, 184, 200, .25)
}
.btn-primary:hover {
  transform:translateY(-2px);
  filter:brightness(1.08)
}
.btn-outline {
  border-color:rgba(255, 255, 255, .18);
  background:rgba(255, 255, 255, .04)
}
.btn-outline:hover {
  border-color:var(--cyan);
  color:var(--cyan)
}
.hero-card {
  position:relative;
  padding:38px;
  border-radius:34px;
  background:linear-gradient(160deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .03));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden
}
.hero-card:before {
  content:"";
  position:absolute;
  inset:-80px;
  background:radial-gradient(circle, rgba(8, 184, 200, .26), transparent 48%);
  z-index:0
}
.hero-card>* {
  position:relative;
  z-index:1
}
.paint-orb {
  width:170px;
  height:170px;
  border-radius:42% 58% 50% 50%;
  background:var(--grad);
  filter:drop-shadow(0 28px 40px rgba(8, 184, 200, .24));
  margin-bottom:34px
}
.hero-card h2 {
  font-size:3rem;
  letter-spacing:.02em;
  margin:0 0 10px
}
.hero-card ul {
  padding:0;
  margin:24px 0 0;
  list-style:none;
  color:#dbe8ef
}
.hero-card li {
  padding:12px 0;
  border-top:1px solid var(--line)
}
.section {
  padding:110px 0
}
.section-title {
  text-align:center;
  margin-bottom:48px
}
.section-title p {
  margin-left:auto;
  margin-right:auto
}
.cards-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px
}
.product-card, .feature-item, .contact-form, .locator-box {
  background:linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
  box-shadow:0 18px 55px rgba(0, 0, 0, .22)
}
.card-icon {
  display:inline-flex;
  width:46px;
  height:46px;
  border-radius:16px;
  background:var(--grad);
  align-items:center;
  justify-content:center;
  font-weight:800;
  margin-bottom:22px
}
.product-card h3, .feature-item h3 {
  font-size:1.35rem;
  margin:0 0 10px
}
.product-card p, .feature-item p {
  color:var(--muted);
  line-height:1.6
}
.about {
  background:linear-gradient(180deg, #071019, #050608)
}
.about-grid {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:56px;
  align-items:center
}
.about-visual {
  border-radius:38px;
  background:#020304;
  border:1px solid var(--line);
  padding:45px;
  box-shadow:var(--shadow)
}
.about-visual img {
  width:100%;
  display:block
}
.stats {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:34px
}
.stats div {
  padding:20px;
  border-radius:20px;
  background:rgba(255, 255, 255, .05);
  border:1px solid var(--line)
}
.stats strong {
  display:block;
  color:#fff;
  font-size:1.35rem
}
.stats span {
  color:var(--muted);
  font-size:.95rem
}
.feature-list {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px
}
.locator-box {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  background:linear-gradient(135deg, rgba(8, 184, 200, .16), rgba(11, 94, 168, .14)), #07111a
}
.contact {
  background:#071018
}
.contact-grid {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:46px
}
.contact-cards {
  display:grid;
  gap:12px;
  margin-top:28px
}
.contact-cards a, .contact-cards span {
  display:block;
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255, 255, 255, .04);
  color:#e9f3f6
}
.contact-form {
  display:grid;
  gap:18px
}
.contact-form label {
  display:grid;
  gap:8px;
  color:#d9e3e7;
  font-weight:700
}
.contact-form input, .contact-form textarea {
  width:100%;
  padding:16px 18px;
  border-radius:16px;
  border:1px solid rgba(255, 255, 255, .13);
  background:#071018;
  color:#fff;
  font:inherit;
  outline:none
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color:var(--cyan);
  box-shadow:0 0 0 4px rgba(8, 184, 200, .1)
}
.footer {
  border-top:1px solid var(--line);
  background:#030405;
  padding:32px 0
}
.footer-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:var(--muted)
}
.footer img {
  width:120px
}
.reveal {
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease, transform .7s ease
}
.reveal.visible {
  opacity:1;
  transform:none
}
@media(max-width:960px) {
  .nav-links {
    position:fixed;
    top:77px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:28px 5%;
    background:#050608;
    border-bottom:1px solid var(--line)
  }
  .nav-links.active {
    display:flex
  }
  .menu-toggle {
    display:block
  }
  .hero, .about-grid, .contact-grid {
    grid-template-columns:1fr
  }
  .cards-grid, .feature-list {
    grid-template-columns:repeat(2, 1fr)
  }
  .locator-box {
    align-items:flex-start;
    flex-direction:column
  }
  .hero {
    padding-top:150px
  }
  .hero-card {
    max-width:560px
  }
  .about-visual {
    max-width:430px
  }
}
@media(max-width:620px) {
  .brand img {
    width:112px
  }
  .cards-grid, .feature-list, .stats {
    grid-template-columns:1fr
  }
  .section {
    padding:78px 0
  }
  .hero h1, .section-title h2, .about-content h2, .locator h2, .contact h2 {
    font-size:2.35rem
  }
  .footer-inner {
    flex-direction:column;
    text-align:center
  }
  .hero-actions .btn {
    width:100%
  }
}
.navbar {
  min-height:112px;
  padding:12px clamp(20px, 5vw, 72px);
  gap:32px;
  background:linear-gradient(90deg, rgba(3, 4, 5, .9), rgba(4, 12, 15, .84));
  box-shadow:0 18px 55px rgba(0, 0, 0, .26);
}
.brand {
  display:flex;
  align-items:center;
  width:138px;
  min-width:138px;
  position:relative;
}
.brand img {
  width:136px;
  max-width:100%;
  height:auto;
  filter:drop-shadow(0 10px 24px rgba(0, 0, 0, .34));
}
.brand-full {
  max-height:88px;
  object-fit:contain;
}
.brand-symbol {
  position:absolute;
  left:0;
  width:42px !important;
  opacity:0;
  transform:scale(.86);
  pointer-events:none;
}
.nav-links {
  gap:3px;
  padding:5px;
  border:1px solid rgba(255, 255, 255, .08);
  border-radius:999px;
  background:rgba(255, 255, 255, .035);
  box-shadow:inset 0 1px 0 rgba(255, 255, 255, .05);
}
.nav-links a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 11px;
  border-radius:999px;
  color:#dfe7ec;
  font-size:.9rem;
  line-height:1;
  white-space:nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color:#fff;
  background:rgba(8, 184, 200, .14);
}
.nav-cta {
  min-height:40px;
  margin-left:4px;
  padding:0 16px !important;
  border-color:rgba(8, 184, 200, .68);
  background:linear-gradient(135deg, rgba(8, 184, 200, .2), rgba(11, 94, 168, .16));
}
.menu-toggle {
  width:46px;
  height:46px;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255, 255, 255, .12);
  border-radius:14px;
  background:rgba(255, 255, 255, .045);
}
.menu-toggle span {
  width:22px;
  margin:4px 0;
  border-radius:999px;
}
@media(max-width:960px) {
  .navbar {
    min-height:92px
  }
  .brand {
    width:144px;
    min-width:144px
  }
  .brand img {
    width:140px
  }
  .brand-full {
    max-height:82px
  }
  .nav-links {
    top:88px;
    gap:8px;
    padding:16px 5% 22px;
    border-right:0;
    border-left:0;
    border-radius:0 0 22px 22px;
    background:rgba(5, 6, 8, .96);
  }
  .nav-links a {
    width:100%;
    justify-content:flex-start;
    min-height:48px;
    padding:0 18px;
  }
  .menu-toggle {
    display:inline-flex
  }
}
@media(max-width:620px) {
  .navbar {
    min-height:78px;
    padding:10px 5%
  }
  .brand {
    width:126px;
    min-width:126px
  }
  .brand img {
    width:122px
  }
  .brand-full {
    max-height:68px
  }
  .nav-links {
    top:78px
  }
}
.navbar {
  justify-content:center;
  padding-right:0;
  padding-left:0;
  transition:min-height .28s ease, padding .28s ease, background .28s ease, box-shadow .28s ease;
}
.nav-inner {
  width:min(1160px, 92%);
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand, .brand img, .nav-links, .nav-links a, .menu-toggle {
  transition:width .28s ease, min-width .28s ease, min-height .28s ease, padding .28s ease, background .28s ease, box-shadow .28s ease, transform .28s ease;
}
.navbar.scrolled {
  min-height:52px;
  padding-top:5px;
  padding-bottom:5px;
  background:linear-gradient(90deg, rgba(3, 4, 5, .96), rgba(4, 12, 15, .92));
  box-shadow:0 12px 38px rgba(0, 0, 0, .34);
}
.navbar.scrolled .brand {
  width:46px;
  min-width:46px;
}
.navbar.scrolled .brand-full {
  opacity:0;
  transform:scale(.82);
}
.navbar.scrolled .brand-symbol {
  width:38px !important;
  opacity:1;
  transform:scale(1);
}
.navbar.scrolled .nav-links {
  padding:4px;
}
.navbar.scrolled .nav-links a {
  min-height:32px;
  padding-right:12px;
  padding-left:12px;
  font-size:.92rem;
}
.navbar.scrolled .nav-cta {
  min-height:34px;
}
@media(max-width:960px) {
  .nav-inner {
    width:90%;
    gap:18px
  }
  .navbar.scrolled {
    min-height:58px
  }
  .navbar.scrolled .brand {
    width:42px;
    min-width:42px
  }
  .navbar.scrolled .brand-symbol {
    width:34px !important
  }
  .navbar.scrolled .menu-toggle {
    width:40px;
    height:40px
  }
  .navbar.scrolled .nav-links {
    top:58px
  }
}
@media(max-width:620px) {
  .nav-inner {
    width:90%
  }
  .navbar.scrolled {
    min-height:54px
  }
  .navbar.scrolled .brand {
    width:38px;
    min-width:38px
  }
  .navbar.scrolled .brand-symbol {
    width:31px !important
  }
  .navbar.scrolled .nav-links {
    top:54px
  }
}
.hero-card {
  display:grid;
  gap:24px;
  align-content:center;
  padding:36px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .028));
}
.hero-card:before {
  display:none;
}
.hero-card-kicker {
  color:var(--cyan);
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.hero-card h2 {
  max-width:480px;
  margin:0;
  font-size:clamp(1.95rem, 2.6vw, 2.8rem);
  line-height:1.04;
  letter-spacing:-.03em;
}
.hero-card p {
  max-width:500px;
  margin:0;
  color:#c4d3dc;
}
.hero-badges {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hero-badges span {
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border:1px solid rgba(8, 184, 200, .24);
  border-radius:999px;
  background:rgba(8, 184, 200, .07);
  color:#e9f8fb;
  font-weight:700;
  line-height:1;
}
.hero-mini-stats {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  padding-top:8px;
}
.hero-mini-stats div {
  min-height:116px;
  padding:18px;
  border:1px solid rgba(255, 255, 255, .1);
  border-radius:18px;
  background:rgba(255, 255, 255, .035);
}
.hero-mini-stats strong {
  display:block;
  margin-bottom:12px;
  color:var(--cyan);
  font-size:1.45rem;
}
.hero-mini-stats span {
  color:var(--muted);
  line-height:1.4;
}
@media(max-width:960px) {
  .hero-mini-stats {
    grid-template-columns:repeat(3, 1fr)
  }
}
@media(max-width:620px) {
  .hero-card {
    padding:18px;
    border-radius:22px
  }
  .hero-badges span {
    min-height:36px
  }
  .hero-mini-stats {
    grid-template-columns:1fr
  }
  .hero-mini-stats div {
    min-height:auto
  }
}
.hero {
  gap:72px;
}
.eyebrow, .hero-card-kicker {
  letter-spacing:.28em;
  font-size:.72rem;
}
.hero h1 {
  max-width:660px;
  font-size:clamp(3.05rem, 5.5vw, 4.95rem);
  line-height:1.02;
  letter-spacing:-.035em;
  margin-bottom:26px;
}
.hero p {
  max-width:640px;
  font-size:1.08rem;
  line-height:1.85;
}
.hero-actions {
  margin-top:36px;
}
.hero-card {
  gap:28px;
  padding:38px 36px;
  box-shadow:0 18px 55px rgba(0, 0, 0, .24);
}
.hero-card h2 {
  max-width:440px;
  font-size:clamp(1.85rem, 2.35vw, 2.55rem);
  line-height:1.12;
  letter-spacing:-.025em;
}
.hero-card p {
  max-width:440px;
  font-size:1.02rem;
  line-height:1.85;
}
.hero-badges {
  gap:12px;
  max-width:430px;
}
.hero-badges span {
  min-height:34px;
  padding:0 13px;
  font-size:.9rem;
  font-weight:600;
  background:rgba(8, 184, 200, .055);
}
.hero-mini-stats {
  gap:14px;
  padding-top:2px;
}
.hero-mini-stats div {
  min-height:126px;
  padding:20px 18px;
  background:rgba(255, 255, 255, .028);
}
.hero-mini-stats strong {
  margin-bottom:14px;
  font-size:1.35rem;
}
.hero-mini-stats span {
  font-size:.98rem;
  line-height:1.55;
}
@media(max-width:960px) {
  .hero {
    gap:44px
  }
  .hero h1 {
    font-size:clamp(2.7rem, 8vw, 4.4rem)
  }
}
@media(max-width:620px) {
  .hero {
    gap:32px
  }
  .hero h1 {
    font-size:2.8rem
  }
  .hero-card {
    gap:22px;
    padding:24px
  }
  .hero-mini-stats div {
    min-height:auto
  }
}
.hero h1 {
  max-width:620px;
  font-size:clamp(2.75rem, 5vw, 4.55rem);
  line-height:1.08;
  letter-spacing:-.025em;
  font-weight:700;
}
.hero p {
  max-width:610px;
  font-size:1.02rem;
  line-height:1.95;
  color:#b9c8d2;
}
.hero-card {
  gap:30px;
  padding:42px 38px;
  background:linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .024));
}
.hero-card h2 {
  max-width:410px;
  font-size:clamp(1.7rem, 2.1vw, 2.28rem);
  line-height:1.18;
  letter-spacing:-.015em;
  font-weight:700;
}
.hero-card p {
  max-width:420px;
  font-size:.98rem;
  line-height:1.95;
  color:#b7c8d2;
}
.hero-badges {
  gap:10px;
}
.hero-badges span {
  min-height:32px;
  padding:0 12px;
  border-color:rgba(8, 184, 200, .18);
  background:rgba(8, 184, 200, .04);
  color:#d6e9ee;
  font-size:.86rem;
  font-weight:500;
}
.hero-mini-stats {
  gap:12px;
}
.hero-mini-stats div {
  min-height:118px;
  padding:18px 16px;
  background:rgba(255, 255, 255, .022);
}
.hero-mini-stats strong {
  font-size:1.22rem;
  font-weight:700;
}
.hero-mini-stats span {
  color:#aebdc7;
  font-size:.93rem;
}
@media(max-width:620px) {
  .hero h1 {
    font-size:2.48rem
  }
  .hero-card {
    padding:26px 22px
  }
}
body {
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
body.modal-open {
  overflow:hidden;
}
.side-nav {
  position:fixed;
  top:50%;
  right:22px;
  z-index:18;
  display:grid;
  gap:12px;
  transform:translateY(-50%);
}
.side-nav a {
  position:relative;
  display:flex;
  width:16px;
  height:16px;
  align-items:center;
  justify-content:center;
}
.side-nav a:before {
  content:"";
  width:7px;
  height:7px;
  border:1px solid rgba(255, 255, 255, .36);
  border-radius:50%;
  background:rgba(255, 255, 255, .12);
  box-shadow:0 0 0 0 rgba(8, 184, 200, 0);
  transition:width .22s ease, height .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.side-nav a:hover:before, .side-nav a.active:before {
  width:11px;
  height:11px;
  border-color:rgba(8, 184, 200, .86);
  background:rgba(8, 184, 200, .82);
  box-shadow:0 0 0 5px rgba(8, 184, 200, .12);
}
.side-nav span {
  position:absolute;
  right:24px;
  top:50%;
  min-width:max-content;
  padding:7px 10px;
  border:1px solid rgba(255, 255, 255, .1);
  border-radius:999px;
  background:rgba(3, 7, 10, .78);
  color:#e9f3f6;
  font-size:.78rem;
  font-weight:600;
  line-height:1;
  opacity:0;
  pointer-events:none;
  transform:translate(8px, -50%);
  transition:opacity .2s ease, transform .2s ease;
  backdrop-filter:blur(10px);
}
.side-nav a:hover span, .side-nav a:focus-visible span {
  opacity:1;
  transform:translate(0, -50%);
}
@media(max-width:1100px) {
  .side-nav {
    display:none;
  }
}
.eyebrow, .hero-card-kicker, .nav-links, .btn, .contact-form label {
  font-weight:600;
}
.hero h1, .section-title h2, .about-content h2, .locator h2, .contact h2 {
  font-weight:700;
  letter-spacing:-.025em;
}
.section-title h2, .about-content h2, .locator h2, .contact h2 {
  font-size:clamp(2rem, 4vw, 4.15rem);
  line-height:1.08;
}
.hero-card h2, .product-card h3, .feature-item h3, .stats strong {
  font-weight:650;
}
.hero p, .section-title p, .about-content p, .locator p, .contact p, .product-card p, .feature-item p {
  color:#b5c4ce;
  font-weight:400;
}
.btn {
  position:relative;
  min-height:50px;
  padding:0 24px;
  border-radius:26px;
  font-size:.96rem;
  line-height:1;
  letter-spacing:0;
  box-shadow:none;
  overflow:hidden;
}
.btn-primary {
  border:1px solid rgba(8, 184, 200, .36);
  background:linear-gradient(135deg, #10becb 0%, #0678b4 100%);
  box-shadow:0 10px 24px rgba(8, 184, 200, .18);
}
.btn-primary:hover {
  transform:translateY(-1px);
  filter:none;
  box-shadow:0 14px 30px rgba(8, 184, 200, .22);
}
.btn-outline {
  border-color:rgba(255, 255, 255, .2);
  background:rgba(255, 255, 255, .025);
  color:#f3f7f9;
  box-shadow:inset 0 1px 0 rgba(255, 255, 255, .04);
}
.btn-outline:hover {
  border-color:rgba(8, 184, 200, .5);
  background:rgba(8, 184, 200, .055);
  color:#fff;
}
.hero-actions {
  gap:12px;
}
.nav-links a, .nav-cta, .hero-badges span, .contact-cards a, .contact-cards span {
  font-weight:500;
}
.card-icon {
  font-weight:650;
}
.product-card, .feature-item, .contact-form, .locator-box, .hero-card, .hero-mini-stats div, .stats div, .contact-cards a, .contact-cards span {
  border-color:rgba(255, 255, 255, .085);
}
@media(max-width:620px) {
  .btn {
    min-height:48px;
    padding:0 20px;
  }
}
.btn {
  font-weight:500;
  border-radius:999px;
}
.btn-primary {
  border-color:rgba(8, 184, 200, .32);
  background:linear-gradient(135deg, #087486 0%, #07507c 48%, #092b59 100%);
  color:#f7fbfc;
  box-shadow:0 12px 26px rgba(4, 37, 72, .34);
}
.btn-primary:before {
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  background:linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0));
  pointer-events:none;
}
.btn-primary:hover {
  background:linear-gradient(135deg, #0a8293 0%, #075985 48%, #0a3265 100%);
  box-shadow:0 14px 30px rgba(4, 37, 72, .42);
}
.btn-outline {
  border-color:rgba(255, 255, 255, .18);
  background:rgba(255, 255, 255, .018);
}
.btn:hover {
  transform:translateY(-1px);
}
h1, h2, h3, strong {
  text-wrap:balance;
}
.product-card h3, .feature-item h3, .locator-box h2, .contact-info h2, .about-content h2, .section-title h2 {
  font-weight:650;
}
.stats strong, .contact-cards a, .contact-cards span, .contact-form button, .locator-box .btn {
  font-weight:500;
}
.contact-card {
  display:grid;
  gap:8px;
  padding:18px;
  border:1px solid rgba(255, 255, 255, .085);
  border-radius:18px;
  background:rgba(255, 255, 255, .04);
}
.contact-card strong {
  color:#fff;
  font-size:1rem;
  font-weight:650;
}
.contact-card a {
  display:inline-flex;
  width:max-content;
  max-width:100%;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  color:#cfe0e7;
  line-height:1.45;
  overflow-wrap:anywhere;
  transition:color .2s ease;
}
.contact-card a:hover {
  color:var(--cyan);
}
.products {
  background:linear-gradient(180deg, #050608 0%, #071018 100%);
}
.consultant {
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg, #071018 0%, #050608 100%);
}
.consultant-layout {
  display:grid;
  grid-template-columns:minmax(0, .92fr) minmax(360px, 1.08fr);
  gap:28px;
  align-items:stretch;
}
.consultant-character, .consultant-form {
  border:1px solid rgba(255, 255, 255, .09);
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02)), #080d11;
  box-shadow:0 20px 54px rgba(0, 0, 0, .24);
}
.consultant-character {
  position:relative;
  min-height:620px;
  overflow:hidden;
}
.consultant-character img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.consultant-character:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(3, 4, 5, 0) 34%, rgba(3, 4, 5, .78) 100%);
  pointer-events:none;
}
.consultant-bubble {
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:1;
  padding:24px;
  border:1px solid rgba(255, 255, 255, .1);
  border-radius:20px;
  background:rgba(3, 7, 10, .78);
  backdrop-filter:blur(14px);
}
.consultant-bubble h2 {
  margin:0 0 10px;
  color:#fff;
  font-size:clamp(2rem, 4vw, 3.25rem);
  line-height:1;
}
.consultant-bubble p {
  margin:0;
  color:#c5d3dc;
  line-height:1.68;
}
.consultant-form {
  display:grid;
  gap:16px;
  padding:26px;
}
.consultant-ai-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  border:1px solid rgba(8, 184, 200, .18);
  border-radius:18px;
  background:rgba(8, 184, 200, .055);
}
.consultant-ai-head span {
  color:var(--cyan);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
}
.consultant-ai-head strong {
  color:#fff;
  font-size:.9rem;
}
.consultant-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
.consultant-step {
  display:grid;
  gap:8px;
}
.consultant-step[hidden] {
  display:none;
}
.consultant-step label {
  color:#e4eef2;
  font-weight:650;
}
.consultant-step select,
.consultant-step input {
  width:100%;
  min-height:52px;
  padding:0 16px;
  border:1px solid rgba(255, 255, 255, .12);
  border-radius:16px;
  background:#071018;
  color:#fff;
  font:inherit;
  outline:none;
}
.consultant-step select:focus,
.consultant-step input:focus {
  border-color:var(--cyan);
  box-shadow:0 0 0 4px rgba(8, 184, 200, .1);
}
.consultant-unit-input {
  position:relative;
}
.consultant-unit-input input {
  padding-right:54px;
}
.consultant-unit-input span {
  position:absolute;
  right:16px;
  top:50%;
  color:#8fa4ae;
  font-weight:650;
  transform:translateY(-50%);
}
.consultant-ai-panel {
  display:grid;
  grid-template-columns:110px 1fr;
  gap:18px;
  align-items:center;
  min-height:118px;
  padding:18px;
  border:1px solid rgba(255, 255, 255, .08);
  border-radius:20px;
  background:
    linear-gradient(90deg, rgba(8, 184, 200, .075), transparent 44%),
    rgba(255, 255, 255, .026);
}
.consultant-ai-signal {
  position:relative;
  height:62px;
  overflow:hidden;
  border:1px solid rgba(8, 184, 200, .16);
  border-radius:18px;
  background:
    radial-gradient(circle at 20% 50%, rgba(8, 184, 200, .18), transparent 42%),
    rgba(3, 7, 10, .42);
}
.consultant-ai-signal:before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
  transform:translateX(-100%);
  animation:consultantScan 3.4s ease-in-out infinite;
}
.consultant-ai-signal span {
  position:absolute;
  left:12px;
  right:12px;
  top:50%;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, transparent, rgba(118, 244, 255, .8), rgba(31, 125, 255, .48), transparent);
  opacity:.55;
  transform:translateY(calc(var(--y) * 1px)) scaleX(var(--scale));
  animation:consultantWave 2.8s ease-in-out infinite;
}
.consultant-ai-signal span:nth-child(1) {
  --y:-18;
  --scale:.72;
}
.consultant-ai-signal span:nth-child(2) {
  --y:-6;
  --scale:1;
  animation-delay:.18s;
}
.consultant-ai-signal span:nth-child(3) {
  --y:7;
  --scale:.9;
  animation-delay:.36s;
}
.consultant-ai-signal span:nth-child(4) {
  --y:19;
  --scale:.58;
  animation-delay:.54s;
}
.consultant-form.is-analyzing .consultant-ai-panel {
  border-color:rgba(8, 184, 200, .24);
  background:rgba(8, 184, 200, .07);
}
.consultant-form.is-analyzing .consultant-ai-signal span {
  animation-duration:1.1s;
}
.consultant-ai-panel strong {
  display:block;
  margin-bottom:4px;
  color:#fff;
}
.consultant-ai-panel p {
  margin:0;
  color:#b7c7cf;
  line-height:1.55;
}
@keyframes consultantWave {
  0%, 100% {
    opacity:.32;
    filter:blur(.2px);
  }
  50% {
    opacity:.92;
    filter:blur(0);
  }
}
@keyframes consultantScan {
  0%, 18% {
    transform:translateX(-100%);
  }
  52%, 100% {
    transform:translateX(100%);
  }
}
.consultant-result {
  display:grid;
  grid-template-columns:150px 1fr;
  gap:18px;
  margin-top:6px;
  padding:16px;
  border:1px solid rgba(8, 184, 200, .18);
  border-radius:20px;
  background:rgba(8, 184, 200, .055);
}
.consultant-result img {
  width:100%;
  height:160px;
  display:block;
  border-radius:14px;
  object-fit:cover;
}
.consultant-result > div {
  display:flex;
  min-width:0;
  flex-direction:column;
  justify-content:center;
}
.consultant-result > div > span {
  margin-bottom:8px;
  color:var(--cyan);
  font-size:.72rem;
  font-weight:650;
  letter-spacing:.2em;
  text-transform:uppercase;
}
.consultant-result h3 {
  margin:0 0 8px;
  color:#fff;
  font-size:1.35rem;
  line-height:1.2;
}
.consultant-result p {
  margin:0;
  color:#c5d3dc;
  line-height:1.58;
}
.consultant-result strong {
  display:block;
  margin-top:12px;
  color:#fff;
  font-size:1rem;
}
.consultant-result ul {
  display:grid;
  gap:6px;
  margin:12px 0 0;
  padding:0;
  list-style:none;
}
.consultant-result li {
  position:relative;
  padding-left:16px;
  color:#aec0c9;
  line-height:1.45;
}
.consultant-result li:before {
  content:"";
  position:absolute;
  left:0;
  top:.65em;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--cyan);
}
.consultant-result-actions {
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:flex-start;
  margin-top:14px;
}
.consultant-result-actions a,
.consultant-result-actions button {
  display:inline-flex;
  min-height:38px;
  align-items:center;
  justify-content:center;
  width:max-content;
  max-width:100%;
  padding:0 14px;
  border:1px solid rgba(8, 184, 200, .26);
  border-radius:999px;
  background:rgba(8, 184, 200, .07);
  color:#dffbff;
  font:650 .92rem/1 Barlow, Arial, sans-serif;
  cursor:pointer;
}
.consultant-result-actions button:disabled {
  cursor:not-allowed;
  opacity:.45;
}
.consultant-result-actions button.is-speaking {
  border-color:rgba(8, 184, 200, .7);
  background:rgba(8, 184, 200, .18);
}
.consultant-voice-wave {
  display:inline-flex;
  min-width: 100px;
  height:34px;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:0 8px;
  border:1px solid rgba(8, 184, 200, .14);
  border-radius:999px;
  background:rgba(8, 184, 200, .035);
  opacity:.55;
  transition:opacity .2s ease;
}
.consultant-voice-wave span {
  display:block;
  width:3px;
  height:8px;
  border-radius:999px;
  background:linear-gradient(180deg, #9ff8ff, #087db6);
  transform-origin:center;
}
.consultant-voice-wave.is-active {
  opacity:1;
}
.consultant-voice-wave.is-active span {
  animation:voiceWave .78s ease-in-out infinite;
}
.consultant-voice-wave span:nth-child(2) {
  height:14px;
}
.consultant-voice-wave span:nth-child(3) {
  height:22px;
}
.consultant-voice-wave span:nth-child(4) {
  height:15px;
}
.consultant-voice-wave.is-active span:nth-child(2) {
  animation-delay:.08s;
}
.consultant-voice-wave.is-active span:nth-child(3) {
  animation-delay:.16s;
}
.consultant-voice-wave.is-active span:nth-child(4) {
  animation-delay:.24s;
}
.consultant-voice-wave.is-active span:nth-child(5) {
  animation-delay:.32s;
}
@keyframes voiceWave {
  0%, 100% {
    transform:scaleY(.45);
    opacity:.48;
  }
  50% {
    transform:scaleY(1.25);
    opacity:1;
  }
}
@media(max-width:960px) {
  .consultant-layout {
    grid-template-columns:1fr;
  }
  .consultant-character {
    min-height:520px;
  }
}
@media(max-width:620px) {
  .consultant-character {
    min-height:440px;
    border-radius:20px;
  }
  .consultant-bubble {
    left:16px;
    right:16px;
    bottom:16px;
    padding:20px;
  }
  .consultant-form {
    padding:20px;
    border-radius:20px;
  }
  .consultant-result {
    grid-template-columns:1fr;
  }
  .consultant-grid {
    grid-template-columns:1fr;
  }
  .consultant-ai-panel {
    grid-template-columns:1fr;
    gap:14px;
    padding:16px;
  }
  .consultant-ai-signal {
    height:54px;
  }
  .consultant-ai-head {
    align-items:flex-start;
    flex-direction:column;
  }
  .consultant-result img {
    height:220px;
  }
}
.products .section-title {
  max-width:860px;
  margin-right:auto;
  margin-left:auto;
}
.products .section-title h2 {
  font-size:clamp(2.15rem, 4.2vw, 4.25rem);
}
.product-catalog {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}
.product-detail-card {
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
  overflow:hidden;
  border:1px solid rgba(255, 255, 255, .09);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02)), #080d11;
  box-shadow:0 20px 54px rgba(0, 0, 0, .22);
}
.product-detail-card figure {
  position:relative;
  height:190px;
  margin:0;
  overflow:hidden;
  background:#05080b;
}
.product-detail-card figure:after {
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:42%;
  background:linear-gradient(180deg, rgba(8, 13, 17, 0), rgba(8, 13, 17, .82));
  pointer-events:none;
}
.product-detail-card:hover img {
  transform:scale(1.035);
}
.product-detail-card img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .35s ease;
}
.product-detail-card > div {
  display:flex;
  flex:1;
  flex-direction:column;
  padding:18px;
}
.product-meta {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  min-height:30px;
  margin-bottom:10px;
}
.product-category, .product-size-badge {
  display:inline-flex;
  align-items:center;
  color:var(--cyan);
  font-size:.74rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.product-size-badge {
  min-height:28px;
  padding:0 10px;
  border:1px solid rgba(8, 184, 200, .26);
  border-radius:999px;
  background:rgba(8, 184, 200, .08);
  color:#d7f7fa;
  font-size:.7rem;
  letter-spacing:.08em;
  white-space:nowrap;
}
.product-detail-card h3 {
  min-height:2.5em;
  margin:0 0 12px;
  color:#fff;
  font-size:1.02rem;
  line-height:1.22;
  font-weight:650;
}
.product-detail-card p {
  margin:0;
  color:#c5d3dc;
  font-size:.9rem;
  line-height:1.55;
}
.product-summary {
  min-height:4.65em;
}
.product-full-text {
  display:none;
}
.product-zoom {
  position:absolute;
  top:12px;
  right:12px;
  z-index:2;
  display:inline-flex;
  min-height:34px;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:0 13px;
  border:1px solid rgba(255, 255, 255, .22);
  border-radius:999px;
  background:rgba(3, 7, 10, .72);
  backdrop-filter:blur(10px);
  color:#fff;
  font:700 .78rem/1 "Barlow", sans-serif;
  letter-spacing:.04em;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(0, 0, 0, .28);
  transition:transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.product-zoom:hover {
  transform:translateY(-2px);
  border-color:rgba(8, 184, 200, .72);
  background:rgba(8, 184, 200, .2);
  color:#e9fdff;
}
.product-modal {
  position:fixed;
  inset:0;
  z-index:60;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.product-modal.open {
  display:flex;
}
.product-modal-backdrop {
  position:absolute;
  inset:0;
  background:rgba(2, 4, 6, .78);
  backdrop-filter:blur(12px);
}
.product-modal-content {
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(280px, .92fr) minmax(0, 1fr);
  width:min(1040px, 100%);
  max-height:min(86vh, 760px);
  overflow:hidden;
  border:1px solid rgba(255, 255, 255, .12);
  border-radius:22px;
  background:#080d11;
  box-shadow:0 28px 80px rgba(0, 0, 0, .48);
}
.product-modal-content figure {
  min-height:440px;
  margin:0;
  background:#05080b;
}
.product-modal-content img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.product-modal-content > div {
  overflow:auto;
  padding:42px 38px;
}
.product-modal-content span {
  display:inline-flex;
  margin-bottom:14px;
  color:var(--cyan);
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.product-modal-content h3 {
  margin:0 0 18px;
  color:#fff;
  font-size:clamp(1.65rem, 3vw, 2.45rem);
  line-height:1.1;
  font-weight:650;
}
.product-modal-content p {
  margin:0;
  color:#c5d3dc;
  font-size:1.05rem;
  line-height:1.78;
}
.product-modal-close {
  position:absolute;
  top:16px;
  right:16px;
  z-index:2;
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255, 255, 255, .18);
  border-radius:50%;
  background:rgba(3, 7, 10, .72);
  color:#fff;
  font:500 1.65rem/1 "Barlow", sans-serif;
  cursor:pointer;
  transition:background .2s ease, border-color .2s ease;
}
.product-modal-close:hover {
  border-color:rgba(8, 184, 200, .6);
  background:rgba(8, 184, 200, .18);
}
.portfolio-showcase {
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(390px, .85fr);
  gap:24px;
  align-items:stretch;
}
.portfolio-feature, .portfolio-card {
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255, 255, 255, .09);
  background:#080d11;
  box-shadow:0 20px 54px rgba(0, 0, 0, .25);
}
.portfolio-feature {
  min-height:610px;
  border-radius:24px;
}
.portfolio-feature img, .portfolio-card img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.portfolio-feature img {
  position:absolute;
  inset:0;
}
.portfolio-feature:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(3, 4, 5, .04) 0%, rgba(3, 4, 5, .18) 48%, rgba(3, 4, 5, .74) 100%);
}
.portfolio-feature-content {
  position:absolute;
  left:26px;
  right:26px;
  bottom:26px;
  z-index:1;
  max-width:620px;
  padding:28px;
  border:1px solid rgba(255, 255, 255, .1);
  border-radius:20px;
  background:rgba(3, 7, 10, .82);
  backdrop-filter:blur(14px);
}
.portfolio-feature-content span, .portfolio-card span {
  display:inline-flex;
  margin-bottom:12px;
  color:var(--cyan);
  font-size:.74rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.portfolio-feature-content h3 {
  margin:0 0 14px;
  color:#fff;
  font-size:clamp(1.95rem, 3vw, 2.85rem);
  line-height:1.12;
  font-weight:650;
  letter-spacing:-.025em;
}
.portfolio-feature-content p, .portfolio-card p {
  margin:0;
  color:#c5d3dc;
  line-height:1.78;
}
.portfolio-feature-content p + p {
  margin-top:12px;
}
.portfolio-tags {
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:18px;
}
.portfolio-tags small {
  display:inline-flex;
  min-height:30px;
  align-items:center;
  padding:0 11px;
  border:1px solid rgba(8, 184, 200, .2);
  border-radius:999px;
  background:rgba(8, 184, 200, .05);
  color:#d6e9ee;
  font-size:.78rem;
  font-weight:500;
}
.portfolio-list {
  display:grid;
  gap:22px;
}
.portfolio-card {
  display:grid;
  grid-template-columns:150px 1fr;
  min-height:188px;
  border-radius:20px;
}
.portfolio-card img {
  min-height:188px;
}
.portfolio-card div {
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:24px 24px 24px 22px;
}
.portfolio-card h3 {
  margin:0 0 10px;
  color:#fff;
  font-size:1.28rem;
  line-height:1.24;
  font-weight:650;
}
.portfolio-card p {
  font-size:.96rem;
}
@media(max-width:960px) {
  .product-catalog {
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .portfolio-showcase {
    grid-template-columns:1fr;
  }
  .portfolio-feature {
    min-height:560px;
  }
  .portfolio-list {
    grid-template-columns:1fr;
  }
  .portfolio-card {
    grid-template-columns:220px 1fr;
  }
  .portfolio-card img {
    height:100%;
    min-height:0;
  }
}
@media(max-width:620px) {
  .product-catalog {
    grid-template-columns:1fr;
  }
  .product-detail-card {
    border-radius:18px;
  }
  .product-detail-card figure {
    height:220px;
  }
  .product-detail-card h3, .product-summary {
    min-height:0;
  }
  .product-meta {
    align-items:flex-start;
    flex-direction:column;
  }
  .product-detail-card > div {
    padding:22px;
  }
  .product-zoom {
    min-height:36px;
    padding:0 14px;
  }
  .product-modal {
    padding:16px;
  }
  .product-modal-content {
    grid-template-columns:1fr;
    max-height:88vh;
  }
  .product-modal-content figure {
    min-height:0;
    height:300px;
  }
  .product-modal-content > div {
    padding:28px 22px;
  }
  .portfolio-feature {
    min-height:560px;
    border-radius:20px;
  }
  .portfolio-feature:after {
    background:linear-gradient(180deg, rgba(3, 4, 5, .12), rgba(3, 4, 5, .86));
  }
  .portfolio-feature-content {
    left:16px;
    right:16px;
    bottom:16px;
    padding:20px;
  }
  .portfolio-list {
    grid-template-columns:1fr;
  }
  .portfolio-card {
    grid-template-columns:1fr;
    border-radius:18px;
  }
  .portfolio-card img {
    height:210px;
  }
}
.applications {
  background:linear-gradient(180deg, #071018 0%, #050608 100%);
}
.applications-head {
  display:grid;
  grid-template-columns:1fr .82fr;
  gap:42px;
  align-items:end;
  margin-bottom:44px;
}
.applications-head h2 {
  max-width:660px;
  margin:0;
  font-size:clamp(2.1rem, 4vw, 4.1rem);
  line-height:1.08;
  font-weight:650;
  letter-spacing:-.025em;
}
.applications-head p {
  margin:0 0 8px;
  color:#b8c7d1;
  font-size:1.03rem;
  line-height:1.85;
}
.applications-grid {
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
}
.application-feature, .application-card {
  overflow:hidden;
  border:1px solid rgba(255, 255, 255, .09);
  background:linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .022));
  box-shadow:0 18px 50px rgba(0, 0, 0, .22);
}
.application-feature {
  grid-row:span 3;
  display:grid;
  border-radius:24px;
}
.application-feature img {
  width:100%;
  height:430px;
  display:block;
  object-fit:cover;
  object-position:center;
}
.application-feature div {
  padding:30px;
}
.application-card {
  display:grid;
  grid-template-columns:190px 1fr;
  min-height:190px;
  border-radius:20px;
}
.application-card img {
  width:100%;
  height:100%;
  min-height:190px;
  display:block;
  object-fit:cover;
}
.application-card div {
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:24px;
}
.application-feature span, .application-card span {
  display:inline-flex;
  margin-bottom:12px;
  color:var(--cyan);
  font-size:.74rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.application-feature h3, .application-card h3 {
  margin:0 0 12px;
  color:#fff;
  font-weight:650;
  letter-spacing:-.015em;
}
.application-feature h3 {
  max-width:620px;
  font-size:clamp(1.8rem, 3vw, 2.7rem);
  line-height:1.12;
}
.application-card h3 {
  font-size:1.28rem;
  line-height:1.24;
}
.application-feature p, .application-card p {
  margin:0;
  color:#b9c8d2;
  line-height:1.75;
}
@media(max-width:960px) {
  .applications-head, .applications-grid {
    grid-template-columns:1fr;
  }
  .application-feature {
    grid-row:auto;
  }
  .application-feature img {
    height:380px;
  }
}
@media(max-width:620px) {
  .applications-head {
    gap:18px;
  }
  .application-feature, .application-card {
    border-radius:18px;
  }
  .application-feature img {
    height:300px;
  }
  .application-feature div {
    padding:22px;
  }
  .application-card {
    grid-template-columns:1fr;
  }
  .application-card img {
    height:220px;
    min-height:0;
  }
}
.applications-mosaic {
  display:grid;
  grid-template-columns:1fr 1.08fr .82fr;
  grid-auto-rows:180px;
  gap:18px;
}
.applications-copy, .application-photo {
  overflow:hidden;
  border:1px solid rgba(255, 255, 255, .09);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .024));
  box-shadow:0 18px 48px rgba(0, 0, 0, .22);
}
.applications-copy {
  grid-row:span 2;
  padding:30px;
}
.applications-copy>span, .application-photo figcaption {
  color:var(--cyan);
  font-size:.74rem;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;
}
.applications-copy h3 {
  margin:16px 0 16px;
  max-width:380px;
  color:#fff;
  font-size:clamp(1.9rem, 2.7vw, 2.75rem);
  line-height:1.12;
  font-weight:650;
  letter-spacing:-.02em;
}
.applications-copy p {
  margin:0;
  color:#b9c8d2;
  line-height:1.78;
}
.applications-copy ul {
  display:grid;
  gap:16px;
  margin:26px 0 0;
  padding:0;
  list-style:none;
}
.applications-copy li {
  display:grid;
  gap:5px;
  padding-top:16px;
  border-top:1px solid rgba(255, 255, 255, .09);
}
.applications-copy li strong {
  color:#fff;
  font-size:1rem;
  font-weight:600;
}
.applications-copy li span {
  color:#aebdc7;
  line-height:1.55;
}
.application-photo {
  position:relative;
  min-height:0;
}
.application-photo img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .45s ease;
}
.application-photo:hover img {
  transform:scale(1.035);
}
.application-photo:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(3, 4, 5, 0) 42%, rgba(3, 4, 5, .74) 100%);
}
.application-photo figcaption {
  position:absolute;
  left:18px;
  right:18px;
  bottom:16px;
  z-index:1;
  color:#e8f7fa;
}
.application-photo-tall {
  grid-row:span 3;
}
.application-photo-wide {
  grid-column:span 2;
}
.application-photo-strip {
  grid-column:span 2;
}
@media(max-width:960px) {
  .applications-mosaic {
    grid-template-columns:1fr 1fr;
    grid-auto-rows:190px;
  }
  .applications-copy {
    grid-column:span 2;
    grid-row:auto;
  }
  .application-photo-tall {
    grid-row:span 2;
  }
  .application-photo-wide, .application-photo-strip {
    grid-column:span 1;
  }
}
@media(max-width:620px) {
  .applications-mosaic {
    grid-template-columns:1fr;
    grid-auto-rows:auto;
  }
  .applications-copy, .application-photo-wide, .application-photo-strip {
    grid-column:auto;
  }
  .application-photo, .application-photo-tall {
    height:260px;
    grid-row:auto;
  }
  .applications-copy {
    padding:24px;
  }
}
.applications-layout {
  display:grid;
  grid-template-columns:minmax(300px, .42fr) minmax(0, 1fr);
  gap:24px;
  align-items:stretch;
}
.applications-layout .applications-copy {
  grid-row:auto;
  position:sticky;
  top:92px;
  align-self:start;
  min-height:auto;
  padding:34px;
}
.applications-gallery {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}
.applications-gallery .application-photo {
  height:240px;
  min-height:0;
  grid-column:auto;
  grid-row:auto;
  border-radius:20px;
}
.applications-gallery .application-photo-main {
  height:430px;
  grid-column:span 2;
}
.applications-gallery .application-photo-main figcaption {
  font-size:.8rem;
}
.applications-gallery .application-photo:after {
  background:linear-gradient(180deg, rgba(3, 4, 5, 0) 45%, rgba(3, 4, 5, .68) 100%);
}
.applications-gallery .application-photo figcaption {
  bottom:18px;
  font-size:.72rem;
  letter-spacing:.18em;
}
@media(max-width:960px) {
  .applications-layout {
    grid-template-columns:1fr;
  }
  .applications-layout .applications-copy {
    position:relative;
    top:auto;
  }
}
@media(max-width:620px) {
  .applications-gallery {
    grid-template-columns:1fr;
  }
  .applications-gallery .application-photo, .applications-gallery .application-photo-main {
    height:260px;
    grid-column:auto;
  }
}
.section-title h2, .about-content h2, .locator h2, .contact h2, .applications-head h2, .products .section-title h2 {
  font-size:clamp(1.85rem, 3.2vw, 3.25rem);
  line-height:1.14;
  letter-spacing:-.018em;
}
.section-title {
  margin-bottom:40px;
}
.section-title p {
  max-width:620px;
}
@media(max-width:620px) {
  .section-title h2, .about-content h2, .locator h2, .contact h2, .applications-head h2, .products .section-title h2 {
    font-size:2rem;
  }
}
.locator-box .btn {
  min-width:174px;
  white-space:nowrap;
  flex-shrink:0;
}
@media(max-width:620px) {
  .locator-box .btn {
    width:auto;
    min-width:190px;
  }
}
.about {
  padding-bottom:0;
}
.about-layout {
  display:block;
}
.about-content {
  max-width:900px;
  margin:0 auto 48px;
  text-align:center;
}
.about-content p {
  margin-right:auto;
  margin-left:auto;
}
.about-content .stats {
  max-width:680px;
  margin-right:auto;
  margin-left:auto;
}
.about-gallery {
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:0;
  width:100%;
  border-top:1px solid rgba(255, 255, 255, .08);
}
.about-gallery figure {
  position:relative;
  min-height:520px;
  margin:0;
  overflow:hidden;
}
.about-gallery img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.about-gallery figure:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(3, 4, 5, 0) 46%, rgba(3, 4, 5, .76) 100%);
}
.about-gallery figcaption {
  position:absolute;
  left:32px;
  right:32px;
  bottom:28px;
  z-index:1;
  max-width:520px;
  color:#e7f0f4;
  font-size:1rem;
  line-height:1.55;
}
@media(max-width:960px) {
  .about-gallery {
    grid-template-columns:1fr;
  }
  .about-gallery figure {
    min-height:420px;
  }
}
@media(max-width:620px) {
  .about-content {
    text-align:left;
  }
  .about-gallery figure {
    min-height:320px;
  }
  .about-gallery figcaption {
    left:20px;
    right:20px;
    bottom:20px;
  }
}
.about {
  padding-bottom:110px;
}
.about-layout {
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:54px;
  align-items:center;
}
.about-content {
  max-width:none;
  margin:0;
  text-align:left;
}
.about-content p {
  margin-left:0;
}
.about-content .stats {
  max-width:none;
  margin-left:0;
}
.about-gallery {
  width:auto;
  display:grid;
  grid-template-columns:1fr .72fr;
  grid-template-rows:210px 210px;
  gap:16px;
  border-top:0;
}
.about-gallery figure {
  min-height:0;
  border:1px solid rgba(255, 255, 255, .09);
  border-radius:22px;
  box-shadow:0 18px 48px rgba(0, 0, 0, .22);
}
.about-gallery-main {
  grid-row:span 2;
}
.about-gallery figcaption {
  left:20px;
  right:20px;
  bottom:18px;
  max-width:320px;
  font-size:.9rem;
}
@media(max-width:960px) {
  .about-layout {
    grid-template-columns:1fr;
  }
  .about-gallery {
    grid-template-columns:1fr 1fr;
    grid-template-rows:260px;
  }
  .about-gallery-main {
    grid-row:auto;
  }
  .about-gallery figure {
    min-height:260px;
  }
}
@media(max-width:620px) {
  .about {
    padding-bottom:78px;
  }
  .about-gallery {
    grid-template-columns:1fr;
    grid-template-rows:none;
  }
  .about-gallery figure {
    min-height:260px;
  }
}
.scroll-indicator {
  position:fixed;
  left:50%;
  bottom:24px;
  z-index:30;
  display:flex;
  width:46px;
  height:46px;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(8, 184, 200, .38);
  border-radius:999px;
  background:rgba(3, 8, 11, .62);
  backdrop-filter:blur(12px);
  box-shadow:0 14px 34px rgba(0, 0, 0, .28);
  transform:translateX(-50%);
  transition:opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.scroll-indicator span {
  width:12px;
  height:12px;
  border-right:2px solid var(--cyan);
  border-bottom:2px solid var(--cyan);
  transform:rotate(45deg);
  animation:scrollCue 1.35s ease-in-out infinite;
}
.scroll-indicator.hidden {
  opacity:0;
  visibility:hidden;
  transform:translate(-50%, 10px);
}
@keyframes scrollCue {
  0%, 100% {
    transform:translateY(-3px) rotate(45deg);
    opacity:.55
  }
  50% {
    transform:translateY(4px) rotate(45deg);
    opacity:1
  }
}
@media(max-width:620px) {
  .scroll-indicator {
    bottom:18px;
    width:42px;
    height:42px;
  }
}
.site-header {
  position:relative;
  background:linear-gradient(180deg, #030405 0%, #071018 100%);
}
.site-header:before, .site-header:after {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}
.site-header:before {
  background: linear-gradient(90deg, rgba(3, 4, 5, .88) 0%, rgba(3, 4, 5, .66) 42%, rgba(3, 4, 5, .86) 100%), linear-gradient(180deg, rgba(3, 4, 5, .54) 0%, rgba(3, 4, 5, .18) 42%, rgba(3, 4, 5, .74) 100%), url("assets/banner-hero.png") center/cover no-repeat;
  opacity:.42;
  filter:saturate(.95) contrast(1.06);
}
.site-header:after {
  background:
    repeating-radial-gradient(circle at 17% 23%, rgba(255, 255, 255, .032) 0 1px, transparent 1px 3px),
    repeating-radial-gradient(circle at 74% 61%, rgba(8, 184, 200, .022) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 72% 28%, rgba(8, 184, 200, .14), transparent 30%);
  background-size:34px 34px, 46px 46px, auto;
  opacity:.16;
  mix-blend-mode:soft-light;
}
.site-header .hero {
  position:relative;
  z-index:1;
}
.site-header .navbar {
  position:fixed;
  z-index:20;
}
@media(max-width:620px) {
  .site-header:before {
    opacity:.34;
    background: linear-gradient(180deg, rgba(3, 4, 5, .72), rgba(3, 4, 5, .88)), url("assets/banner-hero.png") center/cover no-repeat;
  }
  .site-header:after {
    opacity:.12;
  }
}
body {
  position:relative;
}
body:before {
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    repeating-radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .024) 0 1px, transparent 1px 3px),
    repeating-radial-gradient(circle at 78% 64%, rgba(8, 184, 200, .016) 0 1px, transparent 1px 4px);
  background-size:32px 32px, 44px 44px;
  opacity:.18;
  mix-blend-mode:soft-light;
}
.footer {
  position:relative;
  overflow:hidden;
  border-top:1px solid rgba(255, 255, 255, .08);
  background:#030608;
  padding:0;
}
.footer-visual {
  min-height:230px;
  background: linear-gradient(90deg, rgba(3, 6, 8, .94) 0%, rgba(3, 6, 8, .74) 36%, rgba(3, 6, 8, .46) 100%), linear-gradient(180deg, rgba(3, 6, 8, .18), #030608 100%), url("assets/footer-section.png") center 58%/cover no-repeat;
  border-bottom:1px solid rgba(255, 255, 255, .08);
}
.footer-inner {
  position:relative;
  display:grid;
  grid-template-columns:1.1fr .8fr 1fr;
  gap:36px;
  align-items:start;
  padding:42px 0 30px;
}
.footer-brand img {
  width:158px;
  display:block;
  margin-bottom:18px;
}
.footer-brand p {
  max-width:360px;
  margin:0;
  color:#aebdc7;
  line-height:1.7;
}
.footer-links, .footer-contact {
  display:grid;
  gap:12px;
}
.footer-links a, .footer-contact a, .footer-contact span, .footer-bottom {
  color:#b8c5cd;
}
.footer-links a, .footer-contact a {
  transition:color .25s ease;
}
.footer-links a:hover, .footer-contact a:hover, .footer-bottom a:hover {
  color:var(--cyan);
}
.footer-contact {
  justify-items:start;
}
.footer-contact span {
  margin-top:8px;
  color:#fff;
  font-weight:650;
}
.footer-contact span:first-child {
  margin-top:0;
}
.footer-bottom {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:20px 0 28px;
  border-top:1px solid rgba(255, 255, 255, .08);
  font-size:.95rem;
}
.footer-bottom p {
  margin:0;
}
@media(max-width:960px) {
  .footer-inner {
    grid-template-columns:1fr 1fr;
  }
  .footer-brand {
    grid-column:span 2;
  }
}
@media(max-width:620px) {
  .footer-visual {
    min-height:180px;
  }
  .footer-inner {
    grid-template-columns:1fr;
  }
  .footer-brand {
    grid-column:auto;
  }
  .footer-bottom {
    align-items:flex-start;
    flex-direction:column;
  }
}
.footer {
  background: linear-gradient(180deg, #071018 0%, rgba(3, 6, 8, 0) 120px), linear-gradient(180deg, rgba(3, 6, 8, .58) 0%, rgba(3, 6, 8, .9) 45%, #030608 100%), linear-gradient(90deg, rgba(3, 6, 8, .94) 0%, rgba(3, 6, 8, .72) 50%, rgba(3, 6, 8, .9) 100%), url("assets/footer-section.png") center/cover no-repeat;
  border-top:0;
}
.footer:before {
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:170px;
  pointer-events:none;
  background:linear-gradient(180deg, #071018 0%, rgba(7, 16, 24, .72) 36%, rgba(7, 16, 24, 0) 100%);
}
.footer-visual {
  display:none;
}
.footer-inner {
  padding-top:170px;
}
.footer-inner, .footer-bottom {
  position:relative;
  z-index:1;
}
.footer-bottom {
  border-top-color:rgba(255, 255, 255, .12);
}
@media(max-width:620px) {
  .footer-inner {
    padding-top:130px;
  }
}

@media(max-width:960px) {
  body.menu-open {
    overflow:hidden;
  }

  .menu-toggle {
    position:relative;
    z-index:1001;
    display:inline-flex;
    flex-direction:column;
    width:50px;
    height:50px;
    align-items:center;
    justify-content:flex-start;
    gap:5px;
    border:1px solid rgba(255, 255, 255, .16);
    border-radius:16px;
    background:rgba(255, 255, 255, .045);
    box-shadow:inset 0 1px 0 rgba(255, 255, 255, .08), 0 16px 34px rgba(0, 0, 0, .24);
    backdrop-filter:blur(12px);
  }

  .menu-toggle span {
    display:block;
    width:21px;
    height:2px;
    margin:0;
    border-radius:999px;
    background:#eef8fb;
    transform-origin:center;
    transition:transform .24s ease, opacity .18s ease, width .24s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform:translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity:0;
    transform:scaleX(.3);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform:translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position:fixed;
    inset:0 !important;
    top:0 !important;
    right:0 !important;
    bottom:0 !important;
    left:0 !important;
    z-index:1000;
    display:flex !important;
    flex-direction:column;
    justify-content:flex-start;
    align-items:stretch;
    gap:10px;
    padding:112px max(24px, 7vw) 42px;
    border:0;
    border-radius:0;
    background:
      linear-gradient(180deg, rgba(3, 6, 8, .98) 0%, rgba(3, 8, 11, .96) 55%, rgba(3, 6, 8, .98) 100%),
      #030608;
    box-shadow:none;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-8px);
    transition:opacity .24s ease, visibility .24s ease, transform .24s ease;
    backdrop-filter:blur(20px);
    overflow-y:auto;
    min-height:100dvh;
  }

  .nav-links.active {
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
    transform:translateY(0) !important;
  }

  .nav-links a {
    width:100%;
    min-height:58px;
    justify-content:flex-start;
    padding:0 20px;
    border:1px solid rgba(255, 255, 255, .08);
    border-radius:18px;
    background:rgba(255, 255, 255, .025);
    color:#edf6f8;
    font-size:1.05rem;
    font-weight:650;
  }

  .nav-links a:hover,
  .nav-links a.active {
    border-color:rgba(8, 184, 200, .32);
    background:rgba(8, 184, 200, .1);
  }

  .nav-links .nav-cta {
    min-height:58px;
    margin:10px 0 0;
    padding:0 20px !important;
    border-color:rgba(8, 184, 200, .58);
    background:linear-gradient(135deg, rgba(8, 184, 200, .2), rgba(11, 94, 168, .14));
  }
}

@media(max-width:620px) {
  .menu-toggle {
    width:46px;
    height:46px;
    border-radius:15px;
            display: flex;
        justify-content: center;
  }

  .nav-links {
    padding:92px 22px 34px;
  }

  .nav-links a,
  .nav-links .nav-cta {
    min-height:56px;
    border-radius:17px;
  }
}
