:root {
  --navy: #061a4a;
  --navy-2: #0a245e;
  --blue: #0b3b82;
  --red: #d71920;
  --red-dark: #b3141a;
  --white: #ffffff;
  --ice: #eaf3fa;
  --ice-2: #f4f8fc;
  --ink: #111827;
  --muted: #4b5568;
  --line: #d7e3ef;
  --header: 76px;
  --shadow: 0 10px 30px rgba(6, 26, 74, 0.08);
  --max: 1220px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

button, input, select, textarea { font: inherit; }

h1, h2, h3, h4 {
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy);
  margin: 0;
}

p { margin: 0 0 1rem; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--red);
  color: #fff;
  padding: 8px 14px;
  font-weight: 600;
}

.skip-link:focus { top: 12px; }

body.nav-open { overflow: hidden; }

.nav-item.is-current > .nav-link { color: var(--red); border-bottom-color: var(--red); }

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

.container-wide {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s, transform 0.2s;
}

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

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-red:hover { background: var(--red-dark); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover { background: var(--blue); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 26, 74, 0.08);
  transition: box-shadow 0.25s;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(6, 26, 74, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo svg { width: 30px; height: 30px; }

.logo-word {
  font-family: Manrope, Inter, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.logo-word span { color: var(--red); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.nav-link svg {
  width: 10px;
  height: 10px;
  opacity: 0.7;
}

.nav-link:hover,
.nav-item.is-open > .nav-link,
.nav-link.is-active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s var(--ease);
  z-index: 20;
}

.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown,
.nav-item.is-open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 550;
  color: var(--navy);
}

.dropdown a:hover,
.dropdown a.is-active {
  background: var(--ice);
  color: var(--red);
}

.header-cta { flex-shrink: 0; }
.nav .btn { display: none; }

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

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: 0.2s;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  min-height: calc(100svh - var(--header));
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.hero-media .shot {
  background-size: cover;
  background-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
}

.hero-media .shot-a {
  background-image: url("../images/hero-canada.jpg");
}

.hero-media .shot-b {
  background-image: url("../images/refinery.jpg");
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 26, 74, 0.88) 0%, rgba(6, 26, 74, 0.62) 48%, rgba(11, 59, 130, 0.28) 100%);
}

.hero-leaf {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  padding: 72px 0 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f3c4c6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}

.hero-sashes {
  position: absolute;
  top: -8px;
  right: -12px;
  z-index: 2;
  width: min(420px, 46vw);
  height: min(280px, 38vw);
  pointer-events: none;
}

.hero-sashes .sash {
  position: absolute;
  top: 0;
  overflow: visible;
}

.sash-us {
  right: 108px;
  width: 58%;
  transform: rotate(-18deg);
}

.sash-ca {
  right: -18px;
  width: 70%;
  transform: rotate(-22deg);
}

.hero h1 {
  color: #fff;
  font-size: clamp(42px, 6.4vw, 84px);
  font-weight: 800;
  margin-bottom: 12px;
  animation: fadeUp 0.8s var(--ease) both;
}

.hero .sub {
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 600;
  color: #e8eef8;
  margin-bottom: 14px;
  animation: fadeUp 0.8s 0.12s var(--ease) both;
}

.hero .tagline {
  font-size: clamp(16px, 1.6vw, 20px);
  color: #c9d5e8;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.22s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.32s var(--ease) both;
}

.hero-regions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #dce6f5;
  animation: fadeUp 0.8s 0.4s var(--ease) both;
}

.hero-regions span { position: relative; display: inline-flex; align-items: center; }

.hero-regions > span + span::before {
  content: "|";
  margin-right: 18px;
  opacity: 0.45;
}

.capabilities {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.capability {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.capability svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.capability:hover { color: var(--red); }

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* Sections */
.section {
  padding: 92px 0;
  position: relative;
}

.section.ice { background: var(--ice-2); }
.section.navy {
  background: var(--navy);
  color: #d7e0ee;
}

.section.navy h2,
.section.navy h3,
.section.navy .kicker { color: #fff; }

.section-head {
  margin-bottom: 36px;
  max-width: 760px;
}

.kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.section h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
}

.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 680px;
}

.section.navy .lead { color: #c5d1e4; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 0.7s var(--ease) forwards;
  animation-play-state: paused;
}

.reveal.in { animation-play-state: running; }

/* Who we are */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.story p { color: var(--muted); }

.visual-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  min-height: 460px;
}

.visual-stack figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.visual-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-stack figure:first-child { min-height: 460px; }

.visual-stack .stack-right {
  display: grid;
  gap: 14px;
}

.caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(6, 26, 74, 0.78));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Mission */
.mission {
  background:
    linear-gradient(180deg, rgba(6, 26, 74, 0.82), rgba(6, 26, 74, 0.88)),
    url("../images/riyadh.jpg") center / cover no-repeat;
  color: #dce5f3;
}

