:root {
  --cyan: #00aaff;
  --blue: #176cff;
  --violet: #922bff;
  --ink: #020b19;
  --page: #010815;
  --line: #23334a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

body.menu-open { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 850px;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-stage { display: none; }

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-video-mobile-stage { display: none; }

.hero-video-mobile {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(1, 8, 21, .97) 0%, rgba(1, 8, 21, .78) 42%, rgba(1, 8, 21, .22) 75%, rgba(1, 8, 21, .60) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 35%;
  background: linear-gradient(transparent, var(--page));
}

.site-header {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 138px;
}

.logo-crop {
  position: relative;
  display: block;
  width: 390px;
  height: 105px;
  overflow: hidden;
  background: transparent;
}

.logo-crop img {
  position: absolute;
  top: -65px;
  left: -42px;
  width: 470px;
  height: auto;
}

.menu-toggle {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 3px 0;
  border: 0;
  background: transparent;
  align-content: center;
  gap: 7px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle:hover span,
.menu-toggle:focus-visible span { background: var(--cyan); }

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(390px, 88vw);
  height: 100dvh;
  padding: 110px 48px 40px;
  background: rgba(2, 11, 25, .98);
  box-shadow: -25px 0 70px rgba(0, 0, 0, .52);
  transform: translateX(105%);
  transition: transform .28s ease;
}

.menu-open .menu-panel { transform: translateX(0); }

.menu-close {
  position: absolute;
  top: 34px;
  right: 38px;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #fff;
  font: 300 46px/1 Arial, sans-serif;
  cursor: pointer;
}

.menu-panel ul { margin: 0; padding: 0; list-style: none; }
.menu-panel li + li { border-top: 1px solid var(--line); }

.menu-panel a {
  display: block;
  padding: 20px 0;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
}

.menu-panel a:hover,
.menu-panel a:focus-visible { color: var(--cyan); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(0, 0, 0, .64);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 58%;
  padding-top: 76px;
}

.hero-copy h1 {
  margin: 0;
  background: linear-gradient(90deg, #00c6ff 0%, #008cff 24%, #285dff 46%, #743cff 70%, #b52cff 100%);
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(73, 72, 255, .28));
  font-size: clamp(52px, 6vw, 86px);
  line-height: .94;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.hero-copy h1 span { display: block; margin-top: 0; }

.accent {
  width: 82px;
  height: 4px;
  margin: 44px 0 28px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.lead {
  max-width: 520px;
  margin: 0;
  color: #f1f5f9;
  font-size: 25px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 48px;
}

.button {
  min-width: 220px;
  padding: 20px 28px;
  border: 1px solid var(--cyan);
  border-radius: 12px;
  background: rgba(0, 10, 28, .58);
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: transform .2s ease, filter .2s ease;
}

.button.primary {
  border: 0;
  background: linear-gradient(100deg, var(--cyan), var(--blue), var(--violet));
}

.button:hover,
.button:focus-visible { filter: brightness(1.12); transform: translateY(-2px); }

.services { position: relative; z-index: 5; margin-top: -54px; }

.details-main { padding-bottom: 95px; }

.details-frame {
  position: relative;
  z-index: 5;
  margin-top: -54px;
}

.details-row {
  min-height: 245px;
  padding: clamp(38px, 5vw, 68px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(3, 17, 35, .84);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .45);
  backdrop-filter: blur(16px);
}

.details-content {
  max-width: 1050px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.75;
}

.details-content h2 {
  margin: 0 0 28px;
  background: linear-gradient(100deg, var(--cyan), var(--blue), var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -1px;
}

.details-content h3 {
  margin: 38px 0 18px;
  color: #fff;
  font-size: 22px;
  line-height: 1.3;
}

.details-content p { margin: 0 0 22px; }

.skills-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 34px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.skills-list li {
  position: relative;
  padding-left: 22px;
}

.skills-list li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 14px rgba(35, 185, 255, .55);
}

.details-content .details-closing {
  margin-bottom: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.details-content .contact-direct {
  margin: 32px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--cyan);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(90deg, rgba(0, 174, 255, .12), rgba(102, 44, 255, .04) 72%, transparent);
}

.contact-direct span {
  display: block;
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
}

.contact-direct strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 21px;
  line-height: 1.4;
}

.contact-form {
  position: relative;
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-field label {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.form-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.character-count {
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(111, 174, 255, .3);
  border-radius: 11px;
  outline: none;
  background: rgba(0, 8, 23, .62);
  color: #fff;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-field input { min-height: 52px; padding: 12px 15px; }

.form-field textarea {
  min-height: 175px;
  padding: 14px 15px;
  line-height: 1.55;
  resize: vertical;
}

.form-field textarea::placeholder { color: rgba(255, 255, 255, .4); }

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--cyan);
  background: rgba(0, 12, 31, .82);
  box-shadow: 0 0 0 3px rgba(0, 174, 255, .12), 0 0 22px rgba(0, 174, 255, .08);
}

.contact-submit {
  margin-top: 26px;
  cursor: pointer;
  font: inherit;
}

.form-status {
  margin: 24px 0 0;
  padding: 13px 16px;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
}

.form-status.is-success {
  border: 1px solid rgba(78, 224, 159, .45);
  background: rgba(31, 143, 94, .18);
}

.form-status.is-error {
  border: 1px solid rgba(255, 113, 113, .45);
  background: rgba(174, 44, 61, .18);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.55;
  cursor: pointer;
}

.form-privacy input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--cyan);
}

.form-privacy a {
  color: #9edcff;
  text-underline-offset: 3px;
}

.details-actions {
  display: flex;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.details-actions .button {
  min-width: 190px;
  padding: 16px 24px;
}

.glass {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(3, 17, 35, .84);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .45);
  backdrop-filter: blur(16px);
}

.service {
  position: relative;
  min-height: 245px;
  padding: 38px 26px;
  text-align: center;
}

.service + .service::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 0;
  width: 1px;
  background: var(--line);
}

.icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  color: var(--cyan);
  filter: drop-shadow(0 0 10px rgba(0, 170, 255, .28));
  place-items: center;
}

