:root {
  --blue-900: #061f3b;
  --blue-800: #082f5d;
  --blue-700: #075a93;
  --blue-500: #00a7de;
  --cyan: #2ed4ff;
  --magenta: #e9006d;
  --magenta-2: #ff3d9b;
  --ink: #121826;
  --muted: #5c6678;
  --line: rgba(9, 37, 69, .12);
  --surface: #ffffff;
  --surface-2: #f2f6fb;
  --dark-card: rgba(255, 255, 255, .08);
  --shadow: 0 26px 80px rgba(6, 31, 59, .18);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}
body::selection { background: var(--cyan); color: #001323; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 167, 222, .10), transparent 32%),
    radial-gradient(circle at 88% 24%, rgba(233, 0, 109, .08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7fafc 42%, #fff 100%);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px));
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 20px;
  background: rgba(6, 31, 59, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(0, 16, 32, .22);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 142px;
  max-width: 168px;
  padding: 4px 10px;
}
.brand img { width: 100%; height: auto; }
.nav {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.8vw, 22px);
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .075em;
  white-space: nowrap;
}
.nav a { transition: color .2s ease; }
.nav a:hover { color: #fff; }
.erp-login {
  justify-self: end;
  color: #061f3b;
  font-weight: 900;
  padding: 11px 17px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, var(--cyan));
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(46, 212, 255, .20);
  border: 1px solid rgba(255, 255, 255, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.erp-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(46, 212, 255, .28);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
  border-radius: 2px;
}

.section { padding: 110px 0; position: relative; }
.section-dark { color: #fff; background: var(--blue-900); }
.section-muted { background: var(--surface-2); }

.landing-hero-flow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 22%, rgba(233, 0, 109, .28), transparent 28%),
    radial-gradient(circle at 64% 72%, rgba(0, 167, 222, .22), transparent 32%),
    linear-gradient(135deg, #061f3b 0%, #082f5d 46%, #031426 100%);
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 152px 0 42px;
  background: transparent;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -12vw;
  width: 60vw;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 212, 255, .16), rgba(233, 0, 109, .20));
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8vw -24vw auto;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .10);
  background: repeating-radial-gradient(circle, rgba(255, 255, 255, .10) 0 1px, transparent 1px 22px);
  opacity: .55;
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .62fr);
  gap: 46px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 12px;
}
.eyebrow.dark { color: var(--blue-700); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 26px;
  max-width: 880px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: .96;
  letter-spacing: -.065em;
}
h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: -.045em;
}
h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.18;
}
.hero-lead {
  max-width: 710px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(18px, 2vw, 22px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--magenta), var(--magenta-2));
  box-shadow: 0 18px 36px rgba(233, 0, 109, .28);
}
.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
}
.btn-secondary:hover { background: rgba(255, 255, 255, .13); }
.hero-side {
  display: grid;
  gap: 18px;
  align-content: center;
}
.hero-photo-card {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 30px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
}
.hero-photo-card span {
  display: inline-flex;
  margin: 0 0 10px 6px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.hero-photo-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 22px;
  filter: saturate(.88) contrast(1.04);
}
.hero-card {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 72px rgba(0, 0, 0, .22);
  overflow: hidden;
}
.metric {
  min-height: auto;
  padding: 18px 22px;
  border-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.metric:last-child { border-bottom: 0; }
.metric strong {
  display: block;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: .95;
  color: #fff;
  letter-spacing: -.05em;
}
.metric strong.metric-title {
  font-size: clamp(22px, 2.25vw, 30px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.metric strong.metric-nowrap {
  font-size: clamp(22px, 2.1vw, 28px);
  letter-spacing: -.035em;
  white-space: nowrap;
}
.metric span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .70);
  font-size: 14px;
  line-height: 1.35;
}

.intro-strip {
  margin-top: -1px;
  background: transparent;
  color: #fff;
  padding: 74px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.strip-grid > div {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  padding: 30px 30px 32px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .055)),
    radial-gradient(circle at 90% 12%, rgba(46, 212, 255, .18), transparent 34%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}
.strip-grid > div::after {
  content: attr(data-number);
  position: absolute;
  right: 18px;
  bottom: -34px;
  color: rgba(255, 255, 255, .055);
  font-size: 104px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.08em;
}
.strip-number {
  display: none;
}
.strip-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.42;
}

.two-col, .equipment-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 72px;
  align-items: center;
}
.section-copy p:not(.eyebrow), .section-head p {
  color: var(--muted);
  font-size: 18px;
}
.section-head {
  max-width: 820px;
  margin-bottom: 44px;
}
.section-head.light p:not(.eyebrow) { color: rgba(255, 255, 255, .68); }
.image-stack { position: relative; }
.image-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.image-stack::before {
  content: "";
  position: absolute;
  inset: 28px -20px -20px 36px;
  z-index: -1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-500), var(--magenta));
  opacity: .18;
}
.image-note {
  position: absolute;
  left: 26px;
  bottom: 26px;
  right: 26px;
  padding: 22px 24px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, rgba(6, 31, 59, .88), rgba(233, 0, 109, .74));
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 60px rgba(6, 31, 59, .10);
  border: 1px solid var(--line);
}
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-card div { padding: 28px; }
.service-card p { color: var(--muted); margin-bottom: 0; }

