@charset "UTF-8";
#space-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 40%), #060612;
}

.header {
  position: sticky;
  top: 12px;
  background: rgba(12, 12, 25, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  width: calc(100% - 24px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 18px;
  transform: scale(1);
  transform-origin: center top;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.header.scrolled {
  width: calc(100% - 24px);
  max-width: 1200px;
  transform: scale(0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  transition: padding 0.3s ease;
  position: relative;
}

.header.scrolled .header-inner {
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  color: #fdb827;
  padding: 4px 0;
  flex: 1 1 auto;
  min-width: 0;
}

.logo svg-icon {
  display: block;
}

.logo svg {
  height: clamp(42px, 9vw, 70px);
  width: auto;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.header.scrolled .logo svg {
  transform: scale(0.9);
}

.logo:hover svg {
  transform: scale(1.05) rotate(-2deg);
}

.nav-toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle-input:checked + .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle-input:checked + .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-toggle-input:checked + .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  left: 0;
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  background: rgba(12, 12, 25, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.nav-toggle-input:checked ~ .header-panel {
  display: flex;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav a {
  color: #fdb827;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.lang-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  align-self: flex-start;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #9aa0b6;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.lang-toggle svg {
  height: 18px;
  width: 18px;
  fill: currentColor;
}

.lang-menu {
  position: absolute;
  top: 140%;
  right: 0;
  background: #17182f;
  border-radius: 12px;
  padding: 8px;
  display: none;
  flex-direction: column;
  min-width: 80px;
  z-index: 2;
}

.lang-menu a {
  display: block;
  padding: 6px 10px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 6px;
  text-align: center;
  color: #9aa0b6;
}
.lang-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.lang-menu a.active {
  color: #6b63ff;
  font-weight: 600;
}

.lang-dropdown.open .lang-menu {
  display: flex;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #0f1020;
  color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 clamp(18px, 4vw, 28px);
}

.section {
  padding: clamp(72px, 10vw, 120px) 0;
  scroll-margin-top: 120px;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 56px);
  line-height: 1.2;
}

h2 {
  font-size: clamp(2rem, 6vw, 56px);
  line-height: 1.2;
}

.section-title {
  text-align: center;
  font-weight: 700;
}

.section-subtext {
  text-align: left;
  font-size: clamp(1.1rem, 3vw, 25px);
  color: #9aa0b6;
  max-width: 750px;
  margin: 20px auto 40px;
}

.section-text {
  color: #9aa0b6;
  text-align: center;
  max-width: 100%;
  margin-bottom: 40px;
  font-size: clamp(1rem, 2.5vw, 18px);
}

.hero {
  padding: clamp(120px, 18vw, 200px) 0 clamp(88px, 12vw, 160px);
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-description {
  max-width: 750px;
  margin: 20px auto 0;
  color: #9aa0b6;
  font-size: clamp(1.05rem, 3vw, 25px);
  text-align: left;
}

.hero-intro,
.hero-outro {
  margin: 0;
}

.hero-list {
  margin: 10px 0;
  padding: 5px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #ffffff;
  font-weight: 500;
  font-size: clamp(1rem, 2.6vw, 22px);
}

.hero-list li::before {
  content: "✔";
  color: #6b63ff;
  font-weight: bold;
  flex-shrink: 0;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons a {
  text-decoration: none;
}

.hero-buttons .btn {
  font-size: clamp(1rem, 2.7vw, 22px);
  padding: 16px 32px;
  border-radius: 14px;
}

.solutions .solution-card {
  background: #17182f;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.solutions .solution-card:hover {
  transform: translateY(-6px);
}
.solutions .solution-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.solutions .solution-icon svg {
  width: 26px;
  height: 26px;
  fill: #6b63ff;
}
.solutions .solution-card:hover .solution-icon {
  background: #6b63ff;
  transform: scale(1.1);
}
.solutions .solution-card:hover .solution-icon svg {
  fill: white;
}
.solutions .solution-card:hover h3 {
  color: #6b63ff;
}
.solutions .solution-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.1rem, 2.8vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-align: center;
  min-height: 0;
}
.solutions .solution-card p {
  margin: 0;
  color: #9aa0b6;
  font-size: clamp(1rem, 2.3vw, 18px);
  line-height: 1.5;
  text-align: left;
}
.solutions .solution-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.solution-card {
  background: #17182f;
  padding: clamp(22px, 4vw, 30px);
  border-radius: 12px;
  transition: all 0.2s;
}
.solution-card:hover {
  transform: translateY(-6px);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.process-step {
  grid-column: auto;
  background: #17182f;
  padding: clamp(22px, 4vw, 24px);
  border-radius: 12px;
  text-align: center;
}

.process-step:nth-child(4) {
  grid-column: auto;
}

.process-step:nth-child(5) {
  grid-column: auto;
}

.process-icon-box {
  position: relative;
  width: clamp(92px, 20vw, 120px);
  height: clamp(92px, 20vw, 120px);
  margin: 0 auto 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.process-icon-box svg {
  width: clamp(42px, 10vw, 58px);
  height: clamp(42px, 10vw, 58px);
  fill: #6b63ff;
}

.process-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: black;
  font-size: 14px;
  font-weight: 700;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #fdb827, #f7c455);
}

.process-step:hover .process-icon-box {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.process-step:hover .process-icon-box svg {
  fill: white;
}

.process-step h3 {
  min-height: 0;
  font-size: clamp(1.1rem, 2.8vw, 22px);
}

.process-step p {
  margin: 0;
  color: #9aa0b6;
  font-size: clamp(1rem, 2.3vw, 18px);
  line-height: 1.5;
  text-align: left;
}

.project-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.project-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
}

.project-logo img {
  max-width: min(100%, 240px);
  width: 100%;
  height: auto;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.project-logo img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.project-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-content ul {
  margin: 20px 0;
  padding-left: 18px;
  color: #9aa0b6;
  margin-bottom: 20px;
  line-height: 1.5;
}

.project-content li {
  margin-bottom: 6px;
}

.project-content .btn {
  align-self: flex-start;
  width: 100%;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  font: inherit;
}
.contact-form textarea {
  min-height: 120px;
}

.btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: #6b63ff;
  color: white;
}

.footer {
  background: #17182f;
  padding: 20px 0;
  margin-top: 60px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-copy {
  margin: 0;
  color: #9aa0b6;
  font-size: 14px;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: #9aa0b6;
}

.footer-social a:hover {
  background: #6b63ff;
}

.footer-social a:hover svg {
  fill: white;
}

@media (min-width: 640px) {
  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .project-content .btn {
    width: auto;
  }
  .footer-inner {
    flex-direction: row;
  }
}
@media (min-width: 1100px) {
  .header {
    top: 20px;
    border-radius: 999px;
    width: 92%;
    padding: 0 32px;
  }
  .header.scrolled {
    width: 80%;
    max-width: 1100px;
    transform: scale(0.95);
  }
  .header-inner {
    gap: 28px;
  }
  .nav-toggle,
  .nav-toggle-input {
    display: none;
  }
  .header-panel {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    flex: 1 1 auto;
  }
  .nav {
    flex-direction: row;
    justify-content: center;
    gap: 28px;
    flex: 1 1 auto;
  }
  .nav a {
    font-size: 18px;
    padding: 2px;
    border-radius: 999px;
  }
  .lang-dropdown {
    align-self: center;
    flex-shrink: 0;
  }
  .lang-toggle {
    font-size: 18px;
    padding: 2px 6px;
  }
  .solutions-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
  }
  .process-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
  }
  .process-step {
    grid-column: span 2;
  }
  .process-step:nth-child(4) {
    grid-column: 2/span 2;
  }
  .process-step:nth-child(5) {
    grid-column: 4/span 2;
  }
  .project-card {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .project-logo {
    padding: 40px 20px;
  }
  .project-logo img {
    max-width: 260px;
  }
}
@media (max-width: 1099px) {
  .section {
    scroll-margin-top: 96px;
  }
  .section-subtext {
    margin-bottom: 28px;
  }
  .hero-buttons {
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .project-card,
  .footer-inner {
    text-align: center;
  }
  .project-content {
    align-items: stretch;
  }
  .project-content .btn {
    align-self: stretch;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-social {
    justify-content: center;
  }
}/*# sourceMappingURL=main.css.map */