:root {
  --brand: #0075b1;
  --brand-deep: #005a8c;
  --brand-soft: #e8f4fa;
  --muted: #818a91;
  --ink: #1a242b;
  --ink-soft: #3d4a54;
  --surface: #ffffff;
  --surface-alt: #f4f8fb;
  --line: rgba(26, 36, 43, 0.1);
  --shadow: 0 18px 50px rgba(0, 117, 177, 0.12);
  --radius: 18px;
  --max: 1120px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-ready .hero-showcase {
  opacity: 1;
  transform: none;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand-deep);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--brand);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.logo-link img {
  height: 42px;
  width: auto;
  display: block;
}

.logo-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav > a,
.site-nav .nav-dropdown-trigger {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 560;
  font-size: 0.95rem;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.site-nav .nav-dropdown-trigger:hover,
.site-nav .nav-dropdown-trigger[aria-current="page"],
.site-nav .nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--brand);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-trigger::after,
.nav-dropdown:hover .nav-dropdown-trigger::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  padding: 0.45rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(5, 58, 88, 0.14);
  display: grid;
  gap: 0.15rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s var(--ease),
    visibility 0.2s;
  z-index: 50;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.75rem;
  height: 0.75rem;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-dropdown-menu a:hover {
  background: var(--brand-soft);
  color: var(--brand-deep);
}

.nav-dropdown-menu img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.nav-dropdown-all {
  margin-top: 0.15rem;
  border-top: 1px solid var(--line);
  border-radius: 0 0 10px 10px !important;
  color: var(--brand) !important;
  font-size: 0.85rem !important;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.lang-switch a {
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--muted);
}

.lang-switch a.is-active {
  background: var(--brand);
  color: #fff;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  outline: none;
}

.hero--banners {
  min-height: auto;
  padding: 1.75rem 0 2.25rem;
  align-items: stretch;
}

.hero--banners .hero-inner {
  width: min(100% - 2.5rem, 1240px);
  margin-inline: auto;
}

.hero--banners .hero-controls {
  justify-content: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(0, 117, 177, 0.55), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 30%, rgba(129, 138, 145, 0.35), transparent 50%),
    linear-gradient(160deg, #053a58 0%, #0075b1 42%, #0a4f73 100%);
  animation: atmosphere 18s ease-in-out infinite alternate;
  transition: background 0.8s ease;
}

