html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0d0f14;
  font-family: "Arial", sans-serif;
  color: #e5e8ff;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0;
}


a,
button,
input {
  transition: 0.3s;
}


header {
  box-sizing: border-box;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 45px;
  background: rgba(10, 10, 16, 0.6);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

[id] {
  scroll-margin-top: 120px;
}

.hero-img {
  pointer-events: none;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: bold;
}
.logo span {
  color: #6ab4ff;
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #dbe0ff;
}
.nav-links a:hover {
  color: #6ab4ff;
}

.burger {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 4px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #0d0f14;
  display: none;
  flex-direction: column;
  justify-content: left;
  padding: 40px;
  z-index: 9999; 
  transition: transform 0.4s ease;
  transform: translateX(-100%);
}

.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu a {
  font-size: 26px;
  margin: 20px 0;
  color: #fff;
  text-decoration: none;
}
.close {
  font-size: 40px;
  cursor: pointer;
  margin-bottom: 20px;
  color: blanchedalmond;
  display: flex;
}

.content-img {
  max-width: 500px;
  max-height: 400px;

  @media (max-width: 600px) {
    max-width: 100%;
    height: auto;
  }
}

.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  position: relative;
  background: linear-gradient(135deg, #0d0f14, #141826 60%, #1e2435);
}

.logo-decoration {
  color: #6ab4ff;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.copyright {
  font-size: 16px;
  color: #555b7e;
  margin-top: 24px;
}

.hero-inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  gap: 30px;
}
.card-icon {
  border-radius: 10px;
}

.content-wrapper-img {
  max-width: 400px;
  max-height: 400px;
}

.hero-content {
  max-width: 50%;
}

.hero-img img {
  order: 0;
  width: 420px;
  max-width: 100%;
  border-radius: 50px;
}

.cta-btn {
  cursor: pointer;
  display: inline-block;
  margin-top: 25px;
  background: #6ab4ff;
  color: #0d0f14;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
.cta-btn:hover {
  background: #a7d4ff;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
}

.section {
  padding: 100px 60px;
  position: relative;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.about-section {
  background: radial-gradient(circle at top left, #222a3d, #0d0f14);
}

.features-section {
  background: #10131c;
  position: relative;
}

.neon-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.25), transparent 60%);
  opacity: 0.4;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

.card {
  background: #161a26;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 150, 255, 0.15);
}

.process-section {
  background: linear-gradient(135deg, #141825, #0d0f14);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.step {
  background: #1a1f30;
  padding: 15px 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 150, 255, 0.15);
}

.process-section img {
  width: 300px;
  margin-top: 20px;
}

.cases-section {
  background: #0d0f14;
  position: relative;
}

.tech-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 150, 255, 0.08),
    transparent 2px
  );
  opacity: 0.25;
}

.minimal-cards .card {
  background: #131722;
  text-align: center;
  padding: 20px;
}

.contact-section {
  background: #10131c;
}

form {
  max-width: 450px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input {
  padding: 12px;
  background: #1b1f2c;
  border: 1px solid #2b3144;
  color: #fff;
  border-radius: 5px;
}
input:focus {
  border-color: #6ab4ff;
  outline: none;
}

.captcha {
  display: flex;
  gap: 10px;
  align-items: center;
}

.checkbox {
  font-size: 14px;
}

footer {
  padding: 50px 60px;
  background: #0b0c10;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

footer a {
  color: #a7d4ff;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

.container {
  padding: 80px;
  max-width: 1200px;
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 80px;
  align-items: center;

  @media (max-width: 800px) {
    flex-direction: column;
    gap: 40px;
  }
}
.footer-wrraper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 50px;
  background: #141825;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.cookie-popup.hidden {
  display: none;
}

.cookie-content button {
  background: #6ab4ff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  margin-top: 10px;
}

@media (max-width: 980px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 980px) {
  header {
    padding: 15px 30px;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }
  .mobile-menu.active {
    display: flex !important;
  }
}