.mission h2,
.mission .kicker { color: #fff; }

.mission-quote {
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.35;
  font-weight: 700;
  color: #fff;
  max-width: 920px;
  margin: 0 0 48px;
  letter-spacing: -0.03em;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.icon-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 20px;
  backdrop-filter: blur(8px);
}

.icon-card svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
  margin-bottom: 14px;
}

.icon-card h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 6px;
}

.icon-card p {
  margin: 0;
  font-size: 13.5px;
  color: #c5d0e2;
}

/* Why GCC */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  margin-bottom: 36px;
}

.place {
  position: relative;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
}

.place.ksa { background-image: linear-gradient(180deg, rgba(6,26,74,.15), rgba(6,26,74,.72)), url("../images/riyadh.jpg"); }
.place.uae { background-image: linear-gradient(180deg, rgba(6,26,74,.15), rgba(6,26,74,.72)), url("../images/dubai.jpg"); }

.place h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 6px;
}

.place p { margin: 0; color: #e4ebf5; }

.points {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.point {
  border-top: 2px solid var(--red);
  padding-top: 16px;
}

.point strong {
  display: block;
  font-family: Manrope, Inter, sans-serif;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 8px;
}

.point p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.industry-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background-size: cover;
  background-position: center;
  border: 0;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 26, 74, 0.15), rgba(6, 26, 74, 0.82));
  z-index: -1;
  transition: background 0.25s;
}

.industry-card:hover::before,
.industry-card:focus-visible::before {
  background: linear-gradient(180deg, rgba(215, 25, 32, 0.18), rgba(6, 26, 74, 0.88));
}

.industry-card svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
  margin-bottom: 12px;
}

.industry-card h3 {
  color: #fff;
  font-size: 18px;
}

.industry-card span {
  font-size: 12px;
  opacity: 0.8;
}

.industry-card.is-active {
  outline: 2px solid #fff;
  outline-offset: -2px;
}

.industry-card.is-active::before {
  background: linear-gradient(180deg, rgba(215, 25, 32, 0.22), rgba(6, 26, 74, 0.9));
}

/* Technology */
.tech-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}

.tech-photo {
  min-height: 520px;
  background: url("../images/control-room.jpg") center / cover no-repeat;
  position: relative;
}

.tech-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 26, 74, 0.55));
}

.tech-list {
  display: grid;
  gap: 8px;
}

.tech-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: inherit;
}

.tech-item:hover { background: rgba(255, 255, 255, 0.04); }

.tech-num {
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
  color: var(--red);
  font-size: 15px;
}

.tech-item h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 2px;
}

.tech-item p {
  margin: 0;
  font-size: 13px;
  color: #b8c5d8;
}

.tech-item svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
}

/* Solution sections */
.solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.solution.reverse { direction: rtl; }
.solution.reverse > * { direction: ltr; }

.solution-media {
  background-size: cover;
  background-position: center;
  min-height: 420px;
  position: relative;
}

.sol-automation { background-image: url("../images/control-room.jpg"); }
.sol-valves { background-image: url("../images/valves.jpg"); }
.sol-electrical { background-image: url("../images/electrical.jpg"); }
.sol-instruments { background-image: url("../images/instruments.jpg"); }

.solution-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 26, 74, 0.18), transparent 40%);
}

.solution-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  background: #fff;
}

.solution.ice .solution-body { background: var(--ice-2); }

.cat-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.cat-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.cat-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--ice);
  color: var(--navy);
}

.cat-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

.cat-list h3 { font-size: 16px; margin-bottom: 4px; }
.cat-list p { margin: 0; font-size: 13.5px; color: var(--muted); }

.measure-lines {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.measure-lines::before,
.measure-lines::after {
  content: "";
  position: absolute;
  background: rgba(215, 25, 32, 0.7);
}

.measure-lines::before { left: 12px; top: 12px; width: 18px; height: 2px; }
.measure-lines::after { right: 12px; bottom: 12px; width: 2px; height: 18px; }

/* Value */
.value-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.value-photo {
  min-height: 520px;
  background: url("../images/handshake.jpg") center / cover no-repeat;
}

.value-list {
  display: grid;
  gap: 0;
}

.value-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.value-row:first-child { border-top: 1px solid var(--line); }

.value-row b {
  font-family: Manrope, Inter, sans-serif;
  color: var(--red);
  font-size: 18px;
}

.value-row span {
  font-weight: 650;
  color: var(--navy);
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}

.step {
  padding: 0 14px;
  text-align: left;
}

.step-index {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--navy);
}

.step h3 {
  font-size: 15px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.step ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13.5px;
}

.step li { margin-bottom: 4px; }
.step li::before {
  content: "– ";
  color: var(--red);
}

