:root {
  --navy-950: #031226;
  --navy-900: #061a33;
  --navy-800: #0a2647;
  --navy-700: #10355d;
  --cyan: #087cff;
  --cyan-soft: #5bc7ff;
  --red: #087cff;
  --red-dark: #005bd8;
  --ink: #071b33;
  --muted: #5f6e7e;
  --line: #dce3ea;
  --surface: #f5f8fb;
  --white: #ffffff;
  --container: 1240px;
  --font: "Inter", "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.site-header.scrolled {
  position: fixed;
  background: rgba(3, 18, 38, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  animation: header-in 0.25s ease both;
}

@keyframes header-in {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
}

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  width: 210px;
  height: 52px;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-left: auto;
  margin-right: 42px;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  width: 100%;
}

.btn {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg,
.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-small {
  min-height: 42px;
  padding-inline: 18px;
}

.btn-small svg {
  width: 17px;
}

.btn-red,
.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 35px rgba(8, 124, 255, 0.28);
}

.btn-red:hover,
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 15px 40px rgba(8, 124, 255, 0.4);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 52%, rgba(0, 112, 255, 0.22), transparent 24%),
    radial-gradient(circle at 72% 52%, rgba(0, 198, 255, 0.09), transparent 42%),
    linear-gradient(135deg, #010817 0%, #03142d 52%, #010714 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 8, 23, 0.98) 0%, rgba(1, 8, 23, 0.88) 40%, rgba(1, 8, 23, 0.18) 70%),
    linear-gradient(0deg, rgba(1, 8, 23, 0.92) 0%, transparent 36%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  top: 50%;
  right: 11%;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(28, 143, 255, 0.32);
  border-radius: 48% 52% 46% 54%;
  background:
    radial-gradient(circle at 35% 30%, #0a8cff 0 2px, transparent 3px),
    radial-gradient(circle at 66% 24%, #47c8ff 0 3px, transparent 4px),
    radial-gradient(circle at 74% 62%, #0a8cff 0 3px, transparent 4px),
    radial-gradient(circle at 32% 70%, #47c8ff 0 2px, transparent 4px),
    radial-gradient(circle, rgba(6, 113, 255, 0.28), rgba(3, 20, 45, 0.05) 62%);
  box-shadow:
    inset 0 0 70px rgba(8, 124, 255, 0.16),
    0 0 90px rgba(8, 124, 255, 0.12);
  transform: translateY(-42%) rotate(-7deg);
  animation: neural-float 9s ease-in-out infinite alternate;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(58, 183, 255, 0.3);
  border-radius: 53% 47% 56% 44%;
  transform: rotate(18deg);
}

.hero-media::after {
  inset: 25%;
  border-color: rgba(8, 124, 255, 0.42);
  transform: rotate(-25deg);
}

@keyframes neural-float {
  from { transform: translateY(-42%) rotate(-7deg) scale(1); }
  to { transform: translateY(-45%) rotate(2deg) scale(1.04); }
}

.hero-grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(42, 212, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 212, 255, 0.2) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-circuits {
  position: absolute;
  z-index: 2;
  top: 115px;
  width: 38%;
  height: 420px;
  opacity: 0.48;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(8, 124, 255, 0.72) 8% 8.3%, transparent 8.3% 25%, rgba(0, 191, 255, 0.52) 25% 25.3%, transparent 25.3%),
    repeating-linear-gradient(0deg, transparent 0 29px, rgba(8, 124, 255, 0.42) 30px, transparent 31px 58px);
  clip-path: polygon(0 5%, 55% 5%, 70% 20%, 70% 33%, 100% 33%, 100% 75%, 70% 75%, 55% 90%, 0 90%);
  filter: drop-shadow(0 0 8px rgba(0, 144, 255, 0.4));
}

.circuit-left {
  left: 0;
  transform: translateX(-68%);
}

.circuit-right {
  right: 0;
  transform: translateX(50%) scaleX(-1);
}

.hero-inner {
  position: relative;
  z-index: 4;
  min-height: 740px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 92px;
}

.hero-copy {
  width: min(720px, 62%);
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 5vw, 76px);
  line-height: 1.12;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.hero-copy > p {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link svg {
  transition: transform 0.2s ease;
}

.hero-proof {
  position: absolute;
  left: 0;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.hero-proof i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cyan);
}

.trust-bar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-inner {
  min-height: 106px;
  display: flex;
  align-items: center;
}

.trust-inner > p {
  width: 220px;
  margin: 0 34px 0 0;
  padding-right: 34px;
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

.trust-items {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-items span {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 13px;
}

.trust-items strong {
  color: var(--navy-800);
  font-size: 17px;
}

.section {
  padding: 120px 0;
}

.section-index {
  display: block;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-index.light {
  color: var(--cyan-soft);
}

.section-heading h2,
.local-copy h2,
.case-copy h2,
.contact-layout h2,
.industries-intro h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 120px;
  align-items: end;
  margin-bottom: 76px;
}

.split-heading > p {
  margin: 0 0 9px;
  color: var(--muted);
  line-height: 1.9;
}

.service-list {
  border-top: 1px solid var(--ink);
}

.service-item {
  min-height: 182px;
  display: grid;
  grid-template-columns: 52px 84px 1.35fr 1fr 42px;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, padding 0.25s ease;
}

.service-item:hover {
  padding-inline: 18px;
  background: var(--surface);
}

.service-no {
  align-self: start;
  padding-top: 36px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
}

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--navy-800);
}

.service-icon svg {
  width: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-copy h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
}

.service-copy p,
.service-item ul {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-copy p {
  max-width: 440px;
  margin: 0;
}

.service-item ul {
  margin: 0;
  padding: 0;
  columns: 1;
  list-style: none;
}

.service-item li::before {
  content: "—";
  margin-right: 8px;
  color: var(--cyan);
}

.service-item > a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.service-item > a:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.service-item > a svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industries {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.industries::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(19, 128, 194, 0.11);
  filter: blur(30px);
}

.industries-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 110px;
}

.industries-intro > p {
  max-width: 390px;
  margin: 28px 0 44px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
}

.industry-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.industry-nav button {
  position: relative;
  width: 100%;
  padding: 17px 0 17px 20px;
  color: rgba(255, 255, 255, 0.45);
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.industry-nav button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 2px;
  background: transparent;
}

.industry-nav button:hover,
.industry-nav button.active {
  color: var(--white);
}

.industry-nav button.active::before {
  background: var(--red);
}

.industry-stage {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(16, 53, 93, 0.78), rgba(3, 18, 38, 0.2)),
    var(--navy-900);
}

.industry-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.industry-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 212, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 212, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.industry-visual svg {
  position: absolute;
  z-index: 2;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  fill: none;
  stroke: rgba(42, 212, 255, 0.42);
  stroke-width: 1.2;
}

.industry-visual svg circle {
  fill: var(--cyan);
  filter: drop-shadow(0 0 8px var(--cyan));
}

.orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(42, 212, 255, 0.28);
}

.orb::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(42, 212, 255, 0.18);
}

.orb-one {
  top: 25px;
  right: 65px;
  width: 290px;
  height: 290px;
}

.orb-two {
  top: 110px;
  right: 160px;
  width: 130px;
  height: 130px;
  background: rgba(42, 212, 255, 0.04);
}

.industry-content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 48px;
  background: linear-gradient(0deg, rgba(3, 18, 38, 0.97), rgba(3, 18, 38, 0.02));
}

