:root {
  --bg: #edf3f8;
  --bg-2: #e6edf5;
  --surface: #ffffff;
  --surface-2: #f7fafe;
  --surface-3: #eef4fa;

  --text: #0f172a;
  --muted: #5f6b7a;
  --line: rgba(15, 23, 42, 0.08);

  --blue-1: #174b8c;
  --blue-2: #1d658f;
  --blue-3: #2f8ca9;
  --accent: #2f8ca9;

  --white: #ffffff;
  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.12);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;

  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f4f8fc 0%, #eef3f8 100%);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--blue-1);
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

/* =========================
   HEADER
========================= */

.site-header {
  padding: 22px 0 0;
  z-index: 80;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 82px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav > a,
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 2px;
  color: var(--text);
  font-size: 0.90rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.nav-link {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav > a::after,
.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-1), var(--blue-3));
  transition: width 0.22s ease;
}

.nav > a:hover::after,
.nav > a:focus-visible::after,
.nav-link:hover::before,
.nav-link:focus-visible::before,
.has-dropdown:focus-within > .nav-link::before {
  width: 100%;
}

.nav > a:hover,
.nav > a:focus-visible,
.nav-link:hover,
.nav-link:focus-visible,
.has-dropdown:focus-within > .nav-link {
  color: var(--blue-1);
}

.btn-contact {
  padding: 11px 18px !important;
  border-radius: var(--radius-pill);
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-3));
  font-weight: 800 !important;
  box-shadow: 0 10px 24px rgba(23, 75, 140, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-contact::after {
  display: none;
}

.btn-contact:hover,
.btn-contact:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(23, 75, 140, 0.28);
  color: #ffffff !important;
}

/* =========================
   DROPDOWNS
========================= */

.nav-item {
  position: relative;
}

.nav-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.has-dropdown:hover > .nav-link::after,
.has-dropdown:focus-within > .nav-link::after,
.has-dropdown.is-open > .nav-link::after {
  transform: rotate(225deg) translateY(-1px);
}

.has-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 380px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
  z-index: 120;
}

.nav-dropdown-small {
  width: 290px;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.95);
  border-left: 1px solid rgba(255, 255, 255, 0.95);
  transform: translateX(-50%) rotate(45deg);
}

.has-dropdown:hover > .nav-dropdown,
.has-dropdown:focus-within > .nav-dropdown,
.has-dropdown.is-open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  transition: background-color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
  border: 1px solid transparent;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(23, 75, 140, 0.05);
  border-color: rgba(23, 75, 140, 0.08);
  transform: translateX(2px);
}

.dropdown-title {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

.dropdown-text {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* =========================
   INTRO
========================= */

.intro-section {
  padding: 28px 0 0;
  position: relative;
}

.intro-section::before {
  content: "";
  position: absolute;
  inset: -90px -120px;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(
      130deg,
      transparent 0%,
      rgba(47, 140, 169, 0.16) 32%,
      rgba(23, 75, 140, 0.10) 46%,
      transparent 64%
    );
  clip-path: polygon(
    32% 0%,
    100% 0%,
    100% 72%,
    58% 100%,
    14% 74%
  );
}

.intro-card {
  position: relative;
  overflow: hidden;
  padding: 44px 44px 40px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,250,254,0.96));
}

.intro-tech-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    linear-gradient(rgba(23, 75, 140, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 75, 140, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent 90%);
}

.intro-tech-glow {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,140,169,0.14), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.intro-topbar,
.intro-grid {
  position: relative;
  z-index: 1;
}

.intro-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.intro-kicker {
  color: var(--blue-2);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(23, 75, 140, 0.06);
  border: 1px solid rgba(23, 75, 140, 0.10);
  color: var(--blue-1);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.intro-eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.intro-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 780px;
  color: var(--text);
}

.intro-copy h1 span {
  display: block;
}

.intro-title-accent {
  color: var(--blue-1);
}

.intro-lead {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.intro-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-3));
  box-shadow: 0 10px 24px rgba(23, 75, 140, 0.18);
  border: 0;
}

.btn-secondary {
  color: var(--blue-1);
  border: 1px solid rgba(23, 75, 140, 0.12);
  background: rgba(255,255,255,0.7);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-1px);
}

.intro-service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.intro-service-item {
  position: relative;
  min-height: 170px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(244,248,252,0.96));
  border: 1px solid rgba(23, 75, 140, 0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.intro-service-item::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(23, 75, 140, 0.09);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(23,75,140,0.08), rgba(47,140,169,0.06));
}

