:root {
  --navy-950: #061521;
  --navy-900: #081c2d;
  --navy-850: #0b2438;
  --navy-800: #0d2c45;
  --blue-700: #0b5fb7;
  --blue-600: #167dcc;
  --cyan-500: #22a9dc;
  --cyan-300: #78d6f4;
  --yellow-500: #f3c425;
  --yellow-300: #ffe071;
  --steel-50: #f7fafc;
  --steel-100: #edf3f7;
  --steel-200: #dbe6ee;
  --steel-300: #c4d3df;
  --steel-500: #70889a;
  --ink: #122739;
  --muted: #5c7080;
  --white: #ffffff;
  --success: #087f5b;
  --error: #b42318;
  --shadow-sm: 0 8px 24px rgba(4, 24, 39, 0.08);
  --shadow-md: 0 18px 55px rgba(4, 24, 39, 0.14);
  --shadow-lg: 0 34px 90px rgba(4, 24, 39, 0.24);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1200px;
  --header-height: 114px;
  --section-space: clamp(4.5rem, 8vw, 8rem);
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button { border: 0; }

::selection { background: var(--yellow-300); color: var(--navy-950); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  background: var(--yellow-500);
  color: var(--navy-950);
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 9999;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow-500), var(--cyan-500));
  pointer-events: none;
}

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

.narrow { width: min(calc(100% - 32px), 820px); margin-inline: auto; }

.section {
  position: relative;
  padding-block: var(--section-space);
  scroll-margin-top: calc(var(--header-height) + 24px);
  overflow-x: clip;
}

.section-sm { padding-block: clamp(3rem, 5vw, 5rem); }
.section-dark { color: var(--white); background: var(--navy-950); }
.section-steel { background: var(--steel-50); }
.section-blue { color: var(--white); background: var(--blue-700); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--yellow-500);
  box-shadow: 10px 0 0 var(--cyan-500);
}
.section-dark .eyebrow, .section-blue .eyebrow { color: var(--cyan-300); }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--navy-950);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.section-dark h2, .section-dark h3, .section-dark h4,
.section-blue h2, .section-blue h3, .section-blue h4 { color: var(--white); }

h1 { font-size: clamp(2.55rem, 7vw, 5.9rem); }
h2 { font-size: clamp(2rem, 4.7vw, 4.1rem); }
h3 { font-size: clamp(1.28rem, 2vw, 1.65rem); letter-spacing: -0.02em; }
h4 { font-size: 1.05rem; letter-spacing: -0.01em; }

p { margin: 0; color: var(--muted); }
.section-dark p, .section-blue p { color: rgba(255,255,255,.74); }
.lead { font-size: clamp(1.04rem, 1.6vw, 1.25rem); line-height: 1.75; }
.muted { color: var(--muted); }

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 790px;
  margin-bottom: clamp(2.4rem, 5vw, 4.5rem);
}
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-self: center; }

.kicker-grid {
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.topbar {
  display: none;
  background: var(--navy-950);
  color: rgba(255,255,255,.84);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: .78rem;
}
.topbar-group { display: flex; align-items: center; gap: 1.4rem; }
.topbar a { transition: color var(--transition); }
.topbar a:hover { color: var(--yellow-300); }
.topbar-item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar-item svg { width: 15px; height: 15px; flex: 0 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(10, 39, 61, .1);
  box-shadow: 0 7px 30px rgba(6, 21, 33, .06);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: 0 11px 35px rgba(6, 21, 33, .13); }
.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: 188px; height: auto; }
.desktop-nav { display: none; }
.nav-list { display: flex; align-items: center; gap: .2rem; margin: 0; padding: 0; list-style: none; }
.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: .72rem .82rem;
  color: #284154;
  font-size: .91rem;
  font-weight: 760;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: .82rem;
  right: .82rem;
  bottom: .45rem;
  height: 2px;
  background: var(--yellow-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--blue-700); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: .65rem; }
.mobile-call {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 50%;
}
.mobile-call svg { width: 19px; }
.menu-toggle {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 12px;
  background: var(--navy-950);
  color: var(--white);
  cursor: pointer;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
  transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  visibility: hidden;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-10px);
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-drawer.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.mobile-drawer-inner { padding: 1.25rem 16px calc(1.8rem + env(safe-area-inset-bottom)); }
.mobile-nav { margin: 0; padding: 0; list-style: none; }
.mobile-nav a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: .75rem .3rem;
  color: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(255,255,255,.09);
  font-weight: 760;
}
.mobile-nav a[aria-current="page"] { color: var(--yellow-300); }
.mobile-drawer-actions { display: grid; gap: .75rem; margin-top: 1.25rem; }

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .82rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 820;
  line-height: 1.1;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--navy-950); background: var(--yellow-500); box-shadow: 0 12px 30px rgba(243,196,37,.24); }
