﻿:root {
  --bg: #030507;
  --bg-alt: #0b0f14;
  --panel: #0b0e13;
  --panel-2: #11161d;
  --panel-3: #eef4fb;
  --surface: rgba(12, 33, 56, 0.9);
  --surface-light: #f5f9fd;
  --primary: #1c78db;
  --primary-strong: #0f55b3;
  --primary-soft: #93d2ff;
  --line: rgba(129, 183, 255, 0.16);
  --line-light: rgba(15, 76, 151, 0.12);
  --text: #f3f8ff;
  --text-soft: #aebfd4;
  --text-dark: #16263c;
  --text-muted: #667891;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --shadow-light: 0 18px 36px rgba(9, 25, 46, 0.08);
  --container: 1180px;
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(28, 120, 219, 0.22), transparent 22%),
    linear-gradient(180deg, #030507 0%, #06080b 34%, #030507 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(143, 196, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 196, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 80%);
  z-index: -1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link:focus {
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 16px;
  clip: auto;
  background: var(--primary);
  color: #fff;
  z-index: 1000;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 5, 7, 0.76);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(150%);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(3, 5, 7, 0.92);
  border-color: rgba(129, 183, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  width: clamp(210px, 24vw, 310px);
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--text-soft);
  font-size: 0.97rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  margin-left: 10px;
}

.site-nav .nav-cta,
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta[aria-current="page"] {
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #fff;
  box-shadow: 0 16px 30px rgba(15, 85, 179, 0.24);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-home,
.page-hero {
  padding: 78px 0 54px;
  position: relative;
}

.hero-home::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(82, 183, 255, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(8, 20, 38, 0.28), rgba(6, 17, 31, 0));
  z-index: -1;
}

.hero-layout,
.split-layout,
.contact-layout,
.intro-grid,
.section-heading-row,
.process-layout {
  display: grid;
  gap: 28px;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
}

.hero-main h1,
.page-hero h1,
h2,
h3,
strong {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

.hero-main h1,
.page-hero h1 {
  margin: 0;
  max-width: 11.5ch;
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: 0.94;
  text-wrap: balance;
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.05;
}

h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.18;
  text-wrap: balance;
}

p,
li,
label,
input,
textarea,
span {
  line-height: 1.72;
}

.hero-text,
.page-hero-text,
.split-content p,
.section-intro-copy p,
.service-list-rows p,
.service-detail-item p,
.contact-panel p,
.form-note,
.footer-text,
.footer-links a {
  color: var(--text-soft);
}