.industry-number {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.industry-content h3 {
  margin: 12px 0 14px;
  font-size: 30px;
}

.industry-content > p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.8;
}

.use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 32px;
}

.use-cases span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.light-link {
  color: var(--cyan-soft);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.center-heading > p {
  margin: 22px 0 0;
  color: var(--muted);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 46px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 53px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: var(--line);
}

.process-line article {
  position: relative;
}

.process-line article > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.process-dot {
  position: relative;
  z-index: 2;
  width: 15px;
  height: 15px;
  margin: 27px 0 34px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), 0 0 18px rgba(42, 212, 255, 0.42);
}

.process-line h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.process-line p {
  min-height: 76px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.process-line small {
  color: var(--navy-700);
  font-size: 12px;
  font-weight: 700;
}

.local {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 90%, rgba(42, 212, 255, 0.12), transparent 28%),
    var(--navy-800);
}

.local::after {
  content: "SG";
  position: absolute;
  right: -30px;
  bottom: -100px;
  color: rgba(255, 255, 255, 0.025);
  font-size: 500px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.12em;
}

.local-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 120px;
}

.local-copy > p {
  max-width: 450px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--white);
}

.local-points {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.local-points article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.local-points strong {
  color: var(--cyan-soft);
  font-size: 18px;
}

.local-points h3 {
  margin: 0 0 9px;
  font-size: 20px;
}

.local-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.8;
}

