:root {
  --l6-bg: #f6fbff;
  --l6-surface: #ffffff;
  --l6-white: #0f1f35;
  --l6-muted: #54657d;
  --l6-gray-light: #27425f;
  --l6-accent: #0f8fdb;
  --l6-accent-hover: #0a77bc;
  --l6-accent-soft: rgba(15, 143, 219, 0.14);
  --l6-border: rgba(15, 44, 77, 0.14);
  --l6-shadow: 0 12px 32px rgba(17, 51, 84, 0.12);
  --l6-font-display: "Sora", system-ui, sans-serif;
  --l6-font-body: "Manrope", system-ui, sans-serif;
  --l6-r-sm: 8px;
  --l6-r-md: 12px;
  --l6-r-lg: 16px;
  --l6-space-xs: 8px;
  --l6-space-sm: 16px;
  --l6-space-md: 24px;
  --l6-space-lg: 40px;
  --l6-space-xl: 80px;
  --l6-container: min(1200px, 100% - 48px);
  --l6-top-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--l6-top-h);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-l6-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--l6-font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--l6-white);
  background: radial-gradient(circle at 20% -10%, #e0f5ff 0%, transparent 50%), var(--l6-bg);
  -webkit-font-smoothing: antialiased;
}

.l6-container {
  width: var(--l6-container);
  margin-inline: auto;
}

.l6-top {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  transition: background 0.28s ease, box-shadow 0.28s ease;
}

.l6-top.is-scrolled {
  background: rgba(246, 251, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--l6-shadow);
}

.l6-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--l6-space-md);
  min-height: var(--l6-top-h);
}

.l6-logo img {
  display: block;
  max-height: 30px;
  width: auto;
  filter: brightness(0) saturate(100%);
}

.l6-top__nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.l6-top__nav a {
  color: var(--l6-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.l6-top__nav a:hover {
  color: var(--l6-accent);
}

@media (min-width: 880px) {
  .l6-top__nav {
    display: flex;
  }
}

.l6-eyebrow {
  margin: 0 0 var(--l6-space-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64809f;
}

.l6-eyebrow--accent {
  color: var(--l6-accent);
}

.l6-h2 {
  margin: 0;
  font-family: var(--l6-font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.l6-h2--sm {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
}

.l6-section__head {
  max-width: 44rem;
  margin-inline: auto;
  margin-bottom: var(--l6-space-lg);
  text-align: center;
}

.l6-section__lead {
  margin: var(--l6-space-md) auto 0;
  max-width: 38rem;
  font-size: 1.03rem;
  line-height: 1.65;
  color: var(--l6-muted);
  text-align: center;
}

.l6-section__cta {
  margin-top: var(--l6-space-lg);
  display: flex;
  justify-content: center;
}

.l6-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--l6-font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--l6-r-md);
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.2s ease;
}

.l6-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.l6-btn--lg {
  padding: 0.95rem 1.65rem;
  font-size: 1rem;
}

.l6-btn--primary {
  background: var(--l6-accent);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 143, 219, 0.24);
}

.l6-btn--primary:hover {
  background: var(--l6-accent-hover);
  transform: translateY(-1px);
}

.l6-btn--ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--l6-white);
  border-color: var(--l6-border);
}

.l6-btn--ghost:hover {
  border-color: rgba(15, 77, 122, 0.28);
  background: #ffffff;
}

.l6-hero {
  position: relative;
  padding-top: calc(var(--l6-top-h) + clamp(4rem, 10vw, 7rem));
  padding-bottom: clamp(4rem, 10vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}

.l6-hero__bg {
  position: absolute;
  inset: 0;
  background: url("bg-hero.jpg") center center / cover no-repeat;
  z-index: -2;
}

.l6-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(246, 251, 255, 0.7) 0%, rgba(246, 251, 255, 0.36) 36%, rgba(246, 251, 255, 0.72) 100%),
    repeating-linear-gradient(
      -18deg,
      rgba(15, 143, 219, 0.03) 0 8px,
      rgba(15, 143, 219, 0.005) 8px 16px
    );
}

.l6-hero__inner {
  position: relative;
  display: flex;
  justify-content: center;
}

.l6-hero__copy {
  width: 100%;
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.l6-hero__langs {
  display: flex;
  justify-content: center;
  gap: var(--l6-space-xs);
  margin-bottom: var(--l6-space-md);
  flex-wrap: wrap;
}

.l6-hero__langs span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.65rem;
  border-radius: var(--l6-r-sm);
  border: 1px solid rgba(15, 99, 156, 0.25);
  background: rgba(255, 255, 255, 0.82);
  color: #20638f;
}