.hero--banners .hero-media,
.hero[data-active="0"] .hero-media {
  background:
    radial-gradient(ellipse 70% 55% at 80% 25%, rgba(56, 189, 248, 0.28), transparent 50%),
    radial-gradient(ellipse 60% 50% at 10% 70%, rgba(0, 117, 177, 0.45), transparent 55%),
    linear-gradient(155deg, #04344f 0%, #0a6fa3 48%, #0b4a6b 100%);
}

.hero[data-active="1"] .hero-media {
  background:
    radial-gradient(ellipse 65% 50% at 85% 20%, rgba(167, 139, 250, 0.28), transparent 50%),
    radial-gradient(ellipse 55% 45% at 15% 80%, rgba(0, 117, 177, 0.4), transparent 55%),
    linear-gradient(155deg, #2a1f4d 0%, #4c3d8f 45%, #134e6b 100%);
}

.hero[data-active="2"] .hero-media {
  background:
    radial-gradient(ellipse 70% 55% at 75% 30%, rgba(52, 211, 153, 0.22), transparent 50%),
    radial-gradient(ellipse 55% 45% at 20% 75%, rgba(0, 117, 177, 0.4), transparent 55%),
    linear-gradient(155deg, #053649 0%, #0a7599 48%, #0d5568 100%);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    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: 64px 64px;
  mask-image: radial-gradient(ellipse at 30% 40%, #000 15%, transparent 70%);
  opacity: 0.35;
}

@keyframes atmosphere {
  from {
    filter: saturate(1) hue-rotate(0deg);
    transform: scale(1);
  }
  to {
    filter: saturate(1.08) hue-rotate(-6deg);
    transform: scale(1.04);
  }
}

.hero-inner {
  width: min(100% - 2.5rem, 1240px);
  margin: 0 auto;
  padding: 0;
}

.hero-showcase {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.hero-stage {
  position: relative;
  min-height: 380px;
}

.hero-stage--banners {
  min-height: 0;
  aspect-ratio: 16 / 9;
  max-height: min(62vh, 620px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.hero-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: center;
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.985);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    visibility 0.7s;
  pointer-events: none;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide--banner {
  display: block;
  text-decoration: none;
  color: inherit;
  transform: scale(1.015);
}

.hero-slide--banner.is-active {
  position: absolute;
  inset: 0;
  transform: none;
}

.hero-slide--banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease);
}

.hero-slide--banner:hover img {
  transform: scale(1.02);
}

.hero-nav {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(8, 28, 42, 0.35);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s var(--ease);
}

.hero-nav:hover {
  background: rgba(8, 28, 42, 0.55);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-nav:active {
  transform: scale(0.96);
}

.hero-nav:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.hero-dots {
  display: flex;
  gap: 0.45rem;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
  transition: width 0.35s var(--ease), background 0.25s ease;
}

.hero-dots button.is-active {
  width: 28px;
  background: #fff;
}

.hero-progress {
  flex: 1;
  max-width: 160px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.hero-progress > span {
  display: block;
  height: 100%;
  width: 0;
  background: #fff;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease;
}

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

.btn-primary {
  background: #fff;
  color: var(--brand-deep);
}

.btn-primary:hover {
  background: var(--brand-soft);
  color: var(--brand-deep);
}

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

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

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

.btn-brand:hover {
  background: var(--brand-deep);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: rgba(0, 117, 177, 0.35);
}

.btn-outline:hover {
  background: var(--brand-soft);
  color: var(--brand-deep);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.section-head p {
  color: var(--ink-soft);
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Product list */
.product-list {
  display: grid;
  gap: 2.5rem;
}

.product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.product:last-child {
  border-bottom: 1px solid var(--line);
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.product-meta img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.product-meta h3 {
  margin: 0;
  font-size: 1.45rem;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.85rem 0 1.15rem;
}

.platform {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brand-deep);
  background: var(--brand-soft);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.store-badge {
  display: inline-flex;
  line-height: 0;
  border-radius: 6px;
  transition: opacity 0.2s ease, transform 0.2s var(--ease);
}

.store-badge:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.store-badge img {
  height: 40px;
  width: auto;
  display: block;
}

.product-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #0b4f73, #0075b1 55%, #6f7d86);
  aspect-ratio: 16 / 9;
  min-height: 0;
  box-shadow: var(--shadow);
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 0;
  transition: transform 0.8s var(--ease);
}

.product:hover .product-visual img {
  transform: scale(1.03);
}

.product--reverse {
  direction: rtl;
}

.product--reverse > * {
  direction: ltr;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.service-item {
  padding: 1.35rem 1.2rem;
  border-top: 3px solid var(--brand);
  background: #fff;
  min-height: 160px;
}

.service-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.service-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.service-item .num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

/* Home — what we build */
.build-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 5.5rem 0;
  color: #fff;
}

.build-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 80% at 0% 20%, rgba(56, 189, 248, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 60% at 100% 80%, rgba(0, 117, 177, 0.35), transparent 50%),
    linear-gradient(155deg, #04344f 0%, #0a6fa3 48%, #0b4a6b 100%);
}

.build-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 75%);
  opacity: 0.7;
}

.build-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem 3.5rem;
  align-items: start;
}

.build-copy {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.build-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.build-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  max-width: 12ch;
}

.build-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 28rem;
  line-height: 1.55;
}

.build-copy .btn-brand {
  margin-top: 0.5rem;
  background: #fff;
  color: var(--brand-deep);
}

.build-copy .btn-brand:hover {
  background: var(--brand-soft);
  color: var(--brand-deep);
}

.build-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.build-list li {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.35s var(--ease), border-color 0.35s ease;
}

.build-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.build-list li:hover {
  transform: translateX(6px);
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.build-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.48);
  padding-top: 0.3rem;
}

.build-list h3 {
  margin: 0 0 0.3rem;
  color: #fff;
  font-size: 1.2rem;
}

.build-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.5;
  max-width: 34rem;
}

/* Page hero (inner) */
.page-hero {
  padding: 4.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(0, 117, 177, 0.14), transparent 55%),
    var(--surface-alt);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  max-width: 36rem;
  color: var(--ink-soft);
  margin: 0;
  font-size: 1.08rem;
}

.page-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.page-hero--services {
  padding: 4.75rem 0 3.25rem;
  background:
    radial-gradient(ellipse 55% 70% at 100% 10%, rgba(0, 117, 177, 0.18), transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 90%, rgba(5, 58, 88, 0.08), transparent 50%),
    linear-gradient(180deg, #eef6fb 0%, var(--surface) 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2.5rem 3rem;
  align-items: end;
}

.page-hero-grid > div {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}

.page-hero-grid .cta-row {
  margin-top: 0.4rem;
}

.page-hero-grid h1 {
  margin: 0;
  max-width: 14ch;
  line-height: 1.1;
}

.page-hero-grid > div > p {
  max-width: 34rem;
}

.page-hero-points {
  list-style: none;
  margin: 0;
  padding: 1.35rem 1.4rem;
  display: grid;
  gap: 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-hero-points li {
  display: grid;
  gap: 0.2rem;
  padding-left: 0.95rem;
  border-left: 2px solid var(--brand);
}

.page-hero-points strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--ink);
}

.page-hero-points span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Services detail page */
.service-detail-list {
  display: grid;
  gap: 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 1.25rem 1.75rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  transition: transform 0.35s var(--ease);
}

.service-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.service-detail:hover {
  transform: translateX(4px);
}

.service-detail-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand);
  line-height: 1;
  padding-top: 0.2rem;
}