.icon svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service:nth-child(even) .icon {
  color: var(--violet);
  filter: drop-shadow(0 0 10px rgba(146, 43, 255, .30));
}

.service h2 { margin: 0 0 14px; font-size: 20px; }
.service p { margin: 0; color: #d6dfeb; line-height: 1.55; }

.single-partner {
  max-width: 1050px;
  margin: 68px auto 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.75;
}

.single-partner h2 {
  margin: 0;
  background: linear-gradient(100deg, var(--cyan), var(--blue), var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -1px;
  text-align: center;
}

.single-partner p { margin: 0 0 21px; }

.single-partner .single-partner-lead {
  margin-top: 30px;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.single-partner .single-partner-closing {
  margin: 34px 0 0;
  padding: 18px 22px;
  border-left: 3px solid var(--cyan);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(90deg, rgba(0, 174, 255, .11), rgba(102, 44, 255, .04) 72%, transparent);
}

.single-partner-closing strong {
  color: #fff;
  font-size: 19px;
  white-space: nowrap;
}

.numbers { padding: 70px 0 95px; text-align: center; }

.numbers h2 {
  margin: 0;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.45;
}

.numbers h2 strong {
  display: block;
  background: linear-gradient(90deg, #00c6ff 0%, #008cff 23%, #3457ff 46%, #793aff 70%, #c026ff 100%);
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(74, 68, 255, .25));
}

.since {
  margin: 12px 0 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
}

.accent.centered { margin: 26px auto 0; }

.metrics {
  display: grid;
  margin-top: 58px;
  grid-template-columns: repeat(4, 1fr);
}

.metric { position: relative; padding: 10px 24px; }

.metric + .metric::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 1px;
  background: var(--line);
}

.metric-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  color: var(--cyan);
  filter: drop-shadow(0 0 8px rgba(0, 170, 255, .25));
  place-items: center;
}

.metric-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.metric:nth-child(even) .metric-icon { color: var(--violet); }
.metric strong { font-size: 45px; }
.metric span { display: block; margin-top: 8px; color: #e5e7eb; line-height: 1.4; }

.site-footer {
  width: 100%;
  padding: 18px 24px;
  border-top: 1px solid #111827;
  background: #000;
  color: #fff;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 18px;
  margin-top: 9px;
  font-size: 13px;
}

.site-footer-links a,
.site-footer-links button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9edcff;
  font: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(158, 220, 255, .42);
  text-underline-offset: 3px;
  cursor: pointer;
}

.site-footer-links a:hover,
.site-footer-links button:hover,
.site-footer-links a:focus-visible,
.site-footer-links button:focus-visible {
  color: #fff;
  text-decoration-color: currentColor;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 174, 255, .16), transparent 28rem),
    radial-gradient(circle at 86% 35%, rgba(102, 44, 255, .13), transparent 30rem),
    #010815;
  color: #fff;
}