.case-study {
  background: var(--surface);
}

.case-card {
  min-height: 570px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(5, 26, 51, 0.09);
}

.case-visual {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(15, 62, 102, 0.95), rgba(3, 18, 38, 0.99));
}

.case-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(42, 212, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 212, 255, 0.16) 1px, transparent 1px);
  background-size: 36px 36px;
}

.case-visual > span {
  position: absolute;
  top: 38px;
  left: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.case-map {
  position: absolute;
  inset: 50px 30px 30px;
}

.case-map svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(42, 212, 255, 0.72);
  stroke-width: 2;
}

.case-map svg circle {
  fill: var(--cyan);
  filter: drop-shadow(0 0 10px var(--cyan));
}

.case-map svg rect {
  fill: rgba(3, 18, 38, 0.75);
}

.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 76px;
}

.case-copy h2 {
  font-size: clamp(36px, 3.8vw, 52px);
}

.case-copy > p {
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 42px 0;
}

.case-results div {
  padding-left: 18px;
  border-left: 2px solid var(--red);
}

.case-results strong,
.case-results span {
  display: block;
}

.case-results strong {
  color: var(--red);
  font-size: 30px;
}

.case-results span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.dark-link {
  color: var(--navy-700);
}

.contact-section {
  padding: 105px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(8, 124, 255, 0.24), transparent 25%),
    linear-gradient(115deg, #020b1d 0%, #061d43 58%, #052d69 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  align-items: center;
}

.contact-layout h2 {
  font-size: clamp(42px, 4.4vw, 62px);
}

