:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #ec4899;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
  --border: #e2e8f0;
  --text: #334155;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark);
}

.logo svg {
  width: 30px;
  height: 30px;
}

.logo__icon {
  color: var(--primary);
}

.nav {
  display: none;
}

@media (min-width: 992px) {
  .nav {
    display: block;
  }
}

.nav__list {
  display: flex;
  gap: 30px;
}

.nav__link {
  font-weight: 600;
  color: var(--text);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Mobile Menu */
.burger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

@media (min-width: 992px) {
  .burger {
    display: none;
  }
}

.burger span {
  width: 30px;
  height: 3px;
  background-color: var(--dark);
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-menu.is-active {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.mobile-nav__link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

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

.btn--outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--small {
  padding: 8px 16px;
  font-size: 0.9rem;
  display: none;
  background: var(--dark);
  color: var(--white);
}

@media (min-width: 768px) {
  .btn--small {
    display: inline-block;
  }
}

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

/* Hero */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.1) 0%,
    rgba(236, 72, 153, 0.05) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: -1;
}

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

@media (min-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
  }
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.badge--glow {
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
  background: var(--primary);
  color: var(--white);
}

.hero__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3.5rem;
  }
}

.hero__text {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
}

.hero__img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: transform 0.5s;
}

.hero__visual:hover .hero__img {
  transform: rotate(0deg);
}

.card-float {
  position: absolute;
  background: var(--white);
  padding: 15px 25px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--dark);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.card-float--1 {
  top: 10%;
  left: -20px;
}

.card-float--2 {
  bottom: 10%;
  right: -20px;
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--dark .section__title,
.section--dark .text-lg {
  color: var(--white);
}

.section--dark .text-lg {
  opacity: 0.9;
}

.section--gradient {
  background: var(--gradient);
  color: var(--white);
}

.section__header {
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.section__title {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--gray);
}

/* Grid */
.grid {
  display: grid;
  gap: 30px;
}

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

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

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Feature Cards */
.card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.3s;
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.card__icon {
  width: 60px;
  height: 60px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.card__title {
  margin-bottom: 15px;
}

.card__text {
  color: var(--gray);
}

/* Process Section */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  align-items: center;
}

.col-6 {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .col-6 {
    width: 50%;
    margin-bottom: 0;
  }
}

.rounded-img {
  border-radius: var(--radius);
  width: 100%;
}

.content-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.check-list {
  margin: 30px 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.check-list i {
  color: var(--secondary);
}

/* Feature Box */
.feature-box {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.feature-box__img {
  height: 250px;
  overflow: hidden;
}

.feature-box__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.feature-box:hover .feature-box__img img {
  transform: scale(1.1);
}

.feature-box__content {
  padding: 30px;
}

.feature-box__content h3 {
  margin-bottom: 15px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-weight: 700;
  margin-top: 15px;
}

.link-arrow:hover {
  gap: 10px;
}

/* CTA */
.cta-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 60px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.cta-text {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

/* FAQ */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--white);
}

.faq-question h3 {
  font-size: 1.1rem;
  margin: 0;
}

.faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 25px 25px;
  color: var(--gray);
  display: none;
  animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact */
.section--contact {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  color: var(--white);
}

.text-white {
  color: var(--white);
}
.opacity-80 {
  opacity: 0.8;
}
.mb-6 {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

.form-group a {
  color: var(--primary);
  text-decoration: underline;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  margin-top: 5px;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--gray);
}

.full-width {
  width: 100%;
}

/* Footer */
.footer {
  background: #0b1120;
  color: #cbd5e1;
  padding: 80px 0 30px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer__col-adress {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.footer__col-adress span {
  margin-left: 10px;
}

@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.logo--footer {
  color: var(--white);
  margin-bottom: 20px;
}

.footer__text {
  max-width: 300px;
  font-size: 0.9rem;
}

.footer__col h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  max-width: 400px;
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  z-index: 5000;
  display: none;
  border-left: 5px solid var(--primary);
}

.cookie-content h3 {
  margin-bottom: 10px;
}

.cookie-content p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--ink);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .margin {
    font-size: 28px;
  }
}