.intro-service-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue-2);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-service-item strong {
  display: block;
  margin-bottom: 8px;
  padding-right: 34px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.intro-service-item span {
  display: block;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.intro-panel {
  position: relative;
  overflow: hidden;
  padding: 20px 22px;
  border-radius: 22px;
}

.intro-panel-tech {
  background:
    linear-gradient(180deg, rgba(20, 55, 96, 0.98), rgba(18, 43, 74, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 38px rgba(23, 75, 140, 0.18);
}

.intro-panel-tech::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 100%);
  pointer-events: none;
}

.intro-panel-head,
.intro-panel-row,
.intro-panel-footer {
  position: relative;
  z-index: 1;
}

.intro-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.intro-panel-tag {
  color: #dff5ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8dddf4;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.intro-panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.intro-panel-row span {
  color: rgba(237, 247, 255, 0.80);
  font-weight: 600;
}

.intro-panel-row strong {
  color: #ffffff;
  font-size: 0.98rem;
  text-align: right;
}

.intro-panel-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(237, 247, 255, 0.76);
  font-size: 0.84rem;
}

/* =========================
   ABOUT
========================= */

.about-section {
  margin-top: 84px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
}

.about-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-2);
}

.about-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.about-copy h2 span {
  display: block;
}

.about-title-accent {
  color: var(--blue-1);
}

.about-lead {
  margin-bottom: 18px;
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.8;
}

.about-copy p {
  margin: 0 0 16px;
  line-height: 1.8;
  color: var(--muted);
}

.about-copy strong {
  color: var(--text);
}

.about-panel {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(20, 55, 96, 0.98), rgba(18, 43, 74, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 38px rgba(23, 75, 140, 0.16);
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.72), transparent);
  pointer-events: none;
}

.about-stat {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.about-stat:last-child {
  margin-bottom: 0;
}

.about-stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
}

.about-stat-label {
  font-size: 0.9rem;
  color: rgba(238, 246, 255, 0.78);
  line-height: 1.6;
}

/* =========================
   SERVICES
========================= */

.services-section {
  margin-top: 90px;
}

.services-head {
  margin-bottom: 28px;
  max-width: 900px;
}

.services-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services-head h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.services-head h2 span {
  display: block;
}

.services-title-accent {
  color: var(--blue-1);
}

.services-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 24px;
  border: 1px solid rgba(23, 75, 140, 0.10);
  box-shadow: var(--shadow-md);
  isolation: isolate;
  transform: translateY(0);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.12);
  border-color: rgba(23, 75, 140, 0.18);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.service-card:hover::before,
.service-card:focus-visible::before {
  transform: scale(1.02);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(20, 55, 96, 0.18) 40%, rgba(15, 37, 62, 0.82) 100%);
}

.service-card-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.40;
  background:
    linear-gradient(135deg, transparent 0 64%, rgba(255, 255, 255, 0.16) 72%, transparent 80%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.95));
}

.service-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 26px;
}

.service-card-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #d9f3ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0 0 18px;
  color: rgba(236, 244, 250, 0.90);
  line-height: 1.75;
  font-size: 0.98rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
}

.service-card-link::after {
  content: "↗";
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.service-card:hover .service-card-link::after,
.service-card:focus-visible .service-card-link::after {
  transform: translate(2px, -2px);
}

.service-card-software::before {
  background-image:
    linear-gradient(135deg, rgba(23, 75, 140, 0.12), rgba(47, 140, 169, 0.08)),
    url("/assets/images/service-software.jpg");
}

.service-card-embedded::before {
  background-image:
    linear-gradient(135deg, rgba(23, 75, 140, 0.12), rgba(47, 140, 169, 0.08)),
    url("/assets/images/service-embedded.jpg");
}

.service-card-web::before {
  background-image:
    linear-gradient(135deg, rgba(23, 75, 140, 0.12), rgba(47, 140, 169, 0.08)),
    url("/assets/images/service-web.jpg");
}

/* =========================
   FOOTER
========================= */

.site-footer {
  margin-top: 120px;
  padding: 60px 0 32px;
  background: #dde7f0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  justify-self: start;
}

.footer-logo-link img {
  width: 164px;
  height: auto;
  object-fit: contain;
}

.footer-links {
  justify-self: center;
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col-title {
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--blue-1);
}

.footer-contact {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-style: normal;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--muted);
  opacity: 0.85;
  transition: color 0.2s ease;
}

.footer-contact-item:hover,
.footer-contact-item:focus-visible {
  color: var(--blue-1);
}

.footer-icon {
  width: 15px;
  height: 15px;
  opacity: 0.7;
}