.btn-primary:hover { background: var(--yellow-300); box-shadow: 0 16px 35px rgba(243,196,37,.3); }
.btn-blue { color: var(--white); background: var(--blue-700); box-shadow: 0 12px 30px rgba(11,95,183,.22); }
.btn-blue:hover { background: var(--blue-600); }
.btn-dark { color: var(--white); background: var(--navy-950); }
.btn-outline { color: var(--navy-950); border-color: var(--steel-300); background: transparent; }
.btn-outline:hover { border-color: var(--blue-700); color: var(--blue-700); }
.section-dark .btn-outline, .section-blue .btn-outline { color: var(--white); border-color: rgba(255,255,255,.32); }
.section-dark .btn-outline:hover, .section-blue .btn-outline:hover { border-color: var(--yellow-500); color: var(--yellow-300); }
.btn svg { width: 18px; height: 18px; }
.btn[disabled] { cursor: not-allowed; opacity: .65; transform: none; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(34,169,220,.24), transparent 30%),
    linear-gradient(135deg, var(--navy-950), #0a3150 67%, #0d5383);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 760px;
  right: -190px;
  top: -160px;
  z-index: -1;
  transform: rotate(20deg);
  border: 32px solid rgba(243,196,37,.12);
  border-left-color: rgba(34,169,220,.22);
}
.hero-grid {
  min-height: min(850px, calc(100vh - var(--header-height)));
  display: grid;
  align-items: center;
  gap: 3rem;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}
.hero-copy { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--cyan-300); }
.hero h1 { color: var(--white); max-width: 850px; }
.hero h1 span { color: var(--yellow-300); }
.hero-copy .lead { max-width: 720px; margin-top: 1.5rem; color: rgba(255,255,255,.75); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem .85rem;
  color: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.055);
  border-radius: 10px;
  font-size: .86rem;
  font-weight: 720;
}
.hero-trust svg { width: 17px; color: var(--yellow-300); }

.hero-visual { position: relative; }
.hero-frame {
  position: relative;
  padding: clamp(.75rem, 1.7vw, 1.1rem);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}
.hero-frame::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 2px solid rgba(243,196,37,.5);
  border-radius: 22px;
}
.hero-frame img {
  width: 100%;
  height: auto;
  max-height: 610px;
  object-fit: contain;
  border-radius: 14px;
  background: #0b2538;
}
.hero-badge {
  position: absolute;
  left: -12px;
  bottom: 24px;
  width: min(280px, 75%);
  padding: 1rem;
  color: var(--navy-950);
  background: var(--yellow-500);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.hero-badge strong { display: block; font-size: 1.05rem; }
.hero-badge span { display: block; margin-top: .2rem; font-size: .79rem; font-weight: 700; }

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--white);
  border-bottom: 1px solid var(--steel-200);
  box-shadow: var(--shadow-sm);
}
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.trust-item {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: .2rem;
  padding: 1.25rem;
  border-right: 1px solid var(--steel-200);
  border-bottom: 1px solid var(--steel-200);
}
.trust-item strong { color: var(--navy-950); font-size: 1.05rem; }
.trust-item span { color: var(--muted); font-size: .86rem; }
.trust-item b { color: var(--blue-700); font-size: 1.45rem; }

.split-grid { display: grid; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.media-panel { position: relative; }
.media-panel::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 24px;
  z-index: -1;
  background: var(--yellow-500);
  border-radius: 18px;
}
.media-panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--steel-100);
  border: 1px solid var(--steel-200);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}
.media-panel.dark img { background: var(--navy-850); border-color: rgba(255,255,255,.12); }

.copy-stack { display: grid; gap: 1.3rem; }
.check-list, .arrow-list {
  display: grid;
  gap: .85rem;
  margin: .6rem 0 0;
  padding: 0;
  list-style: none;
}
.check-list li, .arrow-list li { display: flex; align-items: flex-start; gap: .75rem; color: var(--ink); }
.check-list svg { width: 20px; flex: 0 0 auto; margin-top: .2rem; color: var(--blue-700); }
.section-dark .check-list li, .section-blue .check-list li { color: rgba(255,255,255,.84); }
.section-dark .check-list svg, .section-blue .check-list svg { color: var(--yellow-300); }
.arrow-list li::before { content: "→"; color: var(--blue-700); font-weight: 900; }

