@font-face {
  font-family: "Power Grotesk";
  src: url("fonts/PowerGrotesk.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

:root {
  --bg: #eef1f6;
  --bg-deep: #e4e9f2;
  --ink: #0a0f1a;
  --ink-soft: #5a6578;
  --line: rgba(10, 20, 40, 0.1);
  --line-strong: rgba(10, 20, 40, 0.16);
  --brand: #00e05e;
  --brand-deep: #067a38;
  --brand-soft: rgba(0, 224, 94, 0.18);
  --metal: #b7c3d6;
  --metal-soft: rgba(183, 195, 214, 0.35);
  --white: #ffffff;
  --dark: #070b14;
  --dark-2: #0e1524;
  --glass: rgba(255, 255, 255, 0.42);
  --glass-strong: rgba(255, 255, 255, 0.62);
  --blur: 22px;
  --shell: 1298px;
  --gutter: clamp(24px, 4vw, 64px);
  --radius: 18px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Power Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;
  --shadow: 0 30px 80px rgba(8, 16, 36, 0.1);
  --shadow-soft: 0 12px 40px rgba(8, 16, 36, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1000px 500px at 0% 0%, rgba(90, 120, 180, 0.12), transparent 55%),
    radial-gradient(900px 480px at 100% 10%, rgba(40, 70, 140, 0.08), transparent 50%),
    linear-gradient(180deg, #f3f5f9 0%, var(--bg) 40%, var(--bg-deep) 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
.idx {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.shell {
  width: min(var(--shell), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 1000;
  background: var(--brand);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: -0.015em;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

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

.btn-arrow {
  display: block;
  flex-shrink: 0;
  transform: rotate(-45deg);
  transition: transform 0.28s var(--ease);
}

.btn:hover .btn-arrow {
  transform: rotate(-45deg) translateX(3px);
}

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

.btn-primary {
  color: #04150a;
  border-color: rgba(0, 224, 94, 0.45);
  background:
    linear-gradient(135deg, rgba(0, 224, 94, 0.92) 0%, rgba(0, 200, 82, 0.88) 48%, rgba(40, 230, 120, 0.85) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 8px 28px rgba(0, 224, 94, 0.32),
    0 2px 12px rgba(0, 180, 80, 0.22);
}

.btn-primary:hover {
  background:
    linear-gradient(135deg, rgba(50, 240, 130, 0.98) 0%, rgba(0, 224, 94, 0.95) 48%, rgba(20, 210, 100, 0.92) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.3) inset,
    0 12px 36px rgba(0, 224, 94, 0.42),
    0 4px 18px rgba(0, 200, 90, 0.3);
}

.site-header:not(.is-scrolled) .btn-primary {
  color: #04150a;
  border-color: rgba(180, 255, 210, 0.45);
  background:
    linear-gradient(135deg, rgba(0, 224, 94, 0.55) 0%, rgba(0, 200, 82, 0.72) 50%, rgba(40, 230, 120, 0.5) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 8px 32px rgba(0, 224, 94, 0.38),
    0 0 40px rgba(0, 224, 94, 0.2);
}

.site-header:not(.is-scrolled) .btn-primary:hover {
  background:
    linear-gradient(135deg, rgba(80, 240, 150, 0.7) 0%, rgba(0, 224, 94, 0.85) 50%, rgba(40, 230, 120, 0.65) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 12px 40px rgba(0, 224, 94, 0.48),
    0 0 48px rgba(0, 224, 94, 0.28);
}

.btn-secondary {
  color: var(--ink);
  border-color: rgba(0, 224, 94, 0.22);
  background: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 4px 16px rgba(0, 160, 70, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(0, 224, 94, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.45) inset,
    0 8px 22px rgba(0, 180, 80, 0.14);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(0, 224, 94, 0.4);
  background: rgba(0, 224, 94, 0.12);
  box-shadow: 0 0 24px rgba(0, 224, 94, 0.14);
}

.btn-ghost:hover {
  background: rgba(0, 224, 94, 0.22);
  border-color: rgba(120, 255, 180, 0.55);
  box-shadow: 0 0 32px rgba(0, 224, 94, 0.28);
}

.btn-light {
  color: #067a38;
  border-color: rgba(0, 224, 94, 0.35);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(210, 255, 230, 0.78) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 8px 28px rgba(0, 224, 94, 0.2);
}

.btn-light:hover {
  background:
    linear-gradient(135deg, #ffffff 0%, rgba(200, 255, 225, 0.92) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 12px 34px rgba(0, 224, 94, 0.28);
}

.btn-lg {
  min-height: 52px;
  padding-inline: 1.55rem;
  font-size: 0.98rem;
  border-radius: 999px;
}

.text-link {
  font-weight: 650;
  font-size: 0.95rem;
  color: var(--brand-deep);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.text-link:hover {
  border-color: currentColor;
}

.text-link::after {
  content: " →";
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.eyebrow-light,
.eyebrow-on-dark {
  color: rgba(200, 214, 255, 0.78);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
}

.section-head.wide h2 {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  max-width: 16ch;
  font-weight: 500;
}

.offerings .section-head.wide h2,
.testimonials .section-head.wide h2,
.team .section-head.wide h2,
.stats-intro h2 {
  font-size: 58px;
}

.section-lead {
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 18px 0;
  overflow: visible;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), border-color 0.35s var(--ease), padding 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(238, 241, 246, 0.7);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border-bottom-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 40px rgba(10, 20, 40, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
  overflow: visible;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  display: block;
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.25s var(--ease);
}

.site-header.is-scrolled .logo-img {
  filter: none;
}

.logo-img-footer {
  height: 32px;
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled .nav {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.75);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.94rem;
  font-weight: 560;
  color: rgba(255, 255, 255, 0.82);
  transition:
    color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s var(--ease);
  background: transparent;
  border: 0;
  padding: 0.45rem 0.75rem;
  margin: -0.45rem -0.35rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  position: relative;
}

.nav-link:hover,
.nav-item.is-open .nav-trigger {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.nav-link:active {
  transform: translateY(0);
}

.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .header-phone {
  color: var(--ink);
}

.site-header.is-scrolled .header-phone {
  padding: 0;
  margin: 0;
  background: none;
  box-shadow: none;
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-item.is-open .nav-trigger {
  color: var(--ink);
  background: rgba(10, 20, 40, 0.06);
  box-shadow: inset 0 0 0 1px rgba(10, 20, 40, 0.08);
}

.nav-chevron {
  transition: transform 0.25s var(--ease);
  opacity: 0.75;
}

.nav-item.is-open .nav-chevron,
.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}

/* Glass dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -160px;
  transform: translateY(8px);
  width: min(720px, calc(100vw - 48px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 60;
}

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

.nav-dd-glass {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 8px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(10, 14, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  color: rgba(255, 255, 255, 0.92);
}

.nav-dd-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.nav-dd-popular {
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-dd-all {
  padding: 8px 6px;
}

.nav-dd-label {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.nav-dd-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 11px;
  border: 1px solid rgba(0, 224, 94, 0.3);
  background: rgba(0, 224, 94, 0.08);
  color: var(--brand);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.nav-dd-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.nav-dd-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-dd-card-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.nav-dd-card strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.95);
}

.nav-dd-card span:not(.nav-dd-icon):not(.nav-dd-card-text) {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.nav-dd-card-text > span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.nav-dd-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.nav-dd-card:hover .nav-dd-icon {
  background: rgba(0, 224, 94, 0.16);
  border-color: rgba(0, 224, 94, 0.5);
}

.nav-dd-foot {
  margin-top: 4px;
  padding: 8px 10px;
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--brand);
}

.nav-dd-foot:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 560;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.82);
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-dd-item .nav-dd-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.nav-dd-item .nav-dd-icon svg {
  width: 15px;
  height: 15px;
}

.nav-dd-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-dd-item:hover .nav-dd-icon {
  background: rgba(0, 224, 94, 0.16);
  border-color: rgba(0, 224, 94, 0.5);
}

.nav-dd-cta {
  margin-top: auto;
  padding: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
}

.nav-dd-cta:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-dd {
  border-radius: 12px;
}

.mobile-dd summary {
  padding: 12px 10px;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.mobile-dd summary::-webkit-details-marker {
  display: none;
}

.mobile-dd-body {
  display: grid;
  gap: 4px;
  padding: 0 4px 12px;
}

.mobile-dd-body a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  font-weight: 560;
  color: var(--ink);
}

.mobile-dd-body a > span:last-child {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.mobile-dd-body .nav-dd-icon {
  border-color: rgba(0, 224, 94, 0.28);
  background: rgba(0, 224, 94, 0.1);
  color: var(--brand-deep);
}

.mobile-dd-body a > span:last-child span {
  font-size: 0.84rem;
  color: var(--ink-soft);
  font-weight: 450;
}

.mobile-dd-body a strong {
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--ink);
}

.mobile-dd-body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 8px 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 650;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
}

.header-phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.9;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lang-btn {
  min-width: 40px;
  min-height: 34px;
  padding: 0 0.7rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.is-active {
  color: #04150a;
  background:
    linear-gradient(135deg, rgba(0, 224, 94, 0.95) 0%, rgba(0, 200, 82, 0.9) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 4px 14px rgba(0, 224, 94, 0.28);
}

.lang-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.22);
}

.site-header.is-scrolled .lang-switch {
  border-color: rgba(10, 20, 40, 0.1);
  background: rgba(255, 255, 255, 0.65);
}

.site-header.is-scrolled .lang-btn {
  color: rgba(10, 20, 40, 0.5);
}

.site-header.is-scrolled .lang-btn:hover {
  color: var(--ink);
}

.site-header.is-scrolled .lang-btn.is-active {
  color: #04150a;
}

.site-header.is-scrolled .lang-sep {
  background: rgba(10, 20, 40, 0.12);
}

.lang-switch-mobile {
  width: fit-content;
  margin-top: 8px;
}

.lang-switch-mobile .lang-btn {
  color: rgba(10, 20, 40, 0.5);
}

.lang-switch-mobile .lang-btn.is-active {
  color: #04150a;
}

.lang-switch-mobile .lang-sep {
  background: rgba(10, 20, 40, 0.12);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 999px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 0 48px;
  color: var(--white);
  overflow: clip;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: drift 32s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      270deg,
      rgba(5, 8, 18, 0.92) 0%,
      rgba(5, 8, 18, 0.62) 42%,
      rgba(5, 8, 18, 0.22) 100%
    ),
    linear-gradient(
      90deg,
      rgba(5, 8, 18, 0.82) 0%,
      rgba(5, 8, 18, 0.55) 42%,
      rgba(5, 8, 18, 0.18) 100%
    );
}

.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.2;
  will-change: transform, opacity;
}

.aurora-a {
  width: min(70vw, 820px);
  height: min(70vw, 820px);
  top: -18%;
  left: -12%;
  background: #00e05e;
  opacity: 0.28;
  animation: auroraDriftA 18s ease-in-out infinite alternate;
}

.aurora-b {
  width: min(62vw, 740px);
  height: min(62vw, 740px);
  top: 0%;
  right: -14%;
  background: #3c82ff;
  animation: auroraDriftB 22s ease-in-out infinite alternate;
}

.aurora-c {
  width: min(58vw, 680px);
  height: min(58vw, 680px);
  bottom: -6%;
  left: 10%;
  background: #00e05e;
  opacity: 0.22;
  animation: auroraDriftC 20s ease-in-out infinite alternate;
}

.aurora-d {
  width: min(95vw, 1200px);
  height: min(70vw, 820px);
  top: 18%;
  left: 22%;
  background: #050812;
  opacity: 0.34;
  filter: blur(130px);
  animation: auroraDriftD 16s ease-in-out infinite alternate;
}

.aurora-e {
  width: min(46vw, 520px);
  height: min(46vw, 520px);
  bottom: -12%;
  right: 4%;
  background: #ffc832;
  animation: auroraDriftE 24s ease-in-out infinite alternate;
  filter: blur(120px);
  opacity: 0.16;
}

.hero-star {
  position: absolute;
  z-index: 2;
  right: max(-220vw, -2800px);
  top: 50%;
  width: min(280vw, 3400px);
  height: auto;
  aspect-ratio: 139.36 / 224.66;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255, 255, 255, 0.13);
  mix-blend-mode: screen;
  opacity: 0.95;
}

.hero-star svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

@media (max-width: 900px) {
  .hero-star {
    right: -240%;
    top: 42%;
    width: min(320vw, 2200px);
    color: rgba(255, 255, 255, 0.11);
  }
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  animation: rise 1.05s var(--ease) both;
}

.hero-row {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}

.hero h1 {
  font-size: clamp(2.415rem, 4.99vw, 4.35rem);
  font-weight: 500;
  line-height: 1.02;
  max-width: 20ch;
}

.hero h1 .hero-line {
  white-space: nowrap;
}

.hero-aside {
  padding-bottom: 0.4rem;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 38ch;
  margin-bottom: 1.8rem;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

.hero-trust-label {
  margin: 0;
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.hero-clients-marquee {
  min-width: 0;
  flex: 1;
}

.hero-clients-track {
  display: block;
}

.hero-clients-track .hero-clients[aria-hidden="true"] {
  display: none;
}

.hero-clients {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  min-width: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-clients li {
  display: flex;
  align-items: center;
  height: 36px;
  opacity: 0.78;
  transition: opacity 0.25s ease;
}

.hero-clients li:hover {
  opacity: 1;
}

.hero-clients img {
  display: block;
  max-height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.hero-clients .client-logo-tall {
  max-height: 42px;
  max-width: 88px;
}

/* Trust / certificates — glassy cards infinite carousel */
.trust {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
}

.trust-arc-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.trust-head {
  text-align: center;
  margin: 0;
}

.trust-head .eyebrow {
  margin-bottom: 10px;
}

.trust-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.trust-arc {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding: 12px 0 8px;
}

.trust-arc-glow {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(900px, 96%);
  height: 160px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(120, 170, 255, 0.3) 0%,
    rgba(160, 200, 255, 0.12) 42%,
    transparent 72%
  );
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.trust-marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.trust-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: trustMarquee 28s linear infinite;
}

.trust-arc-list {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 50px 22px 50px 0;
  list-style: none;
  flex: 0 0 auto;
}

.trust-arc-card {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  flex: 0 0 auto;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 40px rgba(20, 40, 80, 0.1),
    0 6px 14px rgba(20, 40, 80, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.trust-arc-card img {
  display: block;
  max-width: 74%;
  max-height: 56%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(14%) sepia(18%) saturate(900%) hue-rotate(185deg) brightness(92%) contrast(92%);
  opacity: 0.9;
}

.trust-caption {
  margin: 14px auto 0;
  max-width: 36rem;
  text-align: center;
  text-wrap: balance;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.55;
  font-weight: 450;
  color: var(--ink-soft);
}

@keyframes trustMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track {
    animation: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .trust-marquee {
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .trust-arc-list[aria-hidden="true"] {
    display: none;
  }

  .trust-arc-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 800px) {
  .trust {
    padding: 56px 0 72px;
  }

  .trust-arc {
    padding: 8px 0;
  }

  .trust-arc-card {
    width: 108px;
    height: 108px;
    border-radius: 28px;
  }

  .trust-arc-list {
    gap: 16px;
    padding: 28px 16px 28px 0;
  }

  .trust-track {
    animation-duration: 22s;
  }

  .trust-arc-glow {
    height: 120px;
  }
}

/* Offerings */
.offerings {
  padding: 100px 0 40px;
}

.products-wide,
.services-wide {
  margin-bottom: 56px;
}

.products-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.products-head h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.product-rows {
  display: grid;
}

.product-rows li {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}

.product-rows li:hover {
  background: rgba(255, 255, 255, 0.45);
  padding-inline: 18px;
  border-radius: 16px;
  border-bottom-color: transparent;
}

.idx {
  font-size: 1.15rem;
  font-weight: 500;
  color: #7a879c;
}

.product-main strong {
  display: block;
  font-size: 1.35rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.product-main p {
  color: var(--ink-soft);
  max-width: 62ch;
  font-size: 1.02rem;
}

.row-cta {
  font-weight: 650;
  font-size: 0.92rem;
  color: var(--brand-deep);
  opacity: 0.7;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.product-rows li:hover .row-cta {
  opacity: 1;
}

.service-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 160px;
  padding: 26px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.service-tile::before {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  filter: blur(56px);
  width: 110%;
  height: 130%;
  top: -45%;
  left: -48%;
  background: rgba(0, 224, 94, 0.62);
  transform: scale(0.75) translate(-10%, -8%);
  transition:
    opacity 0.4s var(--ease),
    transform 0.55s var(--ease);
}

.service-tile span,
.service-tile strong {
  position: relative;
  z-index: 1;
}

.service-tile-top,
.service-tile strong {
  position: relative;
  z-index: 1;
}

.service-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.service-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(0, 224, 94, 0.3);
  background: rgba(0, 224, 94, 0.1);
  color: var(--brand-deep);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.service-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.service-idx {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: #8a95a8;
  letter-spacing: 0;
}

.service-tile strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  max-width: none;
}

.service-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 224, 94, 0.28);
  box-shadow: var(--shadow);
}

.service-tile:hover::before {
  opacity: 1;
  transform: scale(1.08) translate(0, 0);
}

.service-tile:hover .service-icon {
  background: rgba(0, 224, 94, 0.18);
  border-color: rgba(0, 224, 94, 0.5);
  color: #067a38;
}

/* Cases — light portfolio grid with glass hover */
.cases {
  padding: 120px 0;
  background: transparent;
  color: var(--ink);
}

.cases h2,
.cases .section-head.wide h2 {
  color: var(--ink);
  font-size: clamp(2.88rem, 5.04vw, 4.8rem);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 44px) clamp(22px, 2.5vw, 36px);
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.case-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  background: #111;
  isolation: isolate;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.case-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 2.2vw, 32px);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  background: rgba(12, 14, 18, 0.28);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  transition: opacity 0.35s var(--ease);
}

.case-overlay-title {
  margin: 0;
  max-width: 26ch;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  text-wrap: balance;
}

.case-overlay-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
  min-height: 48px;
}

.case-open {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  font-size: 0.9rem;
  pointer-events: none;
  gap: 0.45rem;
}

.case-open .btn-arrow {
  width: 14px;
  height: 14px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.case-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.case-media:focus-visible img {
  transform: scale(1.04);
}

.case-media:focus-visible .case-overlay,
.case-media.is-active .case-overlay {
  opacity: 1;
  pointer-events: auto;
}

.case-media.is-active img {
  transform: scale(1.04);
}

@media (hover: hover) and (pointer: fine) {
  .case-media:hover img {
    transform: scale(1.04);
  }

  .case-media:hover .case-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (hover: none), (pointer: coarse) {
  .case-media:hover .case-overlay {
    opacity: 0;
    pointer-events: none;
  }

  .case-media:hover img {
    transform: none;
  }

  .case-media.is-active .case-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .case-media.is-active img {
    transform: scale(1.04);
  }
}

.case-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px;
}

.case-meta h3 {
  margin: 0 0 4px;
  font-size: 1.26rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
}

.case-meta p {
  margin: 0;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.case-meta-right {
  text-align: right;
  flex-shrink: 0;
}

.case-meta-right a {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--brand-deep);
  transition: color 0.2s ease;
}

.case-meta-right a:hover {
  color: var(--ink);
}

.case-meta-right span {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.case-card-more {
  min-height: 0;
}

.case-more {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 4 / 3;
  padding: clamp(28px, 3vw, 40px);
  border-radius: 24px;
  text-align: center;
  background:
    radial-gradient(420px 240px at 90% 10%, rgba(255, 255, 255, 0.28), transparent 55%),
    linear-gradient(145deg, #14e86c 0%, #00e05e 48%, #00b84a 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.case-more:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 160, 70, 0.22);
}

.case-more .text-link {
  color: #04150a;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 0;
}

.case-more .text-link::after {
  content: none;
}

.case-more .btn-arrow {
  width: 22px;
  height: 22px;
}

.case-more:hover .text-link {
  border-color: transparent;
}

.cases-head .btn {
  font-family: var(--font-display);
  font-weight: 500;
}

.case-more:hover .text-link {
  border-color: currentColor;
}

/* Stats */
.stats {
  padding: 100px 0;
  background:
    radial-gradient(920px 440px at 12% 0%, rgba(0, 224, 94, 0.32) 0%, transparent 58%),
    radial-gradient(720px 380px at 92% 85%, rgba(0, 224, 94, 0.16) 0%, transparent 55%),
    linear-gradient(180deg, #070b14 0%, #0b1210 55%, #08140e 100%);
  color: white;
}

.stats-shell {
  display: grid;
  gap: 56px;
}

.stats-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
}

.stats-copy {
  max-width: none;
}

.stats .eyebrow-light {
  color: var(--brand);
}

.stats-intro h2 {
  white-space: nowrap;
}

.stats-intro > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  max-width: 42ch;
  justify-self: end;
}

.stats-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(0, 224, 94, 0.28);
}

.stats-rail > div {
  padding: 36px 28px 8px 0;
  border-right: 1px solid rgba(0, 224, 94, 0.22);
  padding-right: 28px;
  margin-right: 28px;
}

.stats-rail > div:last-child {
  border-right: 0;
  margin-right: 0;
}

.stats-rail dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.stats-rail dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.2vw, 5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: var(--brand);
}

/* Team */
.team {
  padding: 120px 0;
}

.team-head {
  align-items: end;
  margin-bottom: 48px;
}

.team-lead {
  margin: 0.85rem 0 0;
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 40px) clamp(20px, 2.4vw, 32px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.team-media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1;
  background: rgba(10, 20, 40, 0.06);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}

.team-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: 34%;
  padding: 18px 18px 16px;
  background: linear-gradient(
    180deg,
    rgba(0, 224, 94, 0) 0%,
    rgba(0, 200, 82, 0.42) 55%,
    rgba(0, 160, 60, 0.72) 100%
  );
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  opacity: 0;
  transform: translateY(12%);
  transition:
    opacity 0.4s var(--ease),
    transform 0.45s var(--ease);
  pointer-events: none;
}

.team-phrase {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  color: #04150a;
  max-width: 18ch;
  transform: translateY(10px);
  transition: transform 0.45s var(--ease);
}

.team-card:hover .team-photo,
.team-card:focus-within .team-photo {
  transform: scale(1.05);
}

.team-card:hover .team-overlay,
.team-card:focus-within .team-overlay {
  opacity: 1;
  transform: translateY(0);
}

.team-card:hover .team-phrase,
.team-card:focus-within .team-phrase {
  transform: translateY(0);
}

.team-body h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
}

.team-role {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 560;
  color: var(--brand-deep);
}

@media (hover: none) {
  .team-overlay {
    opacity: 1;
    transform: none;
  }

  .team-phrase {
    transform: none;
  }
}

/* Testimonials — vertical glass cards, horizontal scroll */
.testimonials {
  padding: 120px 0 36px;
}

.testimonials-head {
  align-items: end;
  margin-bottom: 40px;
}

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

.quotes-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(10, 20, 40, 0.12);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s var(--ease),
    opacity 0.2s ease;
}

.quotes-arrow:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 224, 94, 0.35);
  transform: translateY(-1px);
}

.quotes-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.quotes-carousel {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 40px;
  container-type: inline-size;
  container-name: quotes;
}

.quotes-carousel::-webkit-scrollbar {
  display: none;
}

.quotes-track {
  display: flex;
  gap: 16px;
  width: max-content;
  min-width: 100%;
}

.quote-card {
  margin: 0;
  /* 4 cards + ~88px peek of the 5th */
  flex: 0 0 min(300px, calc((100cqi - 48px - 88px) / 4));
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  scroll-snap-align: start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stars {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--brand);
}

.star-mark {
  width: 15px;
  height: 15px;
  display: block;
  flex-shrink: 0;
}

.quote-card blockquote {
  margin: 0;
  flex: 1;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(10, 20, 40, 0.08);
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  flex-shrink: 0;
  background: #1a2438;
}

.quote-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0;
}

.quote-card small {
  color: var(--ink-soft);
}

/* CTA */
.cta-band {
  padding: 0 0 48px;
}

.cta-inner {
  position: relative;
  display: block;
  padding: clamp(28px, 3.2vw, 40px) clamp(28px, 4vw, 56px);
  padding-right: clamp(220px, 32vw, 420px);
  overflow: hidden;
  border-radius: 30px;
  color: #04150a;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 45%, transparent 100%),
    linear-gradient(135deg, #14e86c 0%, #00e05e 48%, #00b84a 100%);
  box-shadow:
    0 30px 80px rgba(0, 160, 70, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.28) inset;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.cta-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 34rem;
}

.eyebrow-on-green {
  color: rgba(4, 21, 10, 0.55);
}

.cta-copy h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  max-width: 16ch;
  margin-bottom: 0.55rem;
  color: #04150a;
}

.cta-copy > p:not(.eyebrow) {
  color: rgba(4, 21, 10, 0.72);
  max-width: 42ch;
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.cta-copy .btn {
  margin-top: 1.15rem;
}

.btn-on-green {
  color: #04150a;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.4) inset,
    0 10px 28px rgba(0, 80, 40, 0.18);
}

.btn-on-green:hover {
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 14px 34px rgba(0, 80, 40, 0.24);
}

.cta-star {
  position: absolute;
  z-index: 1;
  right: -8%;
  top: 50%;
  width: min(420px, 46vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
  pointer-events: none;
  filter: drop-shadow(0 24px 48px rgba(0, 60, 30, 0.28));
}

.cta-star svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* Footer */
.site-footer {
  background: #05080f;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 28px;
}

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

.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 34ch;
  margin-bottom: 14px;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.92rem;
}

.site-footer h3 {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 11px;
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}

.variant-note {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

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

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

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

@keyframes drift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes auroraDriftA {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.14;
  }
  to {
    transform: translate3d(12%, 18%, 0) scale(1.12);
    opacity: 0.24;
  }
}

@keyframes auroraDriftB {
  from {
    transform: translate3d(0, 0, 0) scale(1.05);
    opacity: 0.15;
  }
  to {
    transform: translate3d(-14%, 10%, 0) scale(1.15);
    opacity: 0.26;
  }
}

@keyframes auroraDriftC {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.12;
  }
  to {
    transform: translate3d(16%, -12%, 0) scale(1.14);
    opacity: 0.22;
  }
}

@keyframes auroraDriftD {
  from {
    transform: translate3d(0, 0, 0) scale(0.95);
    opacity: 0.12;
  }
  to {
    transform: translate3d(-10%, -16%, 0) scale(1.16);
    opacity: 0.22;
  }
}

@keyframes auroraDriftE {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.1;
  }
  to {
    transform: translate3d(-18%, -8%, 0) scale(1.1);
    opacity: 0.18;
  }
}

/* Responsive */
@media (max-width: 1298px) {
  .service-mosaic,
  .stats-rail,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-rail > div {
    border-right: 0;
    margin-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 0;
  }

  .quote-card {
    flex-basis: min(280px, calc((100cqi - 32px - 72px) / 3));
    min-height: 380px;
  }

  .hero-row,
  .stats-intro {
    grid-template-columns: 1fr;
  }

  .stats-intro > p {
    justify-self: start;
  }

  .stats-intro h2 {
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .nav,
  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header.is-scrolled .nav-toggle {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.7);
  }

  .mobile-nav {
    display: grid;
    gap: 6px;
    margin-top: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 12px 10px;
    border-radius: 12px;
    font-weight: 650;
  }

  .product-rows li {
    grid-template-columns: 56px 1fr;
  }

  .row-cta {
    grid-column: 2;
  }

  .section-head,
  .footer-grid,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .cta-inner {
    padding: 28px 24px;
    padding-right: min(42%, 200px);
  }

  .cta-star {
    width: min(240px, 58vw);
    right: -12%;
  }

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

@media (max-width: 900px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .team-head {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .service-mosaic,
  .stats-rail {
    grid-template-columns: 1fr;
  }

  .quote-card {
    flex-basis: calc(100cqi - 96px);
    max-width: calc(100cqi - 96px);
  }

  .case-overlay-foot {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .case-open {
    width: 100%;
  }

  .case-tags {
    justify-content: flex-start;
  }

  .header-actions .lang-switch:not(.lang-switch-mobile) {
    display: none;
  }

  .offerings,
  .cases,
  .team {
    padding: 80px 0;
  }

  .testimonials {
    padding: 80px 0 24px;
  }

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

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-clients-marquee {
    width: calc(100% + var(--gutter) * 2);
    margin-inline: calc(var(--gutter) * -1);
    overflow: hidden;
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 10%,
      #000 90%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 10%,
      #000 90%,
      transparent 100%
    );
  }

  .hero-clients-track {
    display: flex;
    width: max-content;
    animation: heroClientsMarquee 28s linear infinite;
  }

  .hero-clients-track .hero-clients[aria-hidden="true"] {
    display: flex;
  }

  .hero-clients {
    flex-wrap: nowrap;
    flex-shrink: 0;
    gap: 28px;
    padding-inline: 16px;
  }

  .hero-clients li {
    flex-shrink: 0;
  }

  .hero-clients img {
    max-height: 26px;
    max-width: 100px;
  }

  .aurora {
    filter: blur(80px);
    opacity: 0.16;
  }

  .aurora-e {
    filter: blur(90px);
    opacity: 0.12;
  }
}

@keyframes heroClientsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) and (prefers-reduced-motion: reduce) {
  .hero-clients-track {
    animation: none;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hero-clients-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero-clients-track .hero-clients[aria-hidden="true"] {
    display: none;
  }

  .hero-clients {
    flex-wrap: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .aurora {
    animation: none !important;
  }
}

/* —— UI Kit / blocks page —— */
.btn:disabled,
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

.btn-sm {
  min-height: 40px;
  padding: 0.55rem 1.05rem;
  font-size: 0.9rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #04150a;
  background: var(--brand);
}

.badge-soft {
  color: var(--brand-deep);
  background: rgba(0, 224, 94, 0.14);
}

.badge-dark {
  color: #fff;
  background: #0a0f1a;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.breadcrumbs a {
  color: var(--brand-deep);
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero {
  padding: 140px 0 56px;
  background:
    radial-gradient(700px 280px at 8% 0%, rgba(0, 224, 94, 0.12), transparent 55%),
    linear-gradient(180deg, #f7f9fc 0%, var(--bg) 100%);
}

.page-hero-compact {
  padding: 36px 32px;
  border-radius: 24px;
  border: 1px solid rgba(10, 20, 40, 0.08);
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(0, 224, 94, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.7);
}

.page-hero-inner h1,
.page-hero-compact h2 {
  margin: 0 0 14px;
  max-width: 18ch;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.page-hero-lead {
  margin: 0 0 24px;
  max-width: 46ch;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

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

.field-label {
  font-size: 0.86rem;
  font-weight: 650;
  color: var(--ink);
}

.field-input {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(10, 20, 40, 0.12);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.field-input::placeholder {
  color: rgba(90, 101, 120, 0.7);
}

.field-input:focus {
  outline: none;
  border-color: rgba(0, 224, 94, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 224, 94, 0.14);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.content-card {
  display: grid;
  gap: 10px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.content-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.content-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.kit-page {
  overflow-x: clip;
}

.kit-page .site-header .logo-img {
  filter: none;
}

.kit-page .nav-link {
  color: var(--ink);
}

.kit-page .nav-toggle {
  color: var(--ink);
  border-color: rgba(10, 20, 40, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.kit-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 32px 0 100px;
  align-items: start;
  max-width: 100%;
  box-sizing: border-box;
}

.kit-page .service-mosaic,
.kit-page .cases-grid,
.kit-page .team-grid,
.kit-page .news-grid,
.kit-page .product-rows,
.kit-page .cta-inner,
.kit-page .quotes-track {
  max-width: 100%;
  min-width: 0;
}

.kit-page .product-rows li {
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 16px;
}

@media (max-width: 1100px) {
  .kit-page .product-rows li {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .kit-page .product-rows .row-cta {
    grid-column: 2;
  }
}

.kit-page .quotes-track {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  overflow: visible;
}

.kit-nav {
  position: sticky;
  top: 88px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 20, 40, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.kit-nav-label {
  flex: 0 0 100%;
  margin: 8px 0 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.kit-nav-label:first-child {
  margin-top: 0;
}

.kit-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 560;
  color: var(--ink);
  background: rgba(10, 20, 40, 0.04);
  white-space: nowrap;
}

.kit-nav a:hover {
  background: rgba(0, 224, 94, 0.12);
  color: var(--brand-deep);
}

.kit-content {
  display: grid;
  gap: 56px;
  min-width: 0;
  max-width: 100%;
}

.kit-content > * {
  min-width: 0;
  max-width: 100%;
}

.kit-section-head {
  margin-bottom: 22px;
}

.kit-section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}

.kit-note {
  margin: 10px 0 0;
  max-width: 52ch;
  color: var(--ink-soft);
}

.kit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.kit-swatches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.kit-swatch {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(10, 20, 40, 0.08);
}

.kit-swatch span {
  display: block;
  height: 64px;
  border-radius: 12px;
}

.kit-swatch strong {
  font-size: 0.95rem;
}

.kit-swatch code {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.kit-type {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(10, 20, 40, 0.08);
}

.kit-panel {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(10, 20, 40, 0.08);
}

.kit-panel-dark {
  background: #07090e;
  border-color: rgba(255, 255, 255, 0.08);
}

.kit-form {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(10, 20, 40, 0.08);
}

.kit-page .cta-inner {
  padding-right: clamp(28px, 4vw, 56px);
}

.kit-page .cta-star {
  width: min(280px, 34vw);
  right: -4%;
  opacity: 0.9;
}

/* News block */
.news-head {
  align-items: end;
  margin-bottom: 32px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.news-media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16 / 10;
  background: rgba(10, 20, 40, 0.06);
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.news-card:hover .news-media img {
  transform: scale(1.04);
}

.news-body {
  display: grid;
  gap: 8px;
  padding: 0 2px;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.news-meta time {
  font-weight: 560;
}

.news-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.news-body h3 a {
  color: inherit;
}

.news-body h3 a:hover {
  color: var(--brand-deep);
}

.news-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .kit-page .team-grid,
  .kit-page .service-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .kit-swatches,
  .content-grid,
  .field-grid,
  .news-grid,
  .kit-page .team-grid,
  .kit-page .service-mosaic,
  .kit-page .cases-grid {
    grid-template-columns: 1fr;
  }

  .kit-page .cta-star {
    display: none;
  }

  .kit-page .cta-inner {
    padding-right: clamp(28px, 4vw, 56px);
  }
}

@media (min-width: 700px) and (max-width: 980px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