.l6-eyebrow--light {
  color: #4a6e91;
}

.l6-hero__title {
  margin: 0 0 var(--l6-space-md);
  font-family: var(--l6-font-display);
  font-size: clamp(2.2rem, 5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.l6-hero__lead {
  margin: 0 auto var(--l6-space-lg);
  color: #315474;
  font-size: 1.06rem;
  max-width: 37rem;
}

.l6-hero__author {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 auto var(--l6-space-lg);
  padding: 0.35rem 0.85rem 0.35rem 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 99, 156, 0.2);
  background: rgba(255, 255, 255, 0.8);
}

.l6-hero__author-avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(15, 143, 219, 0.35);
  box-shadow: 0 4px 14px rgba(17, 51, 84, 0.18);
  flex-shrink: 0;
}

.l6-hero__author-text {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: #2a5275;
}

.l6-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--l6-space-sm);
  justify-content: center;
}

@media (max-width: 520px) {
  .l6-hero__actions .l6-btn {
    width: 100%;
  }
}

.l6-section {
  padding-block: var(--l6-space-xl);
}

.l6-section--tight {
  padding-block: calc(var(--l6-space-xl) * 0.85);
}

.l6-section--surface {
  background: linear-gradient(180deg, #f3faff 0%, #eef8ff 100%);
  border-block: 1px solid var(--l6-border);
}

.l6-section--compact {
  padding-block: var(--l6-space-lg);
}

.l6-problem__items {
  display: grid;
  gap: 1px;
  border: 1px solid var(--l6-border);
  border-radius: var(--l6-r-lg);
  overflow: hidden;
  background: var(--l6-border);
}

@media (min-width: 720px) {
  .l6-problem__items {
    grid-template-columns: 1fr 1fr;
  }
}

.l6-pitem {
  display: flex;
  gap: var(--l6-space-md);
  align-items: flex-start;
  padding: var(--l6-space-lg);
  background: var(--l6-surface);
  transition: background 0.2s ease;
}

.l6-pitem:hover {
  background: #f9fdff;
}

.l6-pitem__num {
  flex-shrink: 0;
  font-family: var(--l6-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--l6-accent);
  line-height: 1;
  margin-top: 0.2rem;
}

.l6-pitem__title {
  margin: 0 0 var(--l6-space-xs);
  font-family: var(--l6-font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.l6-pitem__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--l6-muted);
}

.l6-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--l6-gray-light);
}

.l6-list--check {
  list-style: none;
  padding-left: 0;
}

.l6-list--check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.l6-list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--l6-accent);
  box-shadow: 0 0 0 2px var(--l6-accent-soft);
}

.l6-features {
  display: grid;
  gap: var(--l6-space-lg);
}

@media (min-width: 720px) {
  .l6-features {
    grid-template-columns: 1fr 1fr;
  }
}

.l6-card {
  padding: var(--l6-space-md);
  border-radius: var(--l6-r-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--l6-border);
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.l6-card:hover {
  border-color: rgba(15, 143, 219, 0.35);
  transform: translateY(-2px);
}

.l6-card__head {
  display: flex;
  align-items: center;
  gap: var(--l6-space-sm);
  margin-bottom: var(--l6-space-md);
}

.l6-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--l6-r-md);
  background: var(--l6-accent-soft);
  color: #0f7ec2;
}

.l6-card__icon iconify-icon {
  display: block;
  width: 22px;
  height: 22px;
  color: inherit;
}

.l6-card__title {
  margin: 0;
  font-family: var(--l6-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

.l6-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--l6-muted);
  text-align: left;
}

.l6-proof {
  display: grid;
  gap: var(--l6-space-lg);
  align-items: start;
}

@media (min-width: 840px) {
  .l6-proof {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    align-items: center;
    gap: var(--l6-space-xl);
  }
}

.l6-proof__lead {
  margin: 0 0 var(--l6-space-md);
  font-size: 1.02rem;
  line-height: 1.65;
  color: #2f4d6c;
}

.l6-proof__support {
  margin: var(--l6-space-md) 0 0;
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--l6-muted);
}

