﻿*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }
img { border: 0; max-width: 100%; }

html {
  scroll-behavior: smooth;
}



body {
  background: #0a0f0d;
  color: white;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.65rem max(1.25rem, env(safe-area-inset-left)) 0.65rem
    max(1.25rem, env(safe-area-inset-right));
  background: rgba(10, 15, 13, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.site-header__logo:hover {
  filter: none;
}

.site-header__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  flex: 1;
}

@media (max-width: 900px) {
  .site-header__nav {
    display: none;
  }
}

.site-header__cta {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .site-header__cta {
    display: none;
  }
}

.site-header__menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: -0.25rem -0.35rem -0.25rem 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.site-header__menu-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
  .site-header__menu-btn {
    display: flex;
  }
}

.site-header__drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 199;
  background: rgba(0, 0, 0, 0.55);
  padding: 4.5rem max(1.25rem, env(safe-area-inset-left)) 1.5rem
    max(1.25rem, env(safe-area-inset-right));
}

.site-header__drawer.is-open {
  display: block;
}

@media (min-width: 901px) {
  .site-header__drawer {
    display: none !important;
  }
}

.site-header__drawer-panel {
  position: absolute;
  top: 3.75rem;
  right: max(1rem, env(safe-area-inset-right));
  left: max(1rem, env(safe-area-inset-left));
  max-width: 320px;
  margin-left: auto;
  padding: 1.25rem;
  background: #121214;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.site-header__drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-header__drawer-nav .nav-link {
  display: block;
  padding: 0.65rem 0.5rem;
  border-radius: 8px;
  color: #9ca3a0;
}

.site-header__drawer-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.site-header__drawer-nav .btn-header {
  margin-top: 0.85rem;
  width: 100%;
  justify-content: center;
}

.nav-link {
  color: #9ca3a0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #fff;
  filter: none;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: #00ff88;
  color: #0a0a0b;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, filter 0.15s;
}

.btn-header:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn-header .icon-arrow {
  flex-shrink: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 7.5rem max(1.25rem, env(safe-area-inset-right)) 4rem
    max(1.25rem, env(safe-area-inset-left));
  text-align: center;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 85% 60% at 50% 32%,
    rgba(62, 248, 159, 0.15),
    transparent 58%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 1.05rem;
  margin: 0 0 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(62, 248, 159, 0.45);
  color: #3ef89f;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ff88;
  flex-shrink: 0;
}

.hero__title {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1.35rem;
}

.hero__accent {
  color: #00ff88;
  font-style: italic;
  font-weight: 700;
}

.hero__lead {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.65;
  color: #9ca3a0;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
}

.btn-primary-lg,
.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, filter 0.15s, border-color 0.15s, background 0.15s;
}

.btn-primary-lg:hover,
.btn-outline-lg:hover {
  filter: none;
}

.btn-primary-lg .icon-arrow,
.btn-outline-lg .icon-arrow {
  flex-shrink: 0;
}

.btn-primary-lg {
  background: #00ff88;
  color: #0a0a0b;
  border: none;
}

.btn-primary-lg:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.btn-outline-lg {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.btn-outline-lg:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

#services,
#process,
#about {
  scroll-margin-top: 5.5rem;
}

.services-section {
  padding: 5rem max(1.25rem, env(safe-area-inset-left)) 5rem
    max(1.25rem, env(safe-area-inset-right));
}

.services-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.75rem;
}

.services-section__tag {
  margin: 0 0 1rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00ff88;
}

.services-section__title {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #fff;
  text-align: left;
}

.services-section__title-muted {
  color: rgba(255, 255, 255, 0.45);
}

.services-section__deck-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.75rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #00ff88;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.services-section__deck-link:hover {
  color: #3ef89f;
  filter: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.service-card {
  grid-column: span 2;
  padding: 1.5rem;
  background: #141a18;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  text-align: left;
}

.service-card--wide {
  grid-column: span 3;
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.15);
  color: #00ff88;
}

.service-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.service-card__num {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.25);
}

.service-card__title {
  margin: 0 0 0.65rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.service-card__desc {
  margin: 0 0 1.15rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #9ca3a0;
}

.service-card__features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card__features li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.45rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.service-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2300ff88' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.service-card__features li:last-child {
  margin-bottom: 0;
}

.process-section {
  padding: 5rem max(1.25rem, env(safe-area-inset-left)) 5rem
    max(1.25rem, env(safe-area-inset-right));
}

.process-section__inner {
  max-width: 960px;
  margin: 0 auto;
}

.process-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.process-section__badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.25);
  color: #00ff88;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.process-section__title {
  margin: 0 0 1rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #fff;
}

.process-section__lead {
  margin: 0 auto;
  max-width: 36rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #9ca3a0;
}

.process-timeline {
  position: relative;
  padding: 1rem 0;
}

.process-timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 255, 136, 0.35);
  transform: translateX(-50%);
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 3.5rem 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step__side {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.process-step--left .process-step__side {
  justify-content: flex-end;
  text-align: right;
}

.process-step--right .process-step__side {
  justify-content: flex-start;
  text-align: left;
}

.process-step__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 12px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.15);
  color: #00ff88;
}

.process-step__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.process-step__marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.process-step__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.15);
}

.process-step__num {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #00ff88;
}

.process-step__title {
  margin: 0 0 0.5rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.process-step__desc {
  margin: 0;
  max-width: 18rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #9ca3a0;
}

.process-step__spacer {
  min-height: 1px;
}

.about-section {
  padding: 5rem max(1.25rem, env(safe-area-inset-left)) 5rem
    max(1.25rem, env(safe-area-inset-right));
}

.about-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-section__badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.25);
  color: #00ff88;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.about-section__title {
  margin: 0 0 1.25rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #fff;
}

.about-section__text {
  margin: 0 0 1.15rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #9ca3a0;
}

.about-section__text:last-of-type {
  margin-bottom: 1.75rem;
}

.about-section__values {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-section__values li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

.about-section__values li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.15);
}

.about-section__values li:last-child {
  margin-bottom: 0;
}

.about-section__visual-box {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 136, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.5rem;
  overflow: hidden;
}

.about-section__ring {
  position: absolute;
  border-radius: 50%;
}

.about-section__ring--outer {
  width: 16rem;
  height: 16rem;
  border: 2px dashed rgba(0, 255, 136, 0.2);
}

.about-section__ring--middle {
  width: 12rem;
  height: 12rem;
  border: 2px solid rgba(0, 255, 136, 0.25);
}

.about-section__ring--inner {
  width: 8rem;
  height: 8rem;
  background: rgba(0, 255, 136, 0.08);
}

.about-section__logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  overflow: hidden;
}

.about-section__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pre-footer-cta {
  position: relative;
  padding: 6rem max(1.25rem, env(safe-area-inset-left)) 6rem
    max(1.25rem, env(safe-area-inset-right));
  text-align: center;
  overflow: hidden;
}

.pre-footer-cta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    rgba(62, 248, 159, 0.08),
    transparent 65%
  );
}

.pre-footer-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.pre-footer-cta__title {
  margin: 0 0 1.25rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #fff;
}

.pre-footer-cta__accent {
  color: #00ff88;
  font-style: italic;
  font-weight: 700;
}

.pre-footer-cta__text {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.65;
  color: #9ca3a0;
}

.contact {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0;
}



.contact .content {
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin: 2rem 0 1rem;
  color: #00d4ff;
}

.contact .contact-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact .icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.contact .icons a {
  padding: 0.5rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.contact .icons a:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.site-footer {
  background: #0a0f0d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem 2rem;
  margin-top: 0;
}

.site-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.site-footer .footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.site-footer .footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.site-footer .footer-socials a:hover {
  color: #00ff88;
  transform: translateY(-3px);
}

.site-footer .footer-socials a svg {
  width: 24px;
  height: 24px;
}

.site-footer .footer-copyright {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.6;
}

.site-footer .footer-copyright a {
  color: #00ff88;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer .footer-copyright a:hover {
  color: #00ff88;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .service-card--wide {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 3.5rem max(1rem, env(safe-area-inset-left)) 3.5rem
      max(1rem, env(safe-area-inset-right));
  }

  .services-section__header {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .services-section__deck-link {
    margin-top: 0;
    align-self: flex-start;
  }

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

  .service-card,
  .service-card--wide {
    grid-column: span 1;
  }

  .pre-footer-cta {
    padding: 4.5rem max(1rem, env(safe-area-inset-left)) 4.5rem
      max(1rem, env(safe-area-inset-right));
  }

  .process-section {
    padding: 3.5rem max(1rem, env(safe-area-inset-left)) 3.5rem
      max(1rem, env(safe-area-inset-right));
  }

  .process-timeline__line {
    left: 1.35rem;
    transform: none;
  }

  .process-step {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .process-step__spacer {
    display: none;
  }

  .process-step__marker {
    grid-column: 1;
    grid-row: 1;
    flex-direction: column;
    gap: 0.35rem;
  }

  .process-step__side {
    grid-column: 2;
    grid-row: 1;
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
  }

  .process-step--left .process-step__side,
  .process-step--right .process-step__side {
    text-align: left;
  }

  .process-step__desc {
    max-width: none;
  }

  .about-section {
    padding: 3.5rem max(1rem, env(safe-area-inset-left)) 3.5rem
      max(1rem, env(safe-area-inset-right));
  }

  .contact h2 {
    font-size: 2rem;
  }

  .btn-primary-lg,
  .btn-outline-lg {
    width: 100%;
    justify-content: center;
  }
}