.footer-icon svg {
  width: 15px;
  height: 15px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(15,23,42,0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* =========================
   MOTION
========================= */

.site-header,
.intro-card,
.intro-service-item,
.intro-panel,
.about-panel,
.service-card,
.footer-inner {
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.intro-card:hover {
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.intro-service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  border-color: rgba(23, 75, 140, 0.14);
}

.intro-panel:hover,
.about-panel:hover {
  box-shadow: 0 18px 32px rgba(23, 75, 140, 0.16);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.build-text .build-line {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  will-change: opacity, transform;
}

.build-text .build-line.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.build-text .build-line:nth-child(1) { transition-delay: 0.02s; }
.build-text .build-line:nth-child(2) { transition-delay: 0.10s; }
.build-text .build-line:nth-child(3) { transition-delay: 0.18s; }

.intro-topbar.reveal { transition-delay: 0.02s; }
.intro-eyebrow.reveal { transition-delay: 0.06s; }
.intro-lead.reveal { transition-delay: 0.10s; }
.intro-actions.reveal { transition-delay: 0.14s; }
.intro-service-item:nth-child(1).reveal { transition-delay: 0.08s; }
.intro-service-item:nth-child(2).reveal { transition-delay: 0.14s; }
.intro-service-item:nth-child(3).reveal { transition-delay: 0.20s; }
.intro-panel.reveal { transition-delay: 0.12s; }

/* =========================
   COOKIE BANNER
========================= */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,248,252,0.98));
  border: 1px solid rgba(23, 75, 140, 0.10);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.cookie-banner-copy {
  min-width: 0;
}

.cookie-banner-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-banner-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.cookie-btn:hover,
.cookie-btn:focus-visible {
  transform: translateY(-1px);
}

.cookie-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-3));
  box-shadow: 0 10px 24px rgba(23, 75, 140, 0.18);
}

.cookie-btn-secondary {
  color: var(--blue-1);
  background: rgba(255,255,255,0.72);
  border-color: rgba(23, 75, 140, 0.12);
}

/* =========================
   CONTACT PAGE
========================= */

.contact-hero-section {
  padding: 28px 0 0;
  position: relative;
}

.contact-hero-section::before {
  content: "";
  position: absolute;
  inset: -80px -100px;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(
      220deg,
      transparent 0%,
      rgba(23, 75, 140, 0.14) 30%,
      rgba(47, 140, 169, 0.09) 44%,
      transparent 62%
    );
  clip-path: polygon(
    0 18%,
    72% 0,
    100% 30%,
    100% 100%,
    18% 100%
  );
}

.contact-hero-card {
  position: relative;
  overflow: hidden;
  padding: 42px 42px 38px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,250,254,0.96));
}

.contact-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(23, 75, 140, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 75, 140, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent 90%);
}

.contact-hero-card::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,140,169,0.14), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.contact-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue-2);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.contact-hero-copy h1 span {
  display: block;
}

.contact-lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.contact-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: rgba(23, 75, 140, 0.06);
  border: 1px solid rgba(23, 75, 140, 0.10);
  color: var(--blue-1);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-side-panel {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(20, 55, 96, 0.98), rgba(18, 43, 74, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 38px rgba(23, 75, 140, 0.18);
}

.contact-side-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.72), transparent);
  pointer-events: none;
}

.contact-side-head,
.contact-side-item,
.contact-side-note {
  position: relative;
  z-index: 1;
}

.contact-side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.contact-side-tag {
  color: #dff5ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-side-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8dddf4;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.08);
}

.contact-side-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.contact-side-item:last-of-type {
  border-bottom: 0;
}

.contact-side-label {
  color: rgba(237, 247, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-side-item a,
.contact-side-item strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.contact-side-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(237, 247, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-main-section {
  margin-top: 80px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
}

.contact-form-card,
.contact-info-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,250,254,0.96));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-md);
}

.contact-card-top {
  margin-bottom: 22px;
}

.contact-card-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue-2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card-top h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.contact-card-top p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-form {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(23, 75, 140, 0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
  color: var(--text);
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.form-field textarea {
  min-height: 180px;
  padding: 16px;
  resize: vertical;
}

.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue-1) 50%),
    linear-gradient(135deg, var(--blue-1) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(23, 75, 140, 0.30);
  box-shadow: 0 0 0 4px rgba(23, 75, 140, 0.08);
  background: #ffffff;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-info-list {
  display: grid;
  gap: 16px;
}

.contact-info-item {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(244,248,252,0.96));
  border: 1px solid rgba(23, 75, 140, 0.09);
}

.contact-info-item h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.3;
}