.legal-header {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header .logo-crop { flex: 0 0 auto; }

.legal-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 17px;
  border: 1px solid rgba(111, 174, 255, .35);
  border-radius: 999px;
  color: #dff5ff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}

.legal-back:hover,
.legal-back:focus-visible {
  border-color: var(--cyan);
  background: rgba(0, 174, 255, .11);
}

.legal-main { padding: 18px 0 78px; }

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(111, 174, 255, .22);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(7, 19, 43, .94), rgba(2, 8, 24, .97));
  box-shadow: 0 24px 72px rgba(0, 0, 0, .32);
}

.legal-kicker {
  margin: 0 0 10px !important;
  color: #9edcff !important;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.legal-card h1 {
  margin: 0 0 25px;
  color: #fff;
  font-size: clamp(35px, 6vw, 56px);
  line-height: 1.05;
}

.legal-card h2 {
  margin: 38px 0 12px;
  color: #fff;
  font-size: clamp(21px, 3vw, 27px);
  line-height: 1.2;
}

.legal-card p,
.legal-card li {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.72;
}

.legal-card p { margin: 0 0 15px; }
.legal-card ul { margin: 8px 0 18px; padding-left: 23px; }
.legal-card li + li { margin-top: 6px; }
.legal-card strong { color: #fff; }

.legal-card a {
  color: #9edcff;
  text-underline-offset: 3px;
}

.legal-card code {
  padding: .12em .38em;
  border-radius: 5px;
  background: rgba(158, 220, 255, .09);
  color: #c8efff;
  font-family: Consolas, "Courier New", monospace;
  font-size: .9em;
  overflow-wrap: anywhere;
}

.legal-table-wrap {
  max-width: 100%;
  margin: 17px 0 22px;
  overflow-x: auto;
  border: 1px solid rgba(111, 174, 255, .22);
  border-radius: 12px;
}

.legal-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.5;
}

.legal-table th,
.legal-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(111, 174, 255, .14);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: rgba(0, 174, 255, .1);
  color: #fff;
  font-size: 13px;
}

.legal-table tr:last-child td { border-bottom: 0; }