.l6-chart {
  padding: var(--l6-space-lg) var(--l6-space-md) var(--l6-space-md);
  border-radius: var(--l6-r-lg);
  background: linear-gradient(165deg, rgba(15, 143, 219, 0.1) 0%, #ffffff 55%);
  border: 1px solid var(--l6-border);
  box-shadow: var(--l6-shadow);
}

.l6-chart__canvas-wrap {
  position: relative;
  width: 100%;
  height: min(260px, 48vw);
  min-height: 200px;
  margin-bottom: var(--l6-space-md);
}

.l6-chart__canvas-wrap canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.l6-chart__caption {
  margin: 0;
  font-size: 0.8125rem;
  color: #627a94;
  line-height: 1.55;
  text-align: center;
}

.l6-offer__main {
  max-width: 42rem;
  margin-inline: auto;
}

.l6-offer__main > .l6-eyebrow,
.l6-offer__main > .l6-h2 {
  text-align: center;
}

.l6-offer__main > .l6-section__lead {
  margin-bottom: var(--l6-space-lg);
}

.l6-offer__timeline {
  position: relative;
  margin: 0 auto var(--l6-space-lg);
  padding-left: 3.75rem;
  display: grid;
  gap: var(--l6-space-md);
  counter-reset: offer-step;
}

.l6-offer__timeline::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(15, 143, 219, 0) 0%,
    rgba(15, 143, 219, 0.55) 14%,
    rgba(15, 143, 219, 0.2) 72%,
    rgba(15, 143, 219, 0) 100%
  );
}

.l6-offer-step {
  position: relative;
  counter-increment: offer-step;
}

.l6-offer-step__dot {
  position: absolute;
  left: 0.1rem;
  top: 0.7rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #20a8ec 0%, #0f8fdb 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 5px rgba(15, 143, 219, 0.13);
  color: #fff;
  font-family: var(--l6-font-display);
  font-size: 0.7rem;
  font-weight: 700;
}

.l6-offer-step__dot::before {
  content: counter(offer-step, decimal-leading-zero);
}

.l6-offer-step__card {
  padding: var(--l6-space-md);
  border-radius: var(--l6-r-md);
  border: 1px solid var(--l6-border);
  background: linear-gradient(165deg, rgba(15, 143, 219, 0.06) 0%, #ffffff 70%);
}

.l6-offer-step__meta {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1c8ece;
}

.l6-offer-step__title {
  margin: 0 0 0.5rem;
  font-family: var(--l6-font-display);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
}

.l6-offer-step__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--l6-muted);
}

.l6-offer-step--highlight .l6-offer-step__card {
  border-color: rgba(15, 143, 219, 0.35);
  background: linear-gradient(160deg, rgba(15, 143, 219, 0.12) 0%, #ffffff 65%);
}

@media (max-width: 919px) {
  .l6-offer__timeline {
    padding-left: 3.25rem;
    gap: 1rem;
  }
  .l6-offer__timeline::before {
    left: 1.15rem;
  }
  .l6-offer-step__dot {
    left: calc(-3.25rem + 0.15rem);
    top: 0.95rem;
    width: 1.85rem;
    height: 1.85rem;
  }
  .l6-offer-step__card {
    padding: 1rem;
  }
}

@media (min-width: 920px) {
  .l6-offer__timeline {
    padding-left: 0;
    gap: var(--l6-space-lg);
  }
  .l6-offer__timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .l6-offer-step {
    min-height: 120px;
  }
  .l6-offer-step:nth-child(odd) {
    padding-right: calc(50% + 2.2rem);
  }
  .l6-offer-step:nth-child(even) {
    padding-left: calc(50% + 2.2rem);
  }
  .l6-offer-step__dot {
    left: 50%;
    transform: translateX(-50%);
  }
}

.l6-projects__head {
  text-align: center;
  margin-bottom: var(--l6-space-md);
}

.l6-projects-swiper {
  position: relative;
  padding: 0.75rem 0 1.5rem;
}

.l6-projects-swiper::before,
.l6-projects-swiper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2.2rem, 10vw, 7rem);
  z-index: 5;
  pointer-events: none;
}

.l6-projects-swiper::before {
  left: -1px;
  background: linear-gradient(to right, rgba(246, 251, 255, 0.98) 0%, rgba(246, 251, 255, 0) 100%);
}

.l6-projects-swiper::after {
  right: -1px;
  background: linear-gradient(to left, rgba(246, 251, 255, 0.98) 0%, rgba(246, 251, 255, 0) 100%);
}

.l6-projects-swiper .swiper-slide {
  width: clamp(220px, 58vw, 320px);
  background: transparent;
  box-shadow: var(--l6-shadow);
  border-radius: var(--l6-r-md);
}