.contact-info-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-status-section {
  padding: 28px 0 0;
  position: relative;
}

.contact-status-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px 24px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-md);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,250,254,0.96));
}

.contact-status-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(23, 75, 140, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 75, 140, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent 90%);
}

.contact-status-success {
  border-color: rgba(23, 75, 140, 0.10);
  box-shadow: 0 18px 36px rgba(23, 75, 140, 0.10);
}

.contact-status-success::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,140,169,0.14), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.contact-status-icon,
.contact-status-copy {
  position: relative;
  z-index: 1;
}

.contact-status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-3));
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(23, 75, 140, 0.22);
}

.contact-status-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-status-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.contact-status-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
}

@media (max-width: 640px) {
  .contact-status-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 18px;
    border-radius: 20px;
  }

  .contact-status-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 1.4rem;
  }

  .contact-status-copy h2 {
    font-size: 1.3rem;
  }
}

/* =========================
   SERVICE PAGE - WEB
========================= */

.service-page-hero {
  padding: 28px 0 0;
  position: relative;
}

.service-page-hero::before {
  content: "";
  position: absolute;
  inset: -90px -110px;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(
      140deg,
      transparent 0%,
      rgba(23, 75, 140, 0.14) 28%,
      rgba(47, 140, 169, 0.10) 44%,
      transparent 66%
    );
  clip-path: polygon(
    12% 0%,
    100% 0%,
    100% 76%,
    62% 100%,
    0% 74%
  );
}

.service-page-card {
  position: relative;
  overflow: hidden;
  padding: 42px 42px 38px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,250,254,0.96));
}

.service-page-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(23, 75, 140, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 75, 140, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent 90%);
}

.service-page-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.service-page-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue-2);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-page-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.service-page-copy h1 span {
  display: block;
}

.service-page-title-accent {
  color: var(--blue-1);
}

.service-page-lead {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-page-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.service-page-actions-center {
  justify-content: center;
}

.service-page-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.service-page-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: rgba(23, 75, 140, 0.06);
  border: 1px solid rgba(23, 75, 140, 0.10);
  color: var(--blue-1);
  font-size: 0.82rem;
  font-weight: 700;
}

.service-page-panel {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(20, 55, 96, 0.98), rgba(18, 43, 74, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 38px rgba(23, 75, 140, 0.18);
}

.service-page-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.72), transparent);
  pointer-events: none;
}

.service-page-panel-head,
.service-page-panel-row,
.service-page-panel-footer {
  position: relative;
  z-index: 1;
}

.service-page-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.service-page-panel-tag {
  color: #dff5ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-page-panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8dddf4;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.08);
}

.service-page-panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.service-page-panel-row span {
  color: rgba(237, 247, 255, 0.80);
  font-weight: 600;
}

.service-page-panel-row strong {
  color: #ffffff;
  font-size: 0.98rem;
  text-align: right;
}

.service-page-panel-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(237, 247, 255, 0.76);
  font-size: 0.84rem;
}

.service-explainer-section,
.service-split-section,
.service-process-section,
.service-benefits-section,
.service-cta-section {
  margin-top: 84px;
}

.service-section-head {
  margin-bottom: 28px;
  max-width: 900px;
}

.service-section-head-narrow {
  max-width: 760px;
}

.service-section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-section-head h2,
.service-split-copy h2,
.service-benefits-copy h2,
.service-cta-card h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.service-section-lead,
.service-split-copy p,
.service-benefits-copy p,
.service-cta-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-feature-card {
  padding: 24px 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,248,252,0.98));
  border: 1px solid rgba(23, 75, 140, 0.08);
  box-shadow: var(--shadow-md);
}

.service-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-3));
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.service-feature-card h3,
.service-process-card h3,
.service-benefit-stat strong {
  margin: 0 0 10px;
  color: var(--text);
}

.service-feature-card p,
.service-process-card p,
.service-benefit-stat span {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.service-check-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.service-check-item {
  position: relative;
  padding: 14px 16px 14px 44px;
  border-radius: 16px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(23, 75, 140, 0.08);
  color: var(--text);
  font-weight: 600;
}

.service-check-item::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-1);
  font-weight: 800;
}

.service-image-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 24px;
  border: 1px solid rgba(23, 75, 140, 0.10);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.service-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-image-card-web::before {
  background-image:
    linear-gradient(135deg, rgba(23, 75, 140, 0.14), rgba(47, 140, 169, 0.08)),
    url("/assets/images/service-web-detail.jpg");
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(18,43,74,0.18) 42%, rgba(15,37,62,0.84) 100%);
}