.capability-grid { display: grid; gap: 1rem; }
.capability-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 1.65rem;
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(7, 32, 50, .06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.capability-card:hover { transform: translateY(-5px); border-color: var(--cyan-500); box-shadow: var(--shadow-md); }
.capability-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -58px;
  bottom: -58px;
  transform: rotate(45deg);
  background: var(--steel-100);
}
.card-index { color: var(--blue-700); font-size: .78rem; font-weight: 900; letter-spacing: .15em; }
.card-icon {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 1.2rem;
  color: var(--blue-700);
  background: #eaf5fc;
  border-radius: 12px;
}
.card-icon svg { width: 27px; height: 27px; }
.capability-card h3 { margin-bottom: .8rem; }
.capability-card p { font-size: .95rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.2rem;
  color: var(--blue-700);
  font-weight: 820;
}

.feature-panels { display: grid; gap: 1rem; }
.feature-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-radius: 20px;
  background: var(--navy-900);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.1);
}
.feature-panel:nth-child(2) { background: var(--blue-700); }
.feature-panel h3 { color: var(--white); }
.feature-panel p { color: rgba(255,255,255,.72); }
.feature-panel img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  background: rgba(255,255,255,.06);
  border-radius: 13px;
}

.industry-grid { display: grid; gap: 1rem; }
.industry-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem;
  border: 1px solid var(--steel-200);
  background: var(--white);
  border-radius: 15px;
}
.industry-card .num {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--navy-950);
  background: var(--yellow-500);
  border-radius: 10px;
  font-weight: 900;
}
.industry-card p { margin-top: .4rem; font-size: .92rem; }

.process-wrap { position: relative; }
.process-grid { display: grid; gap: 1rem; counter-reset: process; }
.process-card {
  position: relative;
  padding: 1.55rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
}
.process-card::before {
  counter-increment: process;
  content: "0" counter(process);
  display: block;
  margin-bottom: 1.1rem;
  color: var(--yellow-300);
  font-size: 1.55rem;
  font-weight: 900;
}
.process-card p { margin-top: .65rem; }

.stats-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), #073e78);
}
.stats-band::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -160px;
  top: -180px;
  border: 55px solid rgba(255,255,255,.08);
  transform: rotate(25deg);
}
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.15); }
.stat { padding: 1.45rem; background: rgba(8,28,45,.28); }
.stat-value { display: block; color: var(--yellow-300); font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 900; line-height: 1; }
.stat-label { display: block; margin-top: .55rem; color: rgba(255,255,255,.78); font-size: .9rem; }

.timeline { display: grid; gap: 1rem; }
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--steel-200);
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-dot { width: 13px; height: 13px; margin-top: .45rem; background: var(--yellow-500); border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 4px rgba(11,95,183,.15); }
.timeline-item p { margin-top: .35rem; }

.quality-teaser {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6,21,33,.98), rgba(11,95,183,.9)),
    linear-gradient(45deg, transparent 45%, rgba(255,255,255,.05) 45% 55%, transparent 55%);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.quality-teaser h2 { color: var(--white); }
.quality-teaser p { color: rgba(255,255,255,.76); }
.quality-badges { display: flex; flex-wrap: wrap; gap: .65rem; }
.quality-badge { padding: .65rem .8rem; border: 1px solid rgba(255,255,255,.18); border-radius: 9px; font-size: .85rem; font-weight: 760; }