.l6-pslide {
  position: relative;
  height: clamp(320px, 72vw, 460px);
  overflow: hidden;
  border-radius: var(--l6-r-md);
  background: #d8efff;
  isolation: isolate;
}

.l6-pslide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.55);
  z-index: 3;
}

.l6-pslide__media {
  position: absolute;
  inset: -10px;
  background: var(--slide-bg) center top / cover no-repeat;
  transform: scale(1.14) translateZ(0);
  transition: transform 0.65s ease;
}

.l6-projects-swiper .swiper-slide-active .l6-pslide__media {
  transform: scale(1.06) translateZ(0);
}

.l6-pslide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: clamp(1rem, 3.2vw, 1.45rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.l6-pslide__caption {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: clamp(0.55rem, 1.8vw, 0.75rem) clamp(0.65rem, 2vw, 0.85rem);
  border-radius: 12px;
  background: linear-gradient(to top, rgba(5, 40, 67, 0.88) 0%, rgba(8, 62, 98, 0.68) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.l6-pslide__caption .l6-eyebrow--light {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.86);
}

.l6-vslide__title {
  margin: 0;
  font-family: var(--l6-font-display);
  font-size: clamp(0.78rem, 2vw, 1.02rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  overflow-wrap: break-word;
  hyphens: auto;
}

.l6-projects__pagination {
  display: flex;
  justify-content: center;
  margin-top: var(--l6-space-sm);
}

.l6-projects__pagination .swiper-pagination-bullet {
  width: 0.52rem;
  height: 0.52rem;
  opacity: 1;
  background: rgba(24, 114, 170, 0.26);
  transition: transform 0.2s ease, background 0.2s ease;
}

.l6-projects__pagination .swiper-pagination-bullet-active {
  background: var(--l6-accent);
  transform: scale(1.15);
}

@media (min-width: 980px) {
  .l6-projects-swiper .swiper-slide {
    width: clamp(240px, 24vw, 330px);
  }
  .l6-pslide {
    height: clamp(360px, 46vw, 500px);
  }
}

.l6-testimonials {
  display: grid;
  gap: var(--l6-space-md);
}

@media (min-width: 760px) {
  .l6-testimonials {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1180px) {
  .l6-testimonials {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.l6-testimonial {
  position: relative;
  padding: var(--l6-space-md);
  border-radius: var(--l6-r-md);
  border: 1px solid var(--l6-border);
  background: linear-gradient(165deg, rgba(15, 143, 219, 0.05) 0%, #ffffff 72%);
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.l6-testimonial::before {
  content: "“";
  position: absolute;
  top: 0.45rem;
  right: 0.75rem;
  font-family: var(--l6-font-display);
  font-size: 2.1rem;
  line-height: 1;
  color: rgba(15, 143, 219, 0.3);
}

.l6-testimonial__quote {
  margin: 0 0 var(--l6-space-md);
  color: #2d4f71;
  font-size: 0.93rem;
  line-height: 1.62;
  flex: 1;
}

.l6-testimonial__name {
  margin: 0;
  font-family: var(--l6-font-display);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--l6-white);
}

.l6-testimonial__time {
  margin: 0.28rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--l6-muted);
}

.l6-cta {
  position: relative;
  padding-block: calc(var(--l6-space-xl) * 1.35);
  border-top: none;
  background: url("bg-cta.jpg") 60% center / cover no-repeat;
  isolation: isolate;
}

.l6-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(3, 22, 40, 0.62) 0%,
    rgba(4, 30, 55, 0.72) 100%
  );
}

.l6-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 38rem;
  margin-inline: auto;
}

.l6-cta__title {
  margin: 0 0 var(--l6-space-sm);
  font-family: var(--l6-font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.l6-cta__lead {
  margin: 0 0 var(--l6-space-lg);
  color: rgba(255, 255, 255, 0.82);
}

.l6-foot {
  padding: var(--l6-space-md) 0 calc(var(--l6-space-lg) + env(safe-area-inset-bottom));
  border-top: 1px solid var(--l6-border);
}

.l6-foot__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  color: var(--l6-muted);
  text-align: center;
}

.l6-foot__logo img {
  display: block;
  width: auto;
  max-height: 30px;
  filter: brightness(0) saturate(100%);
}

.l6-foot__copy {
  display: block;
  line-height: 1.45;
}

[data-l6-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-l6-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