/* Markets */
.market-hero {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  color: #fff;
  background-size: cover;
  background-position: center;
  margin-bottom: 36px;
}

.market-hero.ksa {
  background-image: linear-gradient(180deg, rgba(6,26,74,.2), rgba(6,26,74,.78)), url("../images/riyadh.jpg");
}

.market-hero.uae {
  background-image: linear-gradient(180deg, rgba(6,26,74,.2), rgba(6,26,74,.78)), url("../images/dubai.jpg");
}

.market-hero.gcc {
  background-image: linear-gradient(180deg, rgba(6,26,74,.2), rgba(6,26,74,.78)), url("../images/gcc-skyline.jpg");
}

.market-hero h2 { color: #fff; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
}

.section.navy .panel {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chip {
  padding: 8px 12px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--ice-2);
}

.section.navy .chip {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

/* Partnerships */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.partner-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px 22px;
  min-height: 280px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
}

.partner-card:hover,
.partner-card.is-open,
.partner-card:focus-visible {
  border-color: var(--navy);
  background: var(--ice-2);
}

.partner-num {
  display: block;
  color: var(--red);
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.partner-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

/* Contact */
.contact {
  background:
    linear-gradient(100deg, rgba(6, 26, 74, 0.92) 0%, rgba(11, 59, 130, 0.78) 100%),
    url("../images/contact-bg.jpg") center / cover no-repeat;
  color: #dce5f3;
}

.contact h2,
.contact .kicker,
.contact .logo-word { color: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: start;
}

.contact-brand {
  font-size: clamp(28px, 4vw, 42px);
  margin: 8px 0 8px;
}

.contact-meta {
  margin: 28px 0;
  display: grid;
  gap: 10px;
}

.contact-meta a { color: #fff; font-weight: 600; }
.contact-meta a:hover { color: #f3c4c6; }

.contact-heading {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.contact-meta address {
  font-style: normal;
  margin: 8px 0 0;
}

.contact-meta address strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f3c4c6;
  margin-bottom: 4px;
}

.form {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 32px;
  display: grid;
  gap: 14px;
}

.form h3 { margin-bottom: 4px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #c9d6e4;
  border-radius: 2px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
}

textarea { min-height: 120px; resize: vertical; }

.notice {
  display: none;
  padding: 12px 14px;
  background: #e8f6ee;
  color: #166534;
  font-weight: 600;
}

.notice.show { display: block; }

.form-error { color: var(--red); font-size: 12px; }

/* Footer */
.site-footer {
  background: #041230;
  color: #c5d0e2;
  padding: 56px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .logo-word { color: #fff; margin-bottom: 10px; }

.site-footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.site-footer a { display: block; margin-bottom: 8px; font-size: 14px; }
.site-footer a:hover { color: #fff; }

.socials { display: flex; gap: 10px; margin-top: 16px; }

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  margin: 0;
}

.socials svg { width: 16px; height: 16px; fill: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1440px) {
  .nav-link { padding: 10px 7px; font-size: 12.5px; }
}

@media (max-width: 1280px) {
  .nav-link { padding: 10px 6px; font-size: 12px; }
  .partner-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  .header-cta { display: none; }
  .nav .btn { display: inline-flex; margin: 8px 16px 16px; }
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - var(--header));
    overflow: auto;
  }
  .nav.open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; padding: 8px 0 16px; }
  .nav-link { padding: 14px 24px; border-bottom: 0; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    display: none;
    min-width: 0;
    background: var(--ice-2);
    padding: 0 0 8px;
  }
  .nav-item.is-open > .dropdown { display: block; }
  .dropdown a { padding: 10px 36px; }
  .points, .industry-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .timeline::before {
    top: 0;
    bottom: 0;
    left: 27px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .step { display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 0 0 28px; }
}

@media (max-width: 900px) {
  .split,
  .tech-layout,
  .solution,
  .value-grid,
  .contact-grid,
  .two-col,
  .why-split,
  .visual-stack,
  .icon-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .solution.reverse { direction: ltr; }
  .solution-body { padding: 40px 28px; }
  .hero-media { grid-template-columns: 1fr; }
  .hero-media .shot-b { display: none; }
  .hero-sashes { width: 240px; height: 180px; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .visual-stack figure:first-child,
  .tech-photo,
  .value-photo { min-height: 280px; }
  .section { padding: 72px 0; }
}

@media (max-width: 640px) {
  .container, .container-wide { width: calc(100% - 32px); }
  .industry-grid,
  .points,
  .partner-grid { grid-template-columns: 1fr; }
  .industry-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 8px;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .industry-card {
    min-width: 78%;
    scroll-snap-align: start;
  }
  .footer-bottom { flex-direction: column; }
  .hero h1 { font-size: 40px; }
  .hero-sashes { width: 170px; height: 140px; right: -20px; }
}