.service-image-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
  padding: 26px;
}

.service-image-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #d9f3ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-image-content strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.15;
}

.service-image-content p {
  margin: 0;
  color: rgba(236, 244, 250, 0.90);
  line-height: 1.7;
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-process-card {
  padding: 22px 20px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,248,252,0.98));
  border: 1px solid rgba(23, 75, 140, 0.08);
  box-shadow: var(--shadow-sm);
}

.service-process-step {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-benefits-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  padding: 34px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,248,252,0.98));
  border: 1px solid rgba(23, 75, 140, 0.08);
  box-shadow: var(--shadow-md);
}

.service-benefits-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-benefit-stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(23, 75, 140, 0.08);
}

.service-benefit-stat strong {
  display: block;
  font-size: 1rem;
}

.service-cta-card {
  padding: 34px;
  border-radius: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(20, 55, 96, 0.98), rgba(18, 43, 74, 0.96));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 20px 40px rgba(23, 75, 140, 0.18);
}

.service-cta-card .service-section-kicker,
.service-cta-card h2,
.service-cta-card p {
  color: #ffffff;
}

.service-cta-card p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(237, 247, 255, 0.82);
}

.service-cta-card .service-page-actions {
  margin-top: 24px;
}

@media (max-width: 900px) {
  .service-page-grid,
  .service-feature-grid,
  .service-split-grid,
  .service-process-grid,
  .service-benefits-card {
    grid-template-columns: 1fr;
  }

  .service-benefits-stats {
    grid-template-columns: 1fr 1fr;
  }

  .service-page-card,
  .service-benefits-card,
  .service-cta-card {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .service-image-card,
  .service-image-content {
    min-height: 320px;
  }

  .service-page-actions {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .service-page-card,
  .service-benefits-card,
  .service-cta-card {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .service-feature-card,
  .service-process-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .service-benefits-stats {
    grid-template-columns: 1fr;
  }

  .service-image-card,
  .service-image-content {
    min-height: 260px;
  }

  .service-image-content {
    padding: 18px;
  }

  .service-image-content strong {
    font-size: 1.2rem;
  }

  .service-page-copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

/* =========================
   SERVICE PAGE - SOFTWARE
========================= */

.service-software-hero::before {
  content: "";
  position: absolute;
  inset: -90px -110px;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(
      138deg,
      transparent 0%,
      rgba(23, 75, 140, 0.15) 26%,
      rgba(47, 140, 169, 0.11) 42%,
      transparent 66%
    );
  clip-path: polygon(
    8% 0%,
    100% 0%,
    100% 76%,
    68% 100%,
    0% 78%
  );
}

.service-image-band-section {
  margin-top: 84px;
}

.service-dual-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-image-card-software::before {
  background-image:
    linear-gradient(135deg, rgba(23, 75, 140, 0.14), rgba(47, 140, 169, 0.08)),
    url("/assets/images/service-software-detail.jpg");
}

.service-image-card-software-desktop::before {
  background-image:
    linear-gradient(135deg, rgba(23, 75, 140, 0.14), rgba(47, 140, 169, 0.08)),
    url("/assets/images/service-software-desktop.jpg");
}

.service-image-card-software-mobile::before {
  background-image:
    linear-gradient(135deg, rgba(23, 75, 140, 0.14), rgba(47, 140, 169, 0.08)),
    url("/assets/images/service-software-mobile.jpg");
}

/* =========================
   SERVICE PAGE - EMBEDDED
========================= */

.service-embedded-hero::before {
  content: "";
  position: absolute;
  inset: -90px -110px;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(
      142deg,
      transparent 0%,
      rgba(23, 75, 140, 0.16) 24%,
      rgba(47, 140, 169, 0.10) 40%,
      transparent 66%
    );
  clip-path: polygon(
    10% 0%,
    100% 0%,
    100% 78%,
    64% 100%,
    0% 74%
  );
}

.service-image-card-embedded::before {
  background-image:
    linear-gradient(135deg, rgba(23, 75, 140, 0.14), rgba(47, 140, 169, 0.08)),
    url("/assets/images/service-embedded-detail.jpg");
}

.service-image-card-embedded-control::before {
  background-image:
    linear-gradient(135deg, rgba(23, 75, 140, 0.14), rgba(47, 140, 169, 0.08)),
    url("/assets/images/service-embedded-control.jpg");
}

.service-image-card-embedded-diagnostics::before {
  background-image:
    linear-gradient(135deg, rgba(23, 75, 140, 0.14), rgba(47, 140, 169, 0.08)),
    url("/assets/images/service-embedded-diagnostics.jpg");
}

/* =========================================
   EMS APPLE-STYLE PRODUCT PAGE
   Add at the very bottom of your CSS
========================================= */

.ems-apple-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 140, 169, 0.12), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f8 24%, #f6f8fb 52%, #edf2f7 100%);
  color: #0f172a;
}

.ems-apple-page section {
  position: relative;
}

.ems-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #5f6b7a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ems-section-copy,
.ems-showcase-head {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.ems-section-copy-wide {
  max-width: 980px;
}

.ems-section-copy h2,
.ems-showcase-head h2,
.ems-split-copy h2,
.ems-cta-box h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  color: #0f172a;
}

.ems-section-copy p,
.ems-showcase-head p,
.ems-split-copy p,
.ems-cta-box p {
  margin: 0;
  color: #5f6b7a;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.85;
}

/* HERO */

.ems-hero {
  padding: 56px 0 34px;
}

.ems-hero-inner {
  text-align: center;
}

.ems-hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  color: #0f172a;
}

.ems-hero-subtitle {
  max-width: 760px;
  margin: 20px auto 0;
  color: #5f6b7a;
  font-size: clamp(1.08rem, 1.9vw, 1.4rem);
  line-height: 1.7;
}

.ems-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.ems-hero-media {
  position: relative;
  margin-top: 56px;
  min-height: 620px;
}

.ems-device-main,
.ems-device-float {
  position: absolute;
  border-radius: 36px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.9);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.ems-device-main {
  left: 50%;
  top: 0;
  width: min(880px, 92%);
  height: 560px;
  transform: translateX(-50%);
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02)),
    url("/assets/images/ems-hero-main.jpg");
}

