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

:root {
  --navy-950: #02050b;
  --navy-900: #06101d;
  --navy-850: #081827;
  --navy-800: #0b2032;
  --navy-700: #123149;
  --cyan: #20d4e8;
  --cyan-dark: #0ea9c0;
  --ice: #e9fbff;
  --paper: #f2f6f7;
  --ink: #071523;
  --muted: #92a8b7;
  --line: rgba(181, 228, 238, .17);
  --shadow: 0 24px 70px rgba(0, 8, 18, .25);
  --radius: 20px;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #f5fbfd;
  background: var(--navy-950);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.id { display: none !important; }
html[data-lang="id"] .en { display: none !important; }
html[data-lang="id"] .id { display: initial !important; }
.skip {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 7px;
  transform: translateY(-150%);
  transition: transform .2s;
}
.skip:focus { transform: translateY(0); }

.header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 86px;
  border-bottom: 1px solid transparent;
  transition: height .3s, background .3s, border-color .3s;
}
.header.scrolled {
  height: 72px;
  background: rgba(2, 7, 14, .9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo { flex: 0 0 auto; }
.logo img { width: 120px; height: auto; }
.navlinks { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); margin-left: auto; }
.navlinks a {
  position: relative;
  color: #c8d7df;
  font-size: 13px;
  font-weight: 600;
  transition: color .2s;
}
.navlinks a::after {
  content: "";
  position: absolute;
  inset: auto 0 -9px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s;
}
.navlinks a:hover, .navlinks a:focus-visible { color: #fff; }
.navlinks a:hover::after, .navlinks a:focus-visible::after { transform: scaleX(1); }
.navact { display: flex; align-items: center; gap: 13px; }
.langs {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  border-radius: 999px;
}
.langs button {
  min-width: 35px;
  padding: 4px 8px;
  border: 0;
  color: #93aab7;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}
.langs button.active { color: var(--ink); background: var(--cyan); }
.menubtn { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; border-radius: 50%; }
.menubtn i { display: block; width: 18px; height: 1px; margin: 5px auto; background: #fff; transition: transform .2s; }
.menu-open .menubtn i:first-child { transform: translateY(3px) rotate(45deg); }
.menu-open .menubtn i:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile {
  visibility: hidden;
  position: fixed;
  inset: 72px 0 0;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: rgba(2, 7, 14, .98);
  opacity: 0;
  transform: translateY(-15px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.mobile a { padding: 14px 0; border-bottom: 1px solid var(--line); font: 600 19px "Manrope", sans-serif; }
.menu-open .mobile { visibility: visible; opacity: 1; transform: none; }

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.heroimg {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 5, 11, .98) 0%, rgba(2, 7, 15, .88) 43%, rgba(2, 7, 15, .2) 75%, rgba(2, 5, 11, .45) 100%),
    linear-gradient(0deg, var(--navy-950) 0%, transparent 25%),
    url("images/hero-corporate-tech.webp") center / cover no-repeat;
  filter: saturate(.86);
}
.gridfx {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .1;
  background-image:
    linear-gradient(rgba(56, 209, 227, .35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 209, 227, .35) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, #000, transparent 68%);
}
.heroct { padding-top: 110px; }
.heroct > * { max-width: 790px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}
.eyebrow::before { content: ""; width: 33px; height: 2px; background: currentColor; }
h1, h2, h3, h4 { margin: 0; font-family: "Manrope", Arial, sans-serif; line-height: 1.13; letter-spacing: -.035em; }
h1 { max-width: 850px !important; font-size: clamp(46px, 6vw, 82px); font-weight: 700; }
h1 em, h2 em { color: var(--cyan); font-style: normal; }
.lead { max-width: 690px !important; margin: 27px 0 0; color: #bad0da; font-size: clamp(17px, 1.7vw, 20px); line-height: 1.7; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 50px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: #00141b; background: var(--cyan); box-shadow: 0 12px 35px rgba(32, 212, 232, .15); }
.btn.primary:hover { background: #6aeaf6; box-shadow: 0 15px 42px rgba(32, 212, 232, .25); }
.btn.outline { color: #eafcff; border-color: rgba(181, 228, 238, .3); background: rgba(2, 10, 18, .35); backdrop-filter: blur(8px); }
.btn.outline:hover { border-color: var(--cyan); }
.btn.light { min-height: 42px; padding: 10px 15px; color: var(--ink); background: #fff; }
.btn.dark { color: white; background: var(--navy-900); }
.btn.dark:hover { background: var(--cyan); color: var(--ink); }
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 920px !important;
  margin-top: 78px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(4, 14, 25, .36);
  backdrop-filter: blur(10px);
}
.strip div { display: flex; min-height: 79px; align-items: center; gap: 12px; padding: 14px 18px; border-right: 1px solid var(--line); }
.strip div:last-child { border: 0; }
.strip small { color: var(--cyan); font-size: 10px; font-weight: 800; }
.strip strong { font-size: 12px; line-height: 1.35; }

.section { position: relative; padding: 112px 0; overflow: hidden; }
.section.dark { background: var(--navy-950); }
.section.blue { background: var(--navy-850); }
.section.paper { color: var(--ink); background: var(--paper); }
.section.tech { background: linear-gradient(130deg, #071522, #0b2639); }
.heading { max-width: 750px; margin-bottom: 55px; }
.heading.center { margin-inline: auto; text-align: center; }
.heading.center .eyebrow { justify-content: center; }
.heading h2, .split h2 { font-size: clamp(34px, 4.4vw, 57px); }
.heading p { margin: 20px 0 0; color: var(--muted); font-size: 17px; }
.paper .heading p, .paper .copy p { color: #526473; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.copy p { margin: 0 0 19px; color: #a9bdc8; font-size: 17px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 38px; background: var(--line); border: 1px solid var(--line); }
.values div { padding: 22px; background: var(--navy-900); }
.values b { display: block; margin-bottom: 7px; color: var(--cyan); font-size: 12px; }
.values span { font-size: 12px; color: #b9cbd4; line-height: 1.45; }

.fieldgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field {
  position: relative;
  min-height: 300px;
  padding: 35px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(15, 45, 64, .7), rgba(5, 16, 28, .9));
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.field::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -95px;
  border: 1px solid rgba(32, 212, 232, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(32, 212, 232, .04), 0 0 0 70px rgba(32, 212, 232, .02);
}
.field:hover { transform: translateY(-5px); border-color: rgba(32, 212, 232, .55); }
.field small { color: var(--cyan); font: 800 12px "Manrope", sans-serif; letter-spacing: .14em; }
.field h3 { max-width: 370px; margin: 48px 0 16px; font-size: 29px; }
.field p { max-width: 480px; margin: 0; color: #99afbb; }
.field a { display: inline-flex; margin-top: 26px; color: var(--cyan); font-size: 13px; font-weight: 800; }

.solutions { background: #eaf0f2; }
.solimg {
  position: absolute;
  inset: 0 0 auto;
  height: 560px;
  background:
    linear-gradient(90deg, rgba(3, 13, 23, .98) 5%, rgba(3, 13, 23, .75) 48%, rgba(3, 13, 23, .38)),
    linear-gradient(0deg, #eaf0f2 0, transparent 35%),
    url("images/uav-industrial-solutions.webp") center 48% / cover no-repeat;
}
.solutions .shell { position: relative; }
.solutions .heading { min-height: 325px; padding-top: 20px; color: white; }
.solutions .heading p { color: #b2c6cf; }
.solgrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 17px; }
.solcard {
  grid-column: span 3;
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  color: white;
  background: var(--navy-900);
  border: 1px solid rgba(168, 222, 234, .22);
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(7, 26, 39, .08);
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.solcard::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: var(--card-image) center / cover no-repeat;
  transform: scale(1.01);
  transition: transform .55s ease, filter .55s ease;
}
.solcard::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 10, 18, .32) 0%, rgba(2, 10, 18, .58) 42%, rgba(2, 9, 17, .97) 100%),
    linear-gradient(135deg, rgba(14, 169, 192, .18), transparent 55%);
}
.solcard:hover { transform: translateY(-7px); border-color: rgba(32, 212, 232, .55); box-shadow: 0 24px 60px rgba(7, 26, 39, .22); }
.solcard:hover::before { transform: scale(1.075); filter: saturate(1.08); }
.solcard small { color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.solcard h3 { margin: 50px 0 14px; font-size: 25px; }
.solcard p { margin: 0; color: #c1d5dd; font-size: 14px; }
.solcard > b { margin-top: auto; padding-top: 24px; color: var(--cyan); font-size: 18px; font-weight: 800; }
.solcard.agriculture { --card-image: url("images/solution-agriculture.webp"); }
.solcard.oil-gas { --card-image: url("images/solution-oil-gas.webp"); }
.solcard.disaster-logistics { --card-image: url("images/solution-disaster-logistics.webp"); }
.solcard.surveillance { --card-image: url("images/solution-surveillance.webp"); }
.solcard.underwater { --card-image: url("images/underwater-rov-solution.webp"); }
.solcard.underwater {
  grid-column: 1 / -1;
  min-height: 330px;
  padding-left: 52%;
  border-color: #0a4156;
}
.solcard.underwater::after { background: linear-gradient(90deg, rgba(2, 13, 23, .12), rgba(2, 13, 23, .78) 48%, rgba(2, 13, 23, .98)); }
.solcard.underwater h3 { margin-top: 45px; }
.solcard.underwater p { color: #c1d5dd; }
.solcard.underwater small, .solcard.underwater > b { color: var(--cyan); }

.process { display: grid; grid-template-columns: repeat(6, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process li { min-height: 240px; padding: 35px 22px 20px; border-right: 1px solid var(--line); }
.process li:last-child { border: 0; }
.process small { display: block; margin-bottom: 52px; color: var(--cyan); font: 800 11px "Manrope", sans-serif; }
.process strong { display: block; margin-bottom: 10px; font: 700 17px/1.3 "Manrope", sans-serif; }
.process span { color: #7f98a5; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.eng { display: grid; grid-template-columns: 1.1fr .9fr; gap: 75px; align-items: center; }
.eng h2 { font-size: clamp(35px, 4.5vw, 58px); }
.eng > div > p { color: #9eb2bd; }
.englist { display: grid; gap: 13px; }
.englist > div { padding: 20px 23px; border-left: 2px solid var(--cyan); background: rgba(255, 255, 255, .045); }
.englist small { display: block; margin-bottom: 5px; color: #708d9b; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.englist strong { font: 600 15px/1.4 "Manrope", sans-serif; }

.aviation { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: stretch; }
.aviation h2 { font-size: clamp(37px, 4.6vw, 59px); }
.aviation > div:first-child > p { color: #4f6471; font-size: 17px; }
.avcard { padding: 26px; color: white; background: var(--navy-900); border-radius: 13px; }
.avcard small { display: inline-block; margin-bottom: 22px; color: var(--cyan); font-size: 12px; font-weight: 800; }
.avcard h3 { margin-bottom: 8px; font-size: 19px; }
.avcard ul { margin: 18px 0 0; padding: 0; list-style: none; }
.avcard li { position: relative; padding: 10px 0 10px 18px; color: #9fb2bd; border-bottom: 1px solid var(--line); font-size: 13px; }
.avcard li::before { content: "·"; position: absolute; left: 2px; color: var(--cyan); }

.techgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.techcard {
  --tech-image: url("images/uav-industrial-solutions.webp");
  position: relative;
  min-height: 195px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  border: 1px solid var(--line);
  color: #eaf9fc;
  background: var(--navy-900);
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.techcard::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: var(--tech-image) center / cover no-repeat;
  transform: scale(1.01);
  transition: transform .5s ease, filter .5s ease;
}
.techcard::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 9, 17, .15), rgba(2, 9, 17, .5) 45%, rgba(2, 9, 17, .97));
}
.techcard:hover { transform: translateY(-5px); border-color: rgba(32, 212, 232, .48); box-shadow: 0 18px 42px rgba(0, 7, 15, .25); }
.techcard:hover::before { transform: scale(1.08); filter: saturate(1.1); }
.techcard small { margin-bottom: 8px; color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.techcard strong { font: 700 12px/1.4 "Manrope", sans-serif; letter-spacing: .06em; }
.tech-eo { --tech-image: url("images/sensor-eo-camera.webp"); }
.tech-thermal { --tech-image: url("images/sensor-thermal-imaging.webp"); }
.tech-multispectral { --tech-image: url("images/sensor-multispectral.webp"); }
.tech-lidar { --tech-image: url("images/sensor-lidar-3d.webp"); }
.tech-photogrammetry { --tech-image: url("images/sensor-photogrammetry.webp"); }
.tech-gas { --tech-image: url("images/sensor-gas-detection.webp"); }
.tech-sonar { --tech-image: url("images/sensor-sonar-acoustic.webp"); }
.tech-environmental { --tech-image: url("images/sensor-environmental.webp"); }
.tech-datalink { --tech-image: url("images/sensor-datalink.webp"); }
.tech-gis { --tech-image: url("images/sensor-gis-platform.webp"); }

@media (min-width: 1081px) {
  .techcard:nth-child(9),
  .techcard:nth-child(10) { grid-column: span 2; }
}
.industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #cddadd; border: 1px solid #cddadd; }
.industries div { min-height: 160px; display: flex; flex-direction: column; justify-content: space-between; padding: 23px; background: #fff; }
.industries span { color: #0a9bb1; font-size: 11px; font-weight: 800; }
.industries strong { max-width: 170px; font: 700 17px/1.35 "Manrope", sans-serif; }

.insights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.incard { min-height: 280px; display: flex; flex-direction: column; padding: 27px; border: 1px solid var(--line); border-radius: 14px; }
.incard small { color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.incard h3 { margin: 52px 0 14px; font-size: 23px; }
.incard p { margin: 0; color: #92a8b4; font-size: 14px; }
.incard a { margin-top: auto; padding-top: 25px; color: var(--cyan); font-size: 12px; font-weight: 800; }

.contact {
  background:
    radial-gradient(circle at 85% 20%, rgba(32, 212, 232, .12), transparent 32%),
    #06101c;
}
.contactgrid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.contactgrid h2 { font-size: clamp(38px, 5vw, 63px); }
.contactgrid > div > p { color: #9fb2bd; }
.details { margin-top: 40px; }
.details a, .details span { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); color: #d6e4e9; font-size: 14px; }
.form { padding: 35px; color: var(--ink); background: #fff; border-radius: 18px; box-shadow: var(--shadow); }
.formrow { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form label { display: block; margin: 0 0 15px; color: #536572; font-size: 12px; font-weight: 700; }
.form input, .form textarea, .form select {
  width: 100%;
  margin-top: 7px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #cdd9dd;
  color: var(--ink);
  background: transparent;
  outline: none;
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--cyan-dark); }
.form textarea { min-height: 85px; resize: vertical; }
.form .btn { width: 100%; margin-top: 8px; }
.note { margin: 12px 0 0; color: #768994; font-size: 11px; text-align: center; }

.footer { padding: 65px 0 26px; color: #a1b3bd; background: #01040a; border-top: 1px solid var(--line); }
.foot { display: grid; grid-template-columns: 1.5fr .5fr; gap: 55px; }
.foot img { width: 125px; }
.foot p { max-width: 330px; font-size: 13px; }
.foot h4 { margin-bottom: 18px; color: white; font-size: 13px; letter-spacing: 0; }
.foot a { display: block; margin: 9px 0; font-size: 12px; transition: color .2s; }
.foot a:hover { color: var(--cyan); }
.copyright { display: flex; justify-content: space-between; margin-top: 45px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 11px; }

/* Solution detail pages */
.detail-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: end;
  padding: 150px 0 85px;
  overflow: hidden;
  isolation: isolate;
}
.detail-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 13, .98), rgba(2, 8, 16, .72) 58%, rgba(2, 8, 16, .34)),
    linear-gradient(0deg, var(--navy-950), transparent 48%),
    var(--detail-image, url("images/uav-industrial-solutions.webp")) center / cover no-repeat;
}
.detail-hero.undersea { --detail-image: url("images/underwater-rov-solution.webp"); }
.breadcrumb { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 30px; color: #a8bac4; font-size: 12px; }
.breadcrumb a:hover { color: var(--cyan); }
.detail-hero h1 { max-width: 790px !important; }
.detail-hero .lead { max-width: 760px !important; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.catalog-wrap { display: inline-flex; align-items: center; gap: 9px; }
.catalog-btn[aria-disabled="true"] { color: #78909d; border-color: rgba(160, 188, 198, .2); cursor: not-allowed; opacity: .78; }
.catalog-btn[aria-disabled="true"]:hover { transform: none; }
.coming { padding: 4px 8px; color: var(--cyan); background: rgba(32, 212, 232, .1); border-radius: 999px; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.overview { display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; }
.overview h2 { font-size: clamp(34px, 4vw, 52px); }
.overview-copy p { margin: 0 0 18px; color: #a5b9c4; font-size: 17px; }
.capgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.capcard { min-height: 210px; padding: 25px; color: var(--ink); background: #fff; border: 1px solid #d9e3e6; border-radius: 13px; }
.capcard span { display: block; color: var(--cyan-dark); font-size: 11px; font-weight: 800; }
.capcard h3 { margin: 42px 0 9px; font-size: 19px; }
.capcard p { margin: 0; color: #667782; font-size: 13px; }
.solution-panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.solution-panels article { min-height: 330px; padding: 30px; background: var(--navy-900); }
.solution-panels small { color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.solution-panels h3 { margin: 33px 0 20px; font-size: 23px; }
.checklist { margin: 0; padding: 0; list-style: none; }
.checklist li { position: relative; padding: 11px 0 11px 24px; color: #9eb3be; border-bottom: 1px solid var(--line); font-size: 13px; }
.checklist li::before { content: "·"; position: absolute; left: 5px; color: var(--cyan); font-size: 24px; line-height: 16px; }
.detail-cta { text-align: center; }
.detail-cta h2 { max-width: 780px; margin: 0 auto; font-size: clamp(35px, 4.5vw, 57px); }
.detail-cta p { max-width: 680px; margin: 20px auto 30px; color: #a8bac4; }
.mini-footer { padding: 28px 0; background: #01040a; border-top: 1px solid var(--line); }
.mini-footer .shell { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.mini-footer img { width: 105px; }
.mini-footer p { margin: 0; color: #718995; font-size: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }

@media (max-width: 1080px) {
  .navlinks { display: none; }
  .menubtn { display: block; }
  .hero { min-height: 780px; }
  .strip { grid-template-columns: repeat(2, 1fr); max-width: 650px !important; }
  .strip div:nth-child(2) { border-right: 0; }
  .strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .solcard { grid-column: span 3; }
  .solcard.underwater { grid-column: 1 / -1; }
  .process { grid-template-columns: repeat(3, 1fr); }
  .process li { border-bottom: 1px solid var(--line); }
  .techgrid, .industries { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 840px) {
  :root { --shell: min(100% - 34px, 680px); }
  .section { padding: 82px 0; }
  .navcta { display: none; }
  .hero { min-height: 820px; }
  .heroimg { background-position: 62% center; }
  .heroct { padding-top: 90px; }
  .split, .eng, .aviation, .contactgrid, .overview { grid-template-columns: 1fr; gap: 44px; }
  .fieldgrid { grid-template-columns: 1fr; }
  .solcard { grid-column: 1 / -1; }
  .solcard.underwater { padding-left: 42%; }
  .process { grid-template-columns: 1fr 1fr; }
  .process li { min-height: 220px; }
  .insights, .capgrid { grid-template-columns: 1fr 1fr; }
  .solution-panels { grid-template-columns: 1fr; }
  .solution-panels article { min-height: auto; }
  .foot { grid-template-columns: 1fr 1fr; }
  .detail-hero { min-height: 570px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  .header, .header.scrolled { height: 68px; }
  .logo img { width: 104px; }
  .mobile { top: 68px; }
  .langs button { min-width: 30px; padding-inline: 6px; }
  .hero { min-height: 830px; align-items: center; }
  .heroimg {
    background:
      linear-gradient(90deg, rgba(2, 5, 11, .96), rgba(2, 7, 15, .66)),
      linear-gradient(0deg, var(--navy-950), transparent 40%),
      url("images/hero-corporate-tech.webp") 61% center / cover no-repeat;
  }
  h1 { font-size: 42px; }
  .lead { font-size: 16px; }
  .actions .btn { width: 100%; }
  .strip { margin-top: 48px; }
  .strip div { min-height: 64px; padding: 10px; }
  .strip strong { font-size: 10px; }
  .values { grid-template-columns: 1fr; }
  .heading { margin-bottom: 38px; }
  .field { min-height: 280px; padding: 27px; }
  .solutions .heading { min-height: 350px; }
  .solgrid { display: block; }
  .solcard { margin-bottom: 14px; }
  .solcard.underwater { padding: 29px; }
  .solcard.underwater::after { background: linear-gradient(180deg, rgba(2, 13, 23, .32), rgba(2, 13, 23, .96)); }
  .process, .techgrid, .industries, .insights, .capgrid { grid-template-columns: 1fr; }
  .process li { min-height: auto; border-right: 0; }
  .form { padding: 24px; }
  .formrow { grid-template-columns: 1fr; gap: 0; }
  .foot { grid-template-columns: 1fr; gap: 30px; }
  .copyright, .mini-footer .shell { flex-direction: column; align-items: flex-start; gap: 8px; }
  .detail-hero { min-height: 650px; padding-bottom: 65px; }
  .detail-hero h1 { font-size: 43px; }
  .overview-copy p { font-size: 15px; }
}

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