.contact-layout > div > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.contact-person {
  margin-top: 38px;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-person span {
  margin-bottom: 5px;
  color: var(--cyan-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.contact-person a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.contact-person .contact-detail {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
}

.contact-person a:hover {
  color: var(--cyan-soft);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 34px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(56, 0, 5, 0.24);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: block;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
}

.full-field {
  grid-column: 1 / -1;
}

.contact-form .btn {
  margin-top: 6px;
}

.form-status {
  margin: -4px 0 0;
  min-height: 18px;
  color: #1b6c42;
  font-size: 12px;
}

.whatsapp-float {
  position: fixed !important;
  z-index: 9999 !important;
  right: 20px !important;
  bottom: 20px !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}

.whatsapp-float svg {
  display: block;
  width: 30px !important;
  height: 30px !important;
  max-width: 30px;
  max-height: 30px;
  flex: none;
}

.footer {
  color: rgba(255, 255, 255, 0.66);
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 100px;
  padding-top: 70px;
  padding-bottom: 58px;
}

.footer .brand {
  width: 220px;
}

.footer-brand p {
  margin: 16px 0 0;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 13px;
}

.footer-links a,
.footer-links span {
  font-size: 12px;
  line-height: 1.5;
}

.footer-links a:hover {
  color: var(--cyan-soft);
}

.footer-bottom {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1050px) {
  .main-nav { gap: 24px; margin-right: 24px; }
  .split-heading { gap: 60px; }
  .service-item { grid-template-columns: 42px 65px 1.3fr 0.8fr 42px; gap: 16px; }
  .industries-layout { gap: 55px; }
  .local-layout { gap: 60px; }
  .contact-layout { gap: 60px; }
}

@media (max-width: 840px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .menu-toggle { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    margin: 0;
    padding: 110px 36px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    background: var(--navy-950);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .menu-open .main-nav { transform: translateX(0); }
  .menu-toggle { position: relative; z-index: 2; }
  .menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero, .hero-inner { min-height: 720px; }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(1, 8, 23, 0.98) 0%, rgba(1, 8, 23, 0.85) 60%, rgba(1, 8, 23, 0.25) 100%),
      linear-gradient(0deg, rgba(1, 8, 23, 0.94) 0%, transparent 45%);
  }
  .hero-media { right: -170px; opacity: 0.62; }
  .hero-circuits { display: none; }
  .hero-copy { width: 88%; }
  .trust-inner { padding: 26px 0; align-items: flex-start; }
  .trust-inner > p { width: 160px; }
  .trust-items { grid-template-columns: 1fr 1fr; gap: 20px; }
  .section { padding: 90px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 55px; }
  .service-item {
    padding: 28px 0;
    grid-template-columns: 36px 55px 1fr 42px;
  }
  .service-item:hover { padding-inline: 10px; }
  .service-no { padding-top: 7px; }
  .service-icon { width: 50px; height: 50px; align-self: start; }
  .service-icon svg { width: 42px; }
  .service-item ul { display: none; }
  .service-item > a { grid-column: 4; grid-row: 1; align-self: start; }
  .industries-layout { grid-template-columns: 1fr; gap: 50px; }
  .industry-nav { flex-direction: row; flex-wrap: wrap; }
  .industry-nav button { width: auto; padding: 11px 14px; border: 1px solid rgba(255,255,255,.15); }
  .industry-nav button::before { display: none; }
  .industry-nav button.active { background: rgba(255,255,255,.08); border-color: var(--cyan); }
  .process-line { grid-template-columns: 1fr 1fr; row-gap: 60px; }
  .process-line::before { display: none; }
  .local-layout { grid-template-columns: 1fr; gap: 60px; }
  .case-card { grid-template-columns: 1fr; }
  .case-visual { min-height: 380px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 70px; }
  .brand { font-size: 19px; }
  .brand { width: 180px; height: 44px; }
  .hero, .hero-inner { min-height: 680px; }
  .hero-inner { justify-content: flex-end; padding: 0 0 105px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: 46px; }
  .hero-copy > p { font-size: 15px; line-height: 1.75; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; margin-top: 30px; }
  .hero-proof { bottom: 28px; gap: 10px; letter-spacing: 0.08em; }
  .trust-inner { display: block; }
  .trust-inner > p { width: auto; padding: 0 0 18px; margin: 0 0 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-items { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .section-heading h2, .local-copy h2, .industries-intro h2 { font-size: 38px; }
  .service-item { grid-template-columns: 28px 1fr 40px; gap: 12px; }
  .service-icon { display: none; }
  .service-item > a { grid-column: 3; }
  .service-copy h3 { font-size: 19px; }
  .industry-stage { min-height: 540px; }
  .industry-content { padding: 30px 24px; }
  .process-line { grid-template-columns: 1fr; gap: 44px; }
  .process-dot { margin: 18px 0 22px; }
  .process-line p { min-height: auto; }
  .local-points article { grid-template-columns: 80px 1fr; }
  .case-visual { min-height: 300px; }
  .case-copy { padding: 44px 24px; }
  .case-copy h2 { font-size: 34px; }
  .case-results { grid-template-columns: 1fr; gap: 18px; }
  .contact-section { padding: 72px 0; }
  .contact-layout h2 { font-size: 40px; }
  .contact-form { grid-template-columns: 1fr; padding: 26px 20px; }
  .contact-form label { grid-column: 1; }
  .whatsapp-float {
    right: 14px !important;
    bottom: 14px !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    min-height: 48px;
  }
  .whatsapp-float svg { width: 28px !important; height: 28px !important; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { padding: 22px 0; flex-direction: column; align-items: flex-start; gap: 14px; }
}
