:root {
  --ink-navy: #0C1B33;
  --electric-blue: #2F6BFF;
  --cyan: #22CCDD;
  --cloud: #F2F4F8;
  --slate: #5B6675;
  --white: #ffffff;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-max: 1200px;
  --container-px: 1.5rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --ease: 0.22s ease;
}

body {
  font-family: var(--font-body);
  background-color: var(--ink-navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

p {
  line-height: 1.7;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.875rem;
}

.section-title {
  margin-bottom: 2.5rem;
}

.section--light {
  background: var(--cloud);
}

.section--light h2,
.section--light h3 {
  color: var(--ink-navy);
}

.section--light p {
  color: var(--slate);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--electric-blue);
  color: var(--white);
}

.btn--primary:hover {
  background: #1a55e8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}

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

.btn--white {
  background: var(--white);
  color: var(--electric-blue);
  font-weight: 700;
}

.btn--white:hover {
  background: var(--cloud);
  transform: translateY(-2px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.logo__icon {
  flex-shrink: 0;
}

.card-icon {
  width: 46px;
  height: 46px;
  background: var(--ink-navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled,
.header--static {
  background: rgba(12, 27, 51, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav__menu-logo {
  display: none;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--ease);
  text-decoration: none;
}

.nav__link:hover {
  color: var(--white);
}

.nav__link--cta {
  background: var(--electric-blue);
  color: var(--white) !important;
  padding: 0.5rem 1.1rem;
  margin-left: 0.5rem;
}

.nav__link--cta:hover {
  background: #1a55e8;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0;
  z-index: 101;
  cursor: pointer;
  transition: background var(--ease);
}

.nav__toggle:hover {
  background: rgba(255, 255, 255, 0.07);
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: none;
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}

.hero__title {
  margin-bottom: 1.25rem;
  max-width: 580px;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 2.25rem;
  max-width: 480px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__deco {
  width: 100%;
  max-width: 400px;
  opacity: 0.9;
}

.why {
  padding: 6rem 0;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.why-card h3 {
  margin-bottom: 0.75rem;
}

.services {
  padding: 6rem 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(12, 27, 51, 0.08);
  transition: var(--ease);
}

.service-card:hover {
  border-color: rgba(47, 107, 255, 0.3);
  transform: translateY(-2px);
}

.service-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.service-card .card-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  margin-bottom: 0;
}

.service-card h3 {
  margin-bottom: 0;
}

.process {
  padding: 6rem 0;
  background: var(--ink-navy);
}

.process .section-title {
  color: var(--white);
  margin-bottom: 3.5rem;
}

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.step__circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--electric-blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step__circle--muted {
  background: rgba(47, 107, 255, 0.35);
  border: 1.5px solid rgba(47, 107, 255, 0.5);
}

.step__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  white-space: nowrap;
}

.process__line {
  flex: 1;
  height: 2px;
  background: rgba(47, 107, 255, 0.4);
  margin-top: 20px;
  flex-shrink: 0;
  max-width: 60px;
}

.process__line--dashed {
  background: none;
  border-top: 2px dashed rgba(47, 107, 255, 0.3);
}

.clients {
  padding: 6rem 0;
  background: var(--ink-navy);

}

.clients__carousel {
  position: relative;
  overflow: hidden;
}

.clients__carousel::before,
.clients__carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.clients__carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink-navy), rgba(12, 27, 51, 0));
}

.clients__carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink-navy), rgba(12, 27, 51, 0));
}

.clients__track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: clientsScroll 26s linear infinite;
}

.clients__track:hover {
  animation-play-state: paused;
}

@keyframes clientsScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.clients__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.clients__logo-mark {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--electric-blue), var(--cyan));
  transform: rotate(45deg);
  flex-shrink: 0;
}

.team {
  padding: 6rem 0;
  overflow: hidden;
}

.team__container {
  position: relative;
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3.5rem;
}

.team__text {
  position: relative;
  z-index: 1;
}

.team__text p {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 480px;
}

.team__stats {
  display: flex;
  gap: 2.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.team__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.team__stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink-navy);
}

.team__stat-label {
  font-size: 0.8rem;
  color: var(--slate);
  max-width: 120px;
  line-height: 1.4;
}