.gallery-grid { display: grid; gap: 1rem; }
.gallery-card {
  position: relative;
  overflow: hidden;
  padding: .85rem;
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.gallery-card img {
  width: 100%;
  height: auto;
  min-height: 230px;
  max-height: 430px;
  object-fit: contain;
  background: var(--steel-100);
  border-radius: 11px;
}
.gallery-card figcaption { padding: .9rem .3rem .25rem; color: var(--navy-950); font-weight: 800; }
.gallery-card small { display: block; margin-top: .25rem; color: var(--muted); font-weight: 500; }
.gallery-card button {
  width: 100%;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}

.product-grid { display: grid; gap: 1rem; }
.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.product-visual {
  display: grid;
  min-height: 240px;
  place-items: center;
  padding: 1.2rem;
  background: linear-gradient(145deg, #eef4f8, #ffffff);
  border: 1px solid var(--steel-200);
  border-radius: 12px;
}
.product-visual img { width: 100%; max-height: 230px; object-fit: contain; }
.product-card-body { display: grid; gap: .65rem; padding: 1.2rem .3rem .35rem; }
.product-tag { color: var(--blue-700); font-size: .74rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.product-card .card-link { margin-top: auto; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 2rem;
}
.filter-button {
  min-height: 44px;
  padding: .65rem 1rem;
  color: var(--ink);
  background: var(--steel-100);
  border: 1px solid var(--steel-200);
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}
.filter-button.is-active { color: var(--white); background: var(--blue-700); border-color: var(--blue-700); }
[data-filter-item].is-hidden { display: none; }

.table-wrap { overflow-x: auto; border: 1px solid var(--steel-200); border-radius: 15px; }
table { width: 100%; min-width: 700px; border-collapse: collapse; }
th, td { padding: 1rem 1.1rem; text-align: left; border-bottom: 1px solid var(--steel-200); }
th { color: var(--white); background: var(--navy-900); font-size: .84rem; letter-spacing: .06em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: var(--steel-50); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0, rgba(34,169,220,.28), transparent 32%),
    linear-gradient(135deg, var(--navy-950), #0a3f66);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 440px;
  height: 440px;
  border: 60px solid rgba(243,196,37,.13);
  transform: rotate(30deg);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; color: var(--white); font-size: clamp(2.45rem, 6vw, 5rem); }
.page-hero p { max-width: 720px; margin-top: 1.2rem; color: rgba(255,255,255,.75); font-size: 1.08rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem; color: rgba(255,255,255,.72); font-size: .84rem; font-weight: 750; }
.breadcrumb a:hover { color: var(--yellow-300); }
.breadcrumb span { color: var(--yellow-300); }

.value-grid { display: grid; gap: 1rem; }
.value-card { padding: 1.5rem; border: 1px solid var(--steel-200); border-radius: 16px; background: var(--white); }
.value-card b { display: inline-grid; width: 38px; height: 38px; place-items: center; margin-bottom: 1rem; color: var(--navy-950); background: var(--yellow-500); border-radius: 9px; }
.value-card p { margin-top: .55rem; }

.callout {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.6rem;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background: var(--navy-950);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.callout::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -110px;
  top: -150px;
  border: 40px solid rgba(34,169,220,.18);
  transform: rotate(45deg);
}
.callout h2 { color: var(--white); max-width: 800px; }
.callout p { max-width: 760px; color: rgba(255,255,255,.72); }
.callout-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.faq-list { display: grid; gap: .8rem; }
.faq-item { overflow: hidden; border: 1px solid var(--steel-200); border-radius: 14px; background: var(--white); }
.faq-question {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  color: var(--navy-950);
  background: transparent;
  font-weight: 820;
  text-align: left;
  cursor: pointer;
}
.faq-question span:last-child { flex: 0 0 auto; font-size: 1.25rem; transition: transform .25s ease; }
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { padding: 0 1.15rem 1.15rem; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

.contact-grid { display: grid; gap: 1.2rem; }
.contact-panel, .form-card {
  padding: clamp(1.4rem, 4vw, 2.3rem);
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: 19px;
  box-shadow: var(--shadow-sm);
}
.contact-panel.dark { color: var(--white); background: var(--navy-950); border-color: transparent; }
.contact-panel.dark p { color: rgba(255,255,255,.72); }
.contact-list { display: grid; gap: .85rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.contact-list a, .contact-list div { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start; }
.contact-icon { display: grid; width: 42px; height: 42px; place-items: center; color: var(--blue-700); background: #eaf5fc; border-radius: 10px; }
.contact-panel.dark .contact-icon { color: var(--yellow-300); background: rgba(255,255,255,.08); }
.contact-icon svg { width: 21px; }
.contact-meta strong { display: block; color: inherit; }
.contact-meta span { display: block; color: var(--muted); font-size: .9rem; }
.contact-panel.dark .contact-meta span { color: rgba(255,255,255,.62); }

.form-grid { display: grid; gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field label { color: var(--navy-950); font-size: .88rem; font-weight: 800; }
.field label span { color: var(--error); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: .8rem .9rem;
  color: var(--ink);
  background: var(--steel-50);
  border: 1px solid var(--steel-300);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.field textarea { min-height: 135px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-700); background: var(--white); box-shadow: 0 0 0 4px rgba(11,95,183,.12); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; margin-top: .4rem; }
.form-status { min-height: 24px; margin-top: .8rem; font-weight: 700; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }
.form-note { margin-top: .75rem; font-size: .82rem; }

.map-frame { overflow: hidden; min-height: 380px; border: 1px solid var(--steel-200); border-radius: 18px; box-shadow: var(--shadow-sm); }
.map-frame iframe { width: 100%; min-height: 380px; border: 0; }

.legal-content { display: grid; gap: 1.4rem; }
.legal-content h2 { margin-top: 1.5rem; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.legal-content h3 { margin-top: .8rem; font-size: 1.25rem; }
.legal-content ul { margin: 0; padding-left: 1.25rem; color: var(--muted); }
.legal-content li + li { margin-top: .5rem; }

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.footer-cta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.2rem;
  padding-block: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-cta h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); }
.footer-cta p { color: rgba(255,255,255,.66); }
.footer-main { position: relative; z-index: 1; display: grid; gap: 2rem; padding-block: 3rem; }
.footer-brand img { width: 230px; }
.footer-brand p { max-width: 420px; margin-top: 1rem; color: rgba(255,255,255,.63); }
.footer-column h3 { margin-bottom: 1rem; color: var(--white); font-size: 1rem; letter-spacing: .02em; }
.footer-links { display: grid; gap: .65rem; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: rgba(255,255,255,.68); transition: color var(--transition), transform var(--transition); }
.footer-links a:hover { color: var(--yellow-300); transform: translateX(3px); }
.footer-contact { display: grid; gap: .8rem; }
.footer-contact a, .footer-contact div { display: flex; gap: .65rem; color: rgba(255,255,255,.7); }
.footer-contact svg { width: 18px; flex: 0 0 auto; margin-top: .25rem; color: var(--yellow-300); }
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding-block: 1.25rem;
  color: rgba(255,255,255,.48);
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-legal a:hover { color: var(--white); }

.floating-actions {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(18px, calc(env(safe-area-inset-bottom) + 14px));
  z-index: 900;
  display: grid;
  gap: .75rem;
}
.float-btn {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(0,0,0,.24);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-btn::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid currentColor;
  border-radius: inherit;
  opacity: .3;
  animation: ripple 3s ease-out infinite;
}
.float-btn:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 18px 40px rgba(0,0,0,.28); }
.float-btn img { width: 25px; height: 25px; }
.float-whatsapp { background: #16a564; }
.float-call { background: var(--blue-700); }
.float-tooltip {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  transform: translate(6px,-50%);
  opacity: 0;
  visibility: hidden;
  padding: .45rem .65rem;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 7px;
  font-size: .75rem;
  font-weight: 760;
  white-space: nowrap;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.float-btn:hover .float-tooltip, .float-btn:focus-visible .float-tooltip { opacity: 1; visibility: visible; transform: translate(0,-50%); }

.back-to-top {
  position: fixed;
  left: max(14px, env(safe-area-inset-left));
  bottom: max(18px, calc(env(safe-area-inset-bottom) + 14px));
  z-index: 850;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  color: var(--white);
  background: var(--navy-950);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  background: rgba(3,14,23,.92);
  transition: opacity .2s ease, visibility .2s;
}
.lightbox.is-open { visibility: visible; opacity: 1; }
.lightbox-dialog { position: relative; width: min(100%, 1000px); max-height: 92vh; padding: 1rem; background: var(--white); border-radius: 16px; }
.lightbox img { width: 100%; max-height: calc(92vh - 90px); object-fit: contain; background: var(--steel-100); border-radius: 10px; }
.lightbox-caption { padding: .8rem .2rem 0; color: var(--navy-950); font-weight: 800; }
.lightbox-close { position: absolute; top: -14px; right: -10px; display: grid; width: 44px; height: 44px; place-items: center; color: var(--white); background: var(--blue-700); border-radius: 50%; cursor: pointer; font-size: 1.4rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.from-left { transform: translateX(-28px); }
.reveal.from-right { transform: translateX(28px); }
.reveal.is-visible { opacity: 1; transform: translate(0,0); }
.stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: .4s; }

@keyframes ripple {
  0% { transform: scale(.85); opacity: .35; }
  70%,100% { transform: scale(1.35); opacity: 0; }
}

:focus-visible { outline: 3px solid var(--yellow-500); outline-offset: 3px; }

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

/* Contrast corrections for light cards placed inside dark sections */
.section-dark .industry-card h3,
.section-blue .industry-card h3,
.section-dark .value-card h3,
.section-blue .value-card h3 { color: var(--navy-950); }
.section-dark .industry-card p,
.section-blue .industry-card p,
.section-dark .value-card p,
.section-blue .value-card p { color: var(--muted); }
.section-dark .table-wrap { background: var(--white); }
.section-dark .table-wrap td { color: var(--ink); }
.section-dark .table-wrap tbody tr:nth-child(odd) { background: var(--white); }