.service-detail-body {
  display: grid;
  gap: 0.75rem;
  justify-items: start;
}

.service-detail-body h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
}

.service-detail-body > p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 42rem;
  font-size: 1.05rem;
}

.service-detail-points {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-detail-points li {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 0.88rem;
  font-weight: 600;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: none;
}

.process-steps li {
  position: relative;
  display: grid;
  gap: 0.75rem;
  padding: 0;
  align-content: start;
}

.process-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 3.1rem;
  right: -0.65rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 117, 177, 0.45), rgba(0, 117, 177, 0.08));
}

.process-num {
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.process-steps h3 {
  margin: 0;
  font-size: 1.15rem;
}

.process-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contact */
.page-hero--contact {
  padding: 3.75rem 0 1.75rem;
  background:
    radial-gradient(ellipse 50% 70% at 0% 0%, rgba(0, 117, 177, 0.12), transparent 55%),
    var(--surface-alt);
  border-bottom: 0;
}

.page-hero--contact h1 {
  max-width: none;
  margin-bottom: 0.4rem;
}

.page-hero--contact p {
  max-width: 36rem;
}

.contact-section {
  padding-top: 1.75rem;
  padding-bottom: 4.5rem;
  background: var(--surface-alt);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-form-panel {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.contact-aside {
  padding: 1.5rem;
  background: linear-gradient(165deg, #053a58, #0075b1);
  color: #fff;
  border-radius: 18px;
  display: grid;
  gap: 0.65rem;
  justify-items: start;
  align-content: start;
}

.contact-aside h2 {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
}

.contact-aside-mail {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  word-break: break-word;
}

.contact-aside-mail:hover {
  color: #e8f4fa;
}

.contact-aside-note,
.contact-aside-tip {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-aside-tip {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

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

.form-field label {
  font-weight: 650;
  font-size: 0.9rem;
}

.form-field .hint {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.8rem;
}

.form-field input,
.form-field textarea {
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: rgba(0, 117, 177, 0.35);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 117, 177, 0.16);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 600;
}

.form-status--success {
  background: #e8f7ef;
  color: #146c43;
}

.form-status--error {
  background: #fdecec;
  color: #b42318;
}

/* Legal */
.prose {
  max-width: 46rem;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose ul {
  padding-left: 1.2rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
  background: #0d1b24;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 0.85rem;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand p {
  max-width: 22rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-col h3 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  max-width: 520px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
}

.cookie-banner p {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Home snippets */
.home-strip {
  padding: 3.5rem 0;
}

.home-apps {
  display: grid;
  gap: 1.5rem;
}

.home-app {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem 2.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.home-app:last-child {
  border-bottom: 1px solid var(--line);
}

.home-app-body {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}

.home-app-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-app-meta img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.home-app-meta h3,
.home-app-meta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.home-app-slogan {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--brand-deep);
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.home-app-body > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 32rem;
}

.home-app-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.home-app-features li {
  display: grid;
  gap: 0.2rem;
  padding-left: 0.95rem;
  border-left: 2px solid var(--brand);
}

.home-app-features strong {
  font-size: 0.98rem;
  color: var(--ink);
}

.home-app-features span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 5rem 0;
  color: #fff;
  background:
    radial-gradient(ellipse 65% 90% at 100% 0%, rgba(56, 189, 248, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 70% at 0% 100%, rgba(0, 90, 140, 0.55), transparent 50%),
    linear-gradient(135deg, #032a40 0%, #0a5f8c 52%, #0075b1 100%);
}

.cta-band-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 20% 50%, #000 15%, transparent 70%);
  opacity: 0.85;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 2rem 3rem;
  align-items: end;
}

.cta-band-copy {
  display: grid;
  gap: 0.9rem;
  justify-items: start;
}

.cta-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.cta-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  max-width: 18ch;
  line-height: 1.15;
}

.cta-band-copy > p,
.cta-band > .container > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  max-width: 34rem;
  font-size: 1.05rem;
}

.cta-band .cta-row {
  margin-top: 0.5rem;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--brand-deep);
}

.cta-band .btn-primary:hover {
  background: var(--brand-soft);
  color: var(--brand-deep);
}

.cta-band-aside {
  justify-self: end;
  width: min(100%, 280px);
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  gap: 0.45rem;
}

.cta-aside-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.cta-aside-mail {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  word-break: break-word;
}

.cta-aside-mail:hover {
  color: #e8f4fa;
}

.cta-aside-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  max-width: none;
}

/* Responsive */
@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product,
  .product--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .home-app {
    grid-template-columns: 1fr;
  }

  .build-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .build-copy {
    position: static;
  }

  .build-copy h2 {
    max-width: none;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .cta-band h2 {
    max-width: none;
  }

  .cta-band-aside {
    justify-self: start;
    width: 100%;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .page-hero-grid h1 {
    max-width: none;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .process-steps li:not(:last-child)::after {
    display: none;
  }

  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero--contact h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.25rem 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown {
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.7rem 0;
  }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    transform: none;
    min-width: 0;
    width: 100%;
    margin: 0 0 0.35rem;
    padding: 0.25rem 0 0.5rem;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 0.55rem 0.25rem;
  }

  .nav-dropdown-all {
    border-top: 1px solid var(--line);
    margin-top: 0.25rem;
    padding-top: 0.65rem !important;
  }

  .lang-switch {
    margin-top: 0.75rem;
    align-self: flex-start;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 0.85rem 1rem;
    padding: 1.5rem 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero--banners {
    padding: 1.1rem 0 1.5rem;
  }

  .hero-stage--banners {
    max-height: none;
    border-radius: 14px;
  }

  .hero-controls {
    margin-top: 0.9rem;
  }

  .hero-brand img {
    width: 44px;
    height: 44px;
  }

  .logo-link img {
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* App detail pages */
.app-banner {
  display: grid;
  place-items: center;
  width: min(100% - 2.5rem, 1240px);
  margin: 1.5rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: var(--brand-soft);
}

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

.app-intro {
  display: grid;
  gap: 1.25rem;
  padding-top: 2.5rem;
}

.app-intro-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.app-intro-top img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.app-intro-top h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.app-intro-top .tagline {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.app-lead {
  max-width: 46rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.app-lead p + p {
  margin-top: 0.85rem;
}

.app-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.app-feature {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.app-feature h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
}

.app-feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.app-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.app-gallery figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #e8f4fa, #f7fafc);
  border: 1px solid var(--line);
}

.app-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 16 / 11;
  display: block;
  background: transparent;
}

.app-gallery img.is-zoomable,
.app-banner img.is-zoomable {
  cursor: zoom-in;
}

/* Lightbox */
body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 42, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  max-height: min(92vh, 900px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem;
}

.lightbox-figure {
  margin: 0;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  max-height: min(92vh, 900px);
}

.lightbox-image {
  max-width: 100%;
  max-height: min(78vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: #0b1f2c;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  text-align: center;
  max-width: 42rem;
  line-height: 1.45;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 28, 42, 0.55);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(8, 28, 42, 0.8);
  border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -0.25rem;
  right: 0.15rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox-nav {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .lightbox {
    padding: 0.75rem;
  }

  .lightbox-dialog {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .lightbox-nav {
    position: absolute;
    bottom: 0.25rem;
    z-index: 2;
  }

  .lightbox-nav--prev {
    left: 0.25rem;
  }

  .lightbox-nav--next {
    right: 0.25rem;
  }

  .lightbox-figure {
    padding-bottom: 3rem;
  }

  .lightbox-image {
    max-height: min(70vh, 640px);
  }
}

.app-gallery figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--surface);
}

.app-more {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@media (max-width: 860px) {
  .app-feature-grid {
    grid-template-columns: 1fr;
  }

  .app-gallery {
    grid-template-columns: 1fr;
  }

  .app-banner {
    width: min(100% - 1.5rem, 1240px);
    border-radius: 14px;
  }
}