.equipment-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44vw;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 167, 222, .09), rgba(233, 0, 109, .06));
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--blue-800);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(6, 31, 59, .06);
  font-weight: 700;
}
.equipment-collage {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-auto-rows: 190px;
  gap: 16px;
}
.equipment-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(6, 31, 59, .14);
}
.equipment-collage img:nth-child(1) { grid-row: span 2; }
.equipment-collage img:nth-child(4) { grid-column: span 2; }

.products-section {
  overflow: hidden;
  padding-bottom: 112px;
}
.products-section::after {
  content: "";
  position: absolute;
  right: -18vw;
  bottom: -18vw;
  width: 54vw;
  height: 54vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 0, 109, .32), transparent 58%);
  pointer-events: none;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.product-item {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.055));
}
.product-item span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: .12em;
}
.product-item h3 { color: #fff; }
.product-item p { color: rgba(255, 255, 255, .66); margin-bottom: 0; }

.gallery-section { padding-top: 76px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  grid-auto-rows: 250px;
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(6, 31, 59, .12);
}
.gallery-grid img:first-child { grid-row: span 2; }
.gallery-grid img:last-child { grid-column: span 2; }

.request { padding-top: 0; }
.request-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .72fr);
  align-items: center;
  gap: 54px;
  padding: clamp(30px, 5vw, 62px);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 16%, rgba(233, 0, 109, .22), transparent 28%),
    linear-gradient(135deg, rgba(6, 31, 59, .98), rgba(8, 47, 93, .94));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.request-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(233, 0, 109, .24));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.request-card > * { position: relative; z-index: 1; }
.request-card p { color: rgba(255, 255, 255, .70); font-size: 18px; }
.request-card .eyebrow { color: var(--cyan); }
.contact-panel {
  display: grid;
  gap: 8px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(14px);
}
.contact-label {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.contact-panel strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.18;
}
.contact-panel span:not(.contact-label) {
  color: rgba(255, 255, 255, .66);
}
.contact-line {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}
.contact-line:hover { color: var(--cyan); }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.footer {
  padding: 64px 0 78px;
  color: #fff;
  background: #041326;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .7fr;
  gap: 54px;
}
.footer-logo { width: 210px; margin-bottom: 22px; }
.footer p { max-width: 470px; color: rgba(255, 255, 255, .64); }
.footer h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.footer a, .footer span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .72);
}
.footer a:hover { color: #fff; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .brand { grid-column: 1; }
  .menu-toggle { grid-column: 2; justify-self: end; }
  .erp-login { grid-column: 3; justify-self: end; }
  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px;
    border-radius: 24px;
    background: rgba(6, 31, 59, .96);
    box-shadow: 0 16px 50px rgba(0, 16, 32, .25);
  }
  .nav.is-open { display: flex; }
  .nav a { width: 100%; padding: 14px 12px; border-radius: 14px; }
  .nav a:hover { background: rgba(255, 255, 255, .08); }
  .menu-toggle { display: block; }
  .hero-grid, .two-col, .equipment-grid, .request-card { grid-template-columns: 1fr; }
  .hero-side { max-width: 760px; }
  .hero-card { max-width: 760px; }
  .cards-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 86px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container, .site-header { width: min(100% - 24px, 1180px); }
  .site-header { top: 10px; padding: 10px; gap: 10px; }
  .brand { min-width: 118px; max-width: 136px; padding: 2px 6px; }
  .erp-login { padding: 10px 13px; font-size: 13px; }
  .hero { min-height: auto; padding: 132px 0 34px; }
  .intro-strip { padding: 58px 0; }
  .products-section { padding-bottom: 88px; }
  .gallery-section { padding-top: 54px; }
  .hero-photo-card img { height: 220px; }
  .hero-card { grid-template-columns: 1fr; }
  .metric { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .metric:last-child { border-bottom: 0; }
  h1 { font-size: clamp(38px, 13vw, 58px); }
  .hero-actions .btn { width: 100%; }
  .strip-grid, .cards-grid, .product-grid, .footer-grid { grid-template-columns: 1fr; }
  .strip-grid > div { min-height: auto; }
  .image-main { height: 380px; }
  .equipment-collage { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .equipment-collage img:nth-child(1), .equipment-collage img:nth-child(4) { grid-row: auto; grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-grid img:first-child, .gallery-grid img:last-child { grid-row: auto; grid-column: auto; }
  .request-card { gap: 30px; }
  .contact-panel { padding: 18px; }
  .contact-actions .btn { width: 100%; }
  .footer { padding-bottom: 54px; }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(34px, 9.6vw, 44px);
    letter-spacing: -.055em;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 8px;
    padding: 9px;
  }
  .brand {
    min-width: 104px;
    max-width: 118px;
  }
  .erp-login {
    padding: 9px 11px;
    font-size: 12px;
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
  }
}

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