.legal-cookie-button {
  min-height: 46px;
  margin: 6px 0 10px;
  padding: 11px 18px;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  background: rgba(0, 174, 255, .13);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.legal-cookie-button:hover,
.legal-cookie-button:focus-visible { background: rgba(0, 174, 255, .25); }

.footer-flag {
  display: inline-block;
  margin-left: 3px;
  border-radius: 50%;
  vertical-align: 0;
}

/* Desktop: keep the server image inside the same centered bounds as the cards below. */
@media (min-width: 851px) {
  .hero-background {
    inset: 50% auto auto 50%;
    width: min(1180px, calc(100% - 48px));
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: contain;
    object-position: center;
  }

  .hero-video-stage {
    position: absolute;
    top: 40%;
    left: calc(50% + min(295px, calc((100vw - 48px) / 4)));
    z-index: 2;
    display: grid;
    width: min(520px, calc(50vw - 72px));
    height: clamp(210px, 18vw, 280px);
    place-items: center;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: .6;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .35));
  }

  body.menu-open { overflow: auto; }

  .menu-panel {
    top: 44px;
    right: max(92px, calc((100vw - 1180px) / 2 + 68px));
    width: auto;
    height: auto;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(2, 11, 25, .86);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .38);
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateX(16px);
    clip-path: inset(0 0 0 100% round 999px);
    transition: clip-path .32s ease, opacity .2s ease, transform .32s ease;
    backdrop-filter: blur(12px);
  }

  .menu-open .menu-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    clip-path: inset(0 round 999px);
  }

  .menu-panel ul {
    display: flex;
    align-items: center;
  }

  .menu-panel li + li {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .menu-panel a {
    padding: 13px 20px;
    font-size: 16px;
    white-space: nowrap;
  }

  .menu-close,
  .menu-overlay { display: none !important; }

  .menu-open .menu-toggle span:first-child { transform: translateY(11px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:last-child { transform: translateY(-11px) rotate(-45deg); }
}

@media (max-width: 850px) {
  .shell { width: min(calc(100% - 30px), 700px); }
  .site-header { height: 100px; }
  .logo-crop { width: 275px; height: 82px; }
  .logo-crop img { top: -48px; left: -34px; width: 340px; }
  .hero { min-height: 750px; }
  .hero::before { background: linear-gradient(90deg, rgba(1, 8, 21, .97) 0%, rgba(1, 8, 21, .82) 48%, rgba(1, 8, 21, .42) 100%); }
  .hero-copy { width: 100%; padding-top: 28px; }
  .hero-copy h1 { font-size: 54px; }
  .lead { max-width: 520px; font-size: 20px; }
  .actions { position: relative; z-index: 4; margin-top: 34px; }
  .services { margin-top: -34px; }
  .details-frame { margin-top: -34px; }
  .glass { grid-template-columns: 1fr 1fr; }
  .service:nth-child(3)::before { display: none; }
  .service:nth-child(n + 3)::after { content: ""; position: absolute; top: 0; right: 24px; left: 24px; height: 1px; background: var(--line); }
  .metrics { grid-template-columns: 1fr 1fr; gap: 38px 0; }
  .metric:nth-child(3)::before { display: none; }
  .metric:nth-child(n + 3)::after { content: ""; position: absolute; top: -19px; right: 20px; left: 20px; height: 1px; background: var(--line); }
}

@media (max-width: 520px) {
  .shell { width: calc(100% - 28px); }
  .site-header { height: 72px; }
  .logo-crop { width: 195px; height: 54px; }
  .logo-crop img { top: -33px; left: -23px; width: 240px; }
  .menu-toggle { width: 36px; height: 36px; gap: 5px; }
  .menu-toggle span { height: 3px; }
  .menu-panel { padding: 90px 30px 30px; }
  .menu-close { top: 24px; right: 24px; }
  .hero { min-height: auto; }
  .hero > .shell { padding-bottom: 48px; }
  .hero-background { object-position: 62% center; }
  .hero::before { background: linear-gradient(90deg, rgba(1, 8, 21, .98) 0%, rgba(1, 8, 21, .87) 58%, rgba(1, 8, 21, .52) 100%); }
  .hero-copy { padding-top: 8px; }
  .hero-copy h1 { font-size: 38px; line-height: .96; letter-spacing: -1px; }
  .hero-copy h1 span { margin-top: 0; }
  .hero-video-mobile-stage {
    position: absolute;
    top: -18px;
    left: 205px;
    z-index: 5;
    display: grid;
    width: 182px;
    height: 97px;
    place-items: center;
    pointer-events: none;
    transform: translateX(-50%);
    opacity: .8;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, .32));
  }
  .accent { margin: 22px 0 16px; }
  .lead { max-width: 100%; font-size: 16px; line-height: 1.4; }
  .actions { width: 190px; gap: 10px; margin-top: 22px; }
  .button { width: 190px; min-width: 0; padding: 13px 11px; border-radius: 9px; font-size: 13px; }
  .services { margin-top: -18px; }
  .details-main { padding-bottom: 75px; }
  .details-frame { margin-top: -18px; }
  .details-row { min-height: 190px; padding: 30px 22px; border-radius: 16px; }
  .details-content { font-size: 15px; line-height: 1.65; }
  .details-content h2 { margin-bottom: 22px; font-size: 34px; }
  .details-content h3 { margin-top: 32px; font-size: 20px; }
  .details-content p { margin-bottom: 19px; }
  .skills-list { grid-template-columns: 1fr; gap: 8px; margin-bottom: 28px; }
  .details-content .details-closing { font-size: 17px; }
  .details-content .contact-direct { margin: 26px 0; padding: 16px 17px; }
  .contact-direct span { font-size: 14px; }
  .contact-direct strong { font-size: 18px; }
  .contact-form { margin-top: 34px; padding-top: 30px; }
  .form-grid { grid-template-columns: 1fr; gap: 18px; }
  .form-field.full-width { grid-column: auto; }
  .form-field input { min-height: 50px; }
  .form-privacy { font-size: 13px; }
  .contact-submit { width: 100%; margin-top: 22px; }
  .details-actions { display: grid; gap: 12px; margin-top: 38px; }
  .details-actions .button { width: 100%; min-width: 0; }
  .glass { border-radius: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service { min-height: 195px; padding: 24px 9px; }
  .service + .service::before { display: none; }
  .service:nth-child(even)::before { content: ""; display: block; position: absolute; top: 22px; bottom: 22px; left: 0; width: 1px; background: var(--line); }
  .service:nth-child(n + 3)::after { right: 16px; left: 16px; }
  .icon { width: 58px; height: 58px; margin-bottom: 16px; }
  .icon svg { width: 54px; height: 54px; }
  .service h2 { min-height: 38px; margin-bottom: 10px; font-size: 16px; line-height: 1.2; }
  .service p { font-size: 13px; line-height: 1.4; }
  .single-partner { margin-top: 48px; font-size: 15px; line-height: 1.65; }
  .single-partner h2 { font-size: 30px; }
  .single-partner .single-partner-lead { margin-top: 24px; font-size: 17px; }
  .single-partner .single-partner-closing { margin-top: 28px; padding: 16px 17px; }
  .single-partner-closing strong { display: block; margin-top: 5px; font-size: 17px; white-space: normal; }
  .numbers { padding: 55px 0 75px; }
  .numbers h2 { font-size: 23px; }
  .since { margin-top: 10px; font-size: 16px; }
  .metrics { gap: 34px 0; }
  .metric { padding: 8px 10px; }
  .metric strong { font-size: 36px; }
  .metric span { font-size: 14px; }
  .site-footer { padding: 16px 14px; }
  .site-footer p { font-size: 11px; }
  .site-footer-links { gap: 8px 14px; font-size: 12px; }
  .legal-header { min-height: 88px; }
  .legal-back { min-height: 40px; padding: 7px 12px; font-size: 12px; }
  .legal-main { padding: 8px 0 52px; }
  .legal-card { padding: 25px 20px; border-radius: 16px; }
  .legal-card h1 { margin-bottom: 21px; }
  .legal-card h2 { margin-top: 32px; }
  .legal-card p,
  .legal-card li { font-size: 15px; line-height: 1.65; }
}

@media (max-width: 370px) {
  .logo-crop { width: 175px; height: 50px; }
  .logo-crop img { top: -30px; left: -21px; width: 215px; }
  .hero-copy h1 { font-size: 35px; }
  .hero-video-mobile-stage { top: -17px; left: 189px; width: 168px; height: 89px; }
  .service { padding-inline: 6px; }
  .service h2 { font-size: 15px; }
  .service p { font-size: 12px; }
}

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