.ems-device-main::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent 82%);
  pointer-events: none;
}

.ems-device-float {
  width: 220px;
  height: 220px;
  bottom: 10px;
  backdrop-filter: blur(10px);
  background-size: cover;
}

.ems-device-float-left {
  left: 4%;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02)),
    url("/assets/images/ems-module-side.jpg");
}

.ems-device-float-right {
  right: 4%;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02)),
    url("/assets/images/ems-platform-card.jpg");
}

/* INTRO BAND */

.ems-intro-band {
  padding: 88px 0 40px;
}

/* SHOWCASE SECTIONS */

.ems-showcase {
  padding: 100px 0;
}

.ems-showcase-light {
  background: linear-gradient(180deg, #f8fbfe 0%, #eef4f9 100%);
}

.ems-showcase-dark {
  background:
    radial-gradient(circle at 50% 12%, rgba(80, 164, 191, 0.16), transparent 24%),
    linear-gradient(180deg, #07111d 0%, #0b1727 100%);
}

.ems-showcase-dark .ems-eyebrow,
.ems-showcase-dark .ems-showcase-head p,
.ems-showcase-dark .ems-showcase-head h2,
.ems-showcase-dark .ems-flow-item strong,
.ems-showcase-dark .ems-flow-item span {
  color: #ffffff;
}

.ems-showcase-dark .ems-showcase-head p,
.ems-showcase-dark .ems-eyebrow {
  opacity: 0.78;
}

.ems-showcase-media {
  margin-top: 44px;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(255,255,255,0.08);
}

.ems-showcase-media-large {
  min-height: 580px;
}

.ems-showcase-media-tall {
  min-height: 620px;
}

.ems-scene-monitoring,
.ems-scene-protection {
  min-height: inherit;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ems-scene-monitoring {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02)),
    url("/assets/images/ems-monitoring-large.jpg");
}

.ems-scene-protection {
  background-image:
    linear-gradient(180deg, rgba(7,17,29,0.18), rgba(7,17,29,0.36)),
    url("/assets/images/ems-protection-large.jpg");
}

.ems-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.ems-stat {
  padding: 26px 20px;
  text-align: center;
  border-radius: 26px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

.ems-showcase-dark .ems-stat,
.ems-pedigree .ems-stat {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}

.ems-showcase-dark .ems-stat strong,
.ems-showcase-dark .ems-stat span,
.ems-pedigree .ems-stat strong,
.ems-pedigree .ems-stat span {
  color: #ffffff;
}

.ems-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.ems-stat span {
  display: block;
  color: #5f6b7a;
  font-size: 0.94rem;
  line-height: 1.6;
}

.ems-flow-inline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.ems-flow-item {
  padding: 22px 18px;
  border-radius: 22px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.ems-flow-item span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.ems-flow-item strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

/* SPLIT SECTION */

.ems-split-feature {
  padding: 110px 0;
  background: linear-gradient(180deg, #f8fbfd 0%, #f0f5fa 100%);
}

.ems-split-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: center;
}

.ems-split-copy {
  max-width: 520px;
}

.ems-clean-points {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.ems-clean-points li {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  color: #1e293b;
}

.ems-split-media {
  min-height: 620px;
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
}

.ems-platform-screen {
  width: 100%;
  height: 100%;
  min-height: 620px;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    url("/assets/images/ems-platform-screen.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* SENSORS */

.ems-sensors-block {
  padding: 104px 0;
  background: linear-gradient(180deg, #edf3f8 0%, #f6f9fc 100%);
}

.ems-chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 980px;
  margin: 34px auto 0;
}

.ems-chip-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
  color: #1e293b;
  font-weight: 700;
  text-align: center;
}

.ems-chip-grid .ems-chip-accent {
  background: linear-gradient(135deg, rgba(23,75,140,0.10), rgba(47,140,169,0.12));
  color: #174b8c;
  border-color: rgba(23, 75, 140, 0.10);
}

/* GALLERY */

.ems-gallery-band {
  padding: 110px 0;
  background: #ffffff;
}

.ems-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 22px;
  margin-top: 38px;
}

.ems-gallery-card {
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(180deg, #f9fbfd, #edf3f8);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.08);
}

.ems-gallery-card-large {
  min-height: 640px;
}

.ems-gallery-card:not(.ems-gallery-card-large) {
  min-height: 640px;
}

.ems-gallery-media {
  height: 78%;
  min-height: 360px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ems-gallery-media-main {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    url("/assets/images/ems-gallery-main.jpg");
}

.ems-gallery-media-dash {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    url("/assets/images/ems-gallery-dash.jpg");
}

.ems-gallery-media-tool {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    url("/assets/images/ems-gallery-tool.jpg");
}

.ems-gallery-copy {
  padding: 22px 22px 24px;
}

.ems-gallery-copy span {
  display: inline-block;
  margin-bottom: 8px;
  color: #5f6b7a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ems-gallery-copy strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #0f172a;
}

/* SPEC GRID */

.ems-specs-band {
  padding: 104px 0;
  background: linear-gradient(180deg, #f6f9fc 0%, #eef3f8 100%);
}

.ems-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.ems-spec-card {
  padding: 30px 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.ems-spec-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.ems-spec-card p {
  margin: 0;
  color: #5f6b7a;
  line-height: 1.8;
}

/* PEDIGREE */

.ems-pedigree {
  padding: 112px 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(80, 164, 191, 0.14), transparent 24%),
    linear-gradient(180deg, #08111c 0%, #0b1727 100%);
}

.ems-pedigree .ems-section-copy h2,
.ems-pedigree .ems-section-copy p,
.ems-pedigree .ems-eyebrow {
  color: #ffffff;
}

.ems-pedigree .ems-section-copy p,
.ems-pedigree .ems-eyebrow {
  opacity: 0.78;
}

/* CTA */

.ems-cta-final {
  padding: 110px 0 120px;
  background: linear-gradient(180deg, #f8fbfd 0%, #eef3f8 100%);
}

.ems-cta-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 52px 42px;
  text-align: center;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(47,140,169,0.16), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(244,248,252,0.98));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 26px 56px rgba(15, 23, 42, 0.10);
}

/* BUTTON REFINEMENT FOR THIS PAGE */

.ems-apple-page .btn-primary,
.ems-apple-page .btn-secondary {
  min-height: 52px;
  padding: 0 22px;
  font-size: 0.96rem;
}

.ems-apple-page .btn-secondary {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(23, 75, 140, 0.12);
  color: #174b8c;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .ems-hero-media {
    min-height: 560px;
  }

  .ems-device-main {
    height: 500px;
  }

  .ems-device-float {
    width: 180px;
    height: 180px;
  }

  .ems-gallery-grid {
    grid-template-columns: 1fr;
  }

  .ems-gallery-card,
  .ems-gallery-card-large,
  .ems-gallery-card:not(.ems-gallery-card-large) {
    min-height: 520px;
  }
}

@media (max-width: 980px) {
  .ems-split-grid,
  .ems-spec-grid,
  .ems-stat-row {
    grid-template-columns: 1fr;
  }

  .ems-flow-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ems-showcase-media-large,
  .ems-showcase-media-tall,
  .ems-split-media,
  .ems-platform-screen {
    min-height: 480px;
  }

  .ems-hero-media {
    min-height: 500px;
  }

  .ems-device-main {
    width: min(92%, 760px);
    height: 420px;
  }

  .ems-device-float {
    width: 150px;
    height: 150px;
    border-radius: 28px;
  }

  .ems-device-float-left {
    left: 2%;
  }

  .ems-device-float-right {
    right: 2%;
  }
}

@media (max-width: 720px) {
  .ems-hero {
    padding: 34px 0 20px;
  }

  .ems-hero-media {
    min-height: 380px;
    margin-top: 36px;
  }

  .ems-device-main {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 300px;
    transform: none;
    border-radius: 28px;
  }

  .ems-device-float {
    display: none;
  }

  .ems-showcase,
  .ems-split-feature,
  .ems-sensors-block,
  .ems-gallery-band,
  .ems-specs-band,
  .ems-pedigree,
  .ems-cta-final,
  .ems-intro-band {
    padding: 72px 0;
  }

  .ems-flow-inline {
    grid-template-columns: 1fr;
  }

  .ems-chip-grid {
    gap: 10px;
  }

  .ems-chip-grid span {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .ems-cta-box {
    padding: 36px 22px;
    border-radius: 28px;
  }
}

/* =========================
   ACCENT BACKGROUND SHAPES
========================= */

body .bg-shape-a,
body .bg-shape-b {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.bg-shape-a {
  top: 90px;
  right: -140px;
  width: 520px;
  height: 520px;
  opacity: 0.88;
  background:
    linear-gradient(145deg, rgba(23, 75, 140, 0.22), rgba(47, 140, 169, 0.14));
  clip-path: polygon(
    18% 0%,
    100% 0%,
    82% 86%,
    0% 100%
  );
  filter: blur(2px);
  transform: rotate(-8deg);
  animation: shapeFloatA 22s ease-in-out infinite alternate;
}

.bg-shape-b {
  left: -180px;
  top: 38%;
  width: 420px;
  height: 420px;
  opacity: 0.7;
  background:
    linear-gradient(135deg, rgba(47, 140, 169, 0.18), rgba(23, 75, 140, 0.10));
  clip-path: polygon(
    0% 16%,
    88% 0%,
    100% 68%,
    18% 100%
  );
  filter: blur(1px);
  transform: rotate(10deg);
  animation: shapeFloatB 26s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: -8%;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(
      125deg,
      transparent 0%,
      rgba(23, 75, 140, 0.16) 18%,
      rgba(47, 140, 169, 0.12) 28%,
      transparent 42%
    ),
    linear-gradient(
      225deg,
      transparent 0%,
      rgba(29, 101, 143, 0.12) 22%,
      rgba(23, 75, 140, 0.10) 34%,
      transparent 50%
    ),
    linear-gradient(
      35deg,
      transparent 0%,
      rgba(47, 140, 169, 0.10) 52%,
      transparent 66%
    );
  clip-path: polygon(
    0 0,
    100% 0,
    100% 72%,
    84% 100%,
    0 100%
  );
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  will-change: transform;
  animation: accentFlow 34s ease-in-out infinite alternate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(rgba(23, 75, 140, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 75, 140, 0.014) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.42;
}

.section-divider {
  height: 1px;
  margin: 80px auto;
  width: min(1100px, calc(100% - 40px));
  background: linear-gradient(
    90deg,
    transparent,
    rgba(23,75,140,0.18),
    rgba(47,140,169,0.18),
    transparent
  );
}

@keyframes accentFlow {
  0% {
    transform: translate3d(-1%, -0.5%, 0) scale(1);
  }

  50% {
    transform: translate3d(0.8%, -0.3%, 0) scale(1.015);
  }

  100% {
    transform: translate3d(-0.6%, 0.8%, 0) scale(1.02);
  }
}

@keyframes shapeFloatA {
  0% {
    transform: rotate(-8deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(-5deg) translate3d(-12px, 14px, 0);
  }
}

@keyframes shapeFloatB {
  0% {
    transform: rotate(10deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(7deg) translate3d(14px, -10px, 0);
  }
}

.intro-tech-glow,
.contact-hero-card::after {
  animation: accentPulse 18s ease-in-out infinite alternate;
}

@keyframes accentPulse {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }

  100% {
    transform: scale(1.05) translate3d(0.8%, -0.8%, 0);
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after,
  .intro-tech-glow,
  .contact-hero-card::after,
  .reveal,
  .build-text .build-line,
  .site-header,
  .intro-card,
  .intro-service-item,
  .intro-panel,
  .about-panel,
  .service-card,
  .footer-inner,
  .btn-contact,
  .btn-primary,
  .btn-secondary {
    transition: none !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
    will-change: auto !important;
  }
}