.team__visual {
  background: var(--ink-navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  will-change: transform;
}

.team__map {
  width: 100%;
  height: auto;
  display: block;
}

.team__dot circle {
  transform-origin: center;
  transform-box: fill-box;
  animation: teamDotPulse 2.4s ease-in-out infinite;
  animation-delay: var(--d);
}

@keyframes teamDotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.7; }
}

@media (prefers-reduced-motion: reduce) {
  .team__dot circle { animation: none; }
  .team__visual { transform: none !important; }
}

.cta-banner {
  background: var(--electric-blue);
  padding: 2.5rem 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner__text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  max-width: 560px;
}

.faq {
  padding: 6rem 0;
}

.faq__list {
  max-width: 760px;
}

.faq__item {
  border-bottom: 1px solid rgba(12, 27, 51, 0.1);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.35rem 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-navy);
  text-align: left;
  cursor: pointer;
}

.faq__icon {
  flex-shrink: 0;
  color: var(--electric-blue);
  transition: transform 0.3s ease;
}

.faq__item.open .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__item.open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
}

.faq__answer-inner p {
  color: var(--slate);
  font-size: 0.925rem;
  line-height: 1.7;
  padding-bottom: 1.35rem;
  max-width: 640px;
}

.footer {
  background: var(--ink-navy);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__desc {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-top: 1.25rem;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--ease);
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col ul li a,
.footer__col ul li span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: var(--ease);
}

.footer__col ul li a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.legal {
  padding: 8.5rem 0 6rem;
}

.legal__container {
  max-width: 760px;
}

.legal__back {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--electric-blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.legal__back:hover {
  text-decoration: underline;
}

.legal__title {
  color: var(--ink-navy);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.legal__updated {
  color: var(--slate);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}

.legal__body h3 {
  font-size: 1.15rem;
  color: var(--ink-navy);
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.legal__body p {
  color: var(--slate);
  margin-bottom: 1rem;
}

.legal__body ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 0 1rem 1.25rem;
}

.legal__body li {
  color: var(--slate);
  line-height: 1.7;
}

.legal__body a {
  color: var(--electric-blue);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--electric-blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: opacity 0.25s ease, visibility 0.25s ease,
    transform 0.25s ease, background 0.2s ease;
}

.back-to-top:hover {
  background: #1a55e8;
  transform: translateY(4px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  background: var(--ink-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.25rem var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
}

@media (max-width: 560px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-banner__actions {
    justify-content: center;
  }
  .cookie-banner__btn {
    flex: 1;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) {
  transition-delay: 0.08s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.16s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.24s;
}

.fade-up:nth-child(5) {
  transition-delay: 0.32s;
}

.fade-up:nth-child(6) {
  transition-delay: 0.40s;
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {

  .nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--ink-navy);
    padding: 5.5rem 2.5rem 3rem;
    overflow-y: auto;
    z-index: 98;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.28s ease,
      visibility 0.3s;
  }

  .nav__list.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__menu-logo {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav__menu-logo .logo {
    font-size: 1.4rem;
    gap: 0.65rem;
  }

  .nav__link {
    font-size: 1.35rem;
    font-weight: 600;
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.72);
    width: 100%;
    text-align: center;
    display: block;
  }

  .nav__link:hover {
    color: var(--white);
    background: none;
  }

  .nav__list li:nth-last-child(2) .nav__link {
    border-bottom: none;
  }

  .nav__link--cta {
    display: inline-flex;
    margin-top: 2.5rem;
    border: none;
    border-radius: var(--radius-sm);
    width: auto;
    padding: 0.875rem 2.5rem;
    font-size: 0.95rem;
  }

  .nav__toggle {
    display: flex;
  }

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

  .hero__visual {
    display: none;
  }

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

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

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

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

  .footer__brand {
    grid-column: span 2;
  }

  .process__steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .process__step {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex: none;
    width: 100%;
    padding: 0.25rem 0;
  }

  .step__label {
    text-align: left;
    white-space: normal;
  }

  .process__line {
    flex: none;
    width: 2px;
    height: 36px;
    max-width: none;
    margin-top: 0;
    margin-left: 20px;
    background: rgba(47, 107, 255, 0.4);
    border-top: none;
  }

  .process__line--dashed {
    background: none;
    border-left: 2px dashed rgba(47, 107, 255, 0.3);
    border-top: none;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }
}

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

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

  .footer__brand {
    grid-column: span 1;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}