﻿:root {
  --bg: #061014;
  --bg-soft: #0b1a20;
  --text: #f3f8f8;
  --muted: #b2c7c7;
  --primary: #1fe2b0;
  --secondary: #77b6ff;
  --card: rgba(10, 28, 34, 0.74);
  --border: rgba(174, 222, 213, 0.24);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% -8%, rgba(31, 226, 176, 0.23) 0%, transparent 45%),
    radial-gradient(circle at 92% 0%, rgba(119, 182, 255, 0.2) 0%, transparent 40%),
    linear-gradient(160deg, #041015 0%, #071920 55%, #041015 100%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  z-index: -1;
}

.container {
  width: min(1140px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 1rem;
  z-index: 50;
  width: min(1140px, calc(100% - 2.5rem));
  margin: 1rem auto 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(16, 36, 44, 0.82);
  backdrop-filter: blur(11px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: 52px;
  max-width: 210px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.nav-cta {
  padding: 0.46rem 0.88rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 700;
  padding: 0.4rem 0.7rem;
}

.hero {
  padding: 5rem 0 3.2rem;
}

.page-hero {
  padding: 4.2rem 0 1rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: #95d2c5;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4.6vw, 4rem);
  letter-spacing: -0.02em;
  max-width: 16ch;
}

h1 span {
  background: linear-gradient(90deg, #73ffe3 15%, #83b2ff 72%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.55rem);
}

h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
}

.lead {
  color: var(--muted);
  max-width: 70ch;
  margin-top: 1.1rem;
  font-size: 1.03rem;
}

.section {
  padding: 4.2rem 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 0.82rem 1.24rem;
  border-radius: 12px;
  font-weight: 700;
  font-family: inherit;
}

.btn-primary {
  color: #02261c;
  background: linear-gradient(135deg, #2ff6c4, #73baff);
  box-shadow: 0 13px 35px rgba(23, 209, 166, 0.35);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.text-link {
  color: #88c8ff;
  text-decoration: none;
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}

.hero-stats {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-stats article,
.card,
.service-block {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-stats article {
  padding: 1rem;
}

.hero-stats strong {
  display: block;
  color: #b8fff1;
  font-size: 1.5rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 1.35rem;
}

.card p,
.service-block p,
.timeline p,
.feature-grid p,
.list,
.cta p,
.footer p {
  color: var(--muted);
}

.service-block {
  padding: 1.4rem;
}

.list {
  margin: 1rem 0 0;
  padding-left: 1rem;
}

.list li + li {
  margin-top: 0.45rem;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.timeline article {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1rem 1rem 3.2rem;
  position: relative;
  background: rgba(9, 24, 29, 0.66);
}

.timeline span {
  position: absolute;
  left: 0.9rem;
  top: 0.92rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(130deg, #63ffe1, #7fafff);
  color: #04241d;
  font-size: 0.72rem;
  font-weight: 800;
}

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

.feature-grid article {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem;
  background: rgba(8, 24, 30, 0.58);
}

.cta {
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(129, 171, 255, 0.2), transparent 46%),
    rgba(7, 23, 28, 0.78);
  padding: 2.1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.65rem;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.78rem 0.8rem;
  background: rgba(3, 12, 15, 0.65);
  color: var(--text);
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8fa6a5;
}

.contact-form .btn {
  margin-top: 0.5rem;
  width: fit-content;
}

.footer {
  width: min(1140px, calc(100% - 2.5rem));
  margin: 1.8rem auto 2.2rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #a4c2bf;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .cards,
  .feature-grid,
  .contact-layout,
  .split,
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar,
  .container,
  .footer {
    width: min(1140px, calc(100% - 1.3rem));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.55rem);
    margin: 0 auto;
    width: min(1140px, calc(100% - 1.3rem));
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.6rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(7, 19, 23, 0.95);
    display: none;
  }

  .topbar.open .nav {
    display: flex;
  }

  .nav a {
    padding: 0.6rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
  }

  .hero {
    padding-top: 3.8rem;
  }

  .cta {
    padding: 1.4rem;
  }

  .brand-logo {
    height: 44px;
    max-width: 178px;
  }
}

.form-status {
  min-height: 1.15rem;
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
  color: #9ad7ff;
}

.form-note {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: #99b2b0;
}

.form-note a {
  color: #8ec8ff;
}