.hero-text,
.page-hero-text {
  margin: 24px 0 0;
  max-width: 62ch;
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--primary-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-visual-block,
.split-visual,
.statement-card,
.service-list-rows article,
.service-detail-item,
.process-steps article,
.contact-panel,
.form-card,
.metric-strip,
.client-name-grid span,
.cta-banner,
.three-column-text article {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-visual-block,
.split-visual,
.contact-panel,
.form-card,
.statement-card,
.cta-banner,
.three-column-text article {
  background: linear-gradient(180deg, rgba(12, 14, 18, 0.96), rgba(6, 8, 11, 0.96));
}

.section-visual {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.hero-side-note {
  display: grid;
  gap: 10px;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.hero-side-note strong {
  font-size: 1.05rem;
  color: var(--text);
}

.section {
  padding: 66px 0;
}

.section-border-top {
  border-top: 1px solid rgba(129, 183, 255, 0.08);
}

.section-soft {
  background: linear-gradient(180deg, rgba(8, 10, 13, 0.9), rgba(4, 5, 7, 0.98));
}

.intro-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: end;
}

.section-intro-copy p {
  margin: 0;
  font-size: 1.04rem;
}

.metrics-section {
  padding-top: 0;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: linear-gradient(180deg, rgba(9, 11, 14, 0.96), rgba(5, 7, 9, 0.98));
}

.metric-strip article {
  display: grid;
  gap: 8px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.metric-strip article:last-child {
  border-right: 0;
}

.metric-strip strong {
  font-size: 1.35rem;
  color: var(--text);
}

.metric-strip span {
  color: var(--text-soft);
}

.split-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.split-layout-image-left .split-visual {
  order: 1;
}

.split-layout-image-left .split-content {
  order: 2;
}

.split-layout-image-right .split-content {
  order: 1;
}

.split-layout-image-right .split-visual {
  order: 2;
}

.split-content p + p {
  margin-top: 14px;
}

.split-content p,
.three-column-text p,
.service-detail-item p,
.process-steps p,
.footer-text,
.contact-panel p {
  margin: 0;
}

.split-visual-light {
  background: #f0f6fc;
  border-color: var(--line-light);
  box-shadow: var(--shadow-light);
}

.services-overview .section-heading-row,
.process-layout .section-heading-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.text-link {
  color: var(--primary-soft);
  font-weight: 800;
}

.service-list-rows {
  display: grid;
}

.service-list-rows article {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  padding: 20px 24px;
  background: linear-gradient(180deg, rgba(12, 14, 18, 0.96), rgba(6, 8, 11, 0.96));
  border-top: 0;
}

.service-list-rows article:first-child {
  border-top: 1px solid var(--line);
}

.service-list-rows strong,
.service-detail-item strong,
.process-steps strong,
.contact-list strong,
.three-column-text h2 {
  color: var(--text);
  display: block;
  overflow-wrap: anywhere;
}

.bullet-list-clean {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.bullet-list-clean li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.bullet-list-clean li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--primary-soft);
}

.three-column-text {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.three-column-text article {
  padding: 28px;
}

.client-name-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.client-name-grid span {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 18px;
  color: var(--text);
  background: linear-gradient(180deg, rgba(12, 14, 18, 0.96), rgba(6, 8, 11, 0.96));
  font-weight: 800;
  text-align: center;
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px 36px;
  background: linear-gradient(90deg, rgba(10, 33, 57, 0.96), rgba(15, 85, 179, 0.9));
}

.cta-banner p {
  margin: 14px 0 0;
  color: rgba(243, 248, 255, 0.82);
}

.cta-banner-linear {
  border-top: 2px solid rgba(147, 210, 255, 0.34);
}

.page-hero-compact {
  padding-bottom: 36px;
}

.narrow-content {
  max-width: 860px;
}

.service-page-layout {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-detail-item {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  padding: 22px 24px;
  border-top: 0;
  background: linear-gradient(180deg, rgba(12, 14, 18, 0.96), rgba(6, 8, 11, 0.96));
}

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

.process-steps article {
  padding: 24px;
  background: linear-gradient(180deg, rgba(12, 14, 18, 0.96), rgba(6, 8, 11, 0.96));
}

.contact-layout-redesigned {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.contact-panel,
.form-card {
  padding: 30px;
}

.contact-panel-linear,
.form-card-linear {
  border-top: 2px solid rgba(147, 210, 255, 0.32);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-list a {
  color: var(--primary-soft);
  font-weight: 700;
}

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

.form-grid label {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

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

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(129, 183, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.form-grid input {
  min-height: 52px;
}

.form-grid textarea {
  min-height: 156px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(28, 120, 219, 0.12);
}

.form-note {
  margin: 18px 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-feedback {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--primary-soft);
  font-weight: 700;
}

.site-footer {
  margin-top: 26px;
  padding: 56px 0 22px;
  background: linear-gradient(180deg, #05070a 0%, #020304 100%);
  border-top: 1px solid rgba(129, 183, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.footer-logo {
  width: clamp(200px, 20vw, 280px);
  height: auto;
  object-fit: contain;
}

.footer-tagline,
.footer-title {
  color: var(--text);
}

.footer-tagline {
  margin: 14px 0 8px;
  font-weight: 800;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-text,
.footer-bottom p {
  color: var(--text-soft);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(129, 183, 255, 0.08);
}

@media (max-width: 1280px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  }

  .service-list-rows article,
  .service-detail-item {
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-home,
  .page-hero {
    padding: 56px 0 34px;
  }

  .section {
    padding: 54px 0;
  }

  .section-heading-row,
  .section-heading-row-stack-mobile {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-visual-block,
  .split-visual,
  .statement-card,
  .metric-strip,
  .contact-panel,
  .form-card,
  .cta-banner,
  .three-column-text article {
    box-shadow: var(--shadow-light);
  }

  .service-list-rows article,
  .service-detail-item {
    gap: 12px;
    padding: 20px;
  }
}

@media (max-width: 1120px) {
  .hero-layout,
  .split-layout,
  .intro-grid,
  .services-overview .section-heading-row,
  .contact-layout-redesigned,
  .process-steps,
  .three-column-text,
  .footer-grid,
  .service-list-rows article,
  .service-detail-item,
  .client-name-grid,
  .metric-strip,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .metric-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-strip article:last-child {
    border-bottom: 0;
  }
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 14px;
    padding: 18px;
    background: rgba(3, 5, 7, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-cta {
    margin-left: 0;
  }

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

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-home,
  .page-hero {
    padding: 56px 0 34px;
  }

  .section {
    padding: 54px 0;
  }

  .section-heading-row,
  .section-heading-row-stack-mobile {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-visual-block,
  .split-visual,
  .statement-card,
  .metric-strip,
  .contact-panel,
  .form-card,
  .cta-banner,
  .three-column-text article {
    box-shadow: var(--shadow-light);
  }

  .service-list-rows article,
  .service-detail-item {
    gap: 12px;
    padding: 20px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 80px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero-home,
  .page-hero {
    padding: 46px 0 26px;
  }

  .section {
    padding: 48px 0;
  }

  .hero-main h1,
  .page-hero h1 {
    max-width: 100%;
  }

  .hero-actions,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-side-note,
  .contact-panel,
  .form-card,
  .cta-banner,
  .three-column-text article,
  .service-list-rows article,
  .service-detail-item,
  .process-steps article {
    padding: 22px;
  }
}




.site-nav .nav-cta,
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta[aria-current="page"] {
  color: #ffffff;
}

.service-list-rows strong,
.service-detail-item strong,
.process-steps strong,
.contact-list strong,
.three-column-text h2 {
  display: block;
  overflow-wrap: anywhere;
}

@media (max-width: 920px) {
  .site-nav .nav-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .site-nav a {
    font-size: 1rem;
  }
}



.field-error {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  padding: 7px 10px;
  max-width: min(240px, 88vw);
  font-size: 0.74rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-align: right;
  color: #ffe1e1;
  background: rgba(56, 12, 12, 0.96);
  border: 1px solid rgba(255, 132, 132, 0.34);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.field-error::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 100%;
  border-width: 6px;
  border-style: solid;
  border-color: rgba(56, 12, 12, 0.96) transparent transparent transparent;
}

.input-error {
  border-color: rgba(255, 132, 132, 0.45) !important;
  background: rgba(255, 132, 132, 0.04) !important;
  box-shadow: 0 0 0 2px rgba(255, 111, 111, 0.08) !important;
}

.form-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-feedback.is-loading {
  color: var(--primary-soft);
}

.form-feedback.is-success {
  color: #8df0c7;
}

.form-feedback.is-error {
  color: #ffb3b3;
}

button[aria-disabled="true"] {
  opacity: 0.7;
  cursor: wait;
}





.form-grid label {
  position: static;
}

.field-control {
  position: relative;
  display: block;
}
