/* --- Variables & Reset --- */
:root {
  --color-bg-main: #0a0e1a;
  --color-bg-secondary: #111625;
  --color-primary: #00e5ff; /* Neon Cyan */
  --color-secondary: #7b1fa2; /* Deep Purple */
  --color-accent: #ff4081; /* Neon Pink */
  --color-text-main: #e0e0e0;
  --color-text-muted: #a0aabf;
  --color-white: #ffffff;
  --color-error: #ff5252;
  --color-success: #4caf50;

  --font-family: "Outfit", sans-serif;

  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;

  --shadow-glow: 0 0 20px rgba(0, 229, 255, 0.3);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);

  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography & Utility Classes --- */
h1,
h2,
h3,
h4 {
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: 1.5rem;
}
p {
  margin-bottom: 1rem;
}

.text-gradient {
  background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

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

.section--decoration::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2300e5ff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

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

.section__title {
  margin-bottom: 20px;
}
.section__subtitle {
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 600;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn--primary {
  background: linear-gradient(
    45deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 25px rgba(0, 229, 255, 0.5);
}

.btn--accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}
.btn--accent:hover {
  background-color: #ff6097;
}

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

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

.btn--full {
  width: 100%;
}
.btn--sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}
.icon-btn i {
  margin-left: 10px;
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  transition: all 0.3s ease;
}

.logo:hover {
  opacity: 0.7;
  transform: scale(1.05);
}

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

.logo img {
  width: 50px;
  height: 50px;
}

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

.nav__link {
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

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

.burger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg-main);
  z-index: 2000;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
}

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

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.close-btn {
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
}

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

.mobile-nav__link {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

/* --- Hero Section --- */
.hero {
  padding-top: calc(var(--header-height) + 80px);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at top right,
      rgba(123, 31, 162, 0.2),
      transparent 50%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(0, 229, 255, 0.2),
      transparent 50%
    );
  z-index: -1;
}

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

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero__btns {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.hero__image-wrapper {
  position: relative;
}

.hero__image {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-glow);
  position: relative;
  z-index: 1;
}

.hero__floating-card {
  position: absolute;
  background: rgba(17, 22, 37, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 229, 255, 0.1);
  z-index: 2;
  font-weight: 600;
}

.hero__floating-card i {
  color: var(--color-primary);
}

.floating-card--1 {
  top: -30px;
  left: -30px;
  animation: float 4s ease-in-out infinite;
}

.floating-card--2 {
  bottom: -30px;
  right: -30px;
  animation: float 4s ease-in-out infinite reverse;
}

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

/* --- Section 1: Rich Text --- */
.rich-text-block p {
  font-size: 1.15rem;
  margin-bottom: 25px;
  color: var(--color-text-muted);
}

.rich-text-block strong {
  color: var(--color-white);
  font-weight: 700;
}

/* --- Section 2: Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background: var(--color-bg-secondary);
  padding: 40px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.feature-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--color-white);
}

.feature-card h3 {
  margin-bottom: 15px;
}
.feature-card p {
  color: var(--color-text-muted);
}

/* --- Section 3: Process Steps --- */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step-item {
  position: relative;
  padding: 30px;
  background: var(--color-bg-main);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.step-item__number {
  font-size: 3rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-primary);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: -1;
}

.step-item h3 {
  margin-bottom: 15px;
  color: var(--color-primary);
}
.step-item p {
  color: var(--color-text-muted);
}

/* --- Section 4: Split Screen --- */
.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-screen__image img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
}

.split-screen__content p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 25px;
}
.split-screen__content strong {
  color: var(--color-white);
}

/* --- Section 5: Banner --- */
.section--banner {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-primary)
  );
  padding: 80px 0;
  margin: 60px 0;
  border-radius: var(--border-radius-lg);
}

.banner-content h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
}
.banner-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}
.banner-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

/* --- Section 6: FAQ --- */
.faq-container {
  max-width: 800px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--color-bg-secondary);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-header {
  width: 100%;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--color-primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-item.active .faq-header {
  color: var(--color-primary);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content {
  padding: 0 25px 25px 25px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- Section 7: Contact Form --- */
.contact-section {
  padding-bottom: 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info p {
  color: var(--color-text-muted);
  margin-bottom: 40px;
  font-size: 1.1rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item i {
  color: var(--color-accent);
  width: 24px;
  height: 24px;
}
.contact-item p {
  margin-bottom: 0;
  color: var(--color-white);
  font-weight: 600;
}

.contact-form-wrapper {
  background: var(--color-bg-main);
  padding: 50px;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  box-shadow: var(--shadow-card);
}

.form-title {
  margin-bottom: 30px;
  color: var(--color-primary);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}
.form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-input {
  width: 100%;
  padding: 15px;
  background: var(--color-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  color: var(--color-white);
  font-family: var(--font-family);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.error-message {
  color: var(--color-error);
  font-size: 0.85rem;
  margin-top: 8px;
  display: none;
}

.form-input.error {
  border-color: var(--color-error);
}
.form-input.error + .error-message {
  display: block;
}

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

.form-checkbox {
  mt: 5px;
  accent-color: var(--color-primary);
  width: 20px;
  height: 20px;
}

.form-checkbox-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.success-message {
  display: none;
  margin-top: 20px;
  padding: 15px;
  background: rgba(76, 175, 80, 0.2);
  color: var(--color-success);
  border-radius: var(--border-radius-sm);
  text-align: center;
}

/* --- Footer --- */
.footer {
  background: #05070d;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo--footer {
  margin-bottom: 20px;
}
.footer__brand p {
  color: var(--color-text-muted);
  max-width: 300px;
}
.footer h4 {
  margin-bottom: 25px;
  color: var(--color-white);
}

.footer__links li {
  margin-bottom: 15px;
}
.footer__links a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.footer__links a:hover {
  color: var(--color-primary);
}

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

/* --- Cookie Pop-up --- */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  max-width: 400px;
  background: var(--color-bg-secondary);
  padding: 25px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 229, 255, 0.2);
  z-index: 3000;
  display: none; /* Hidden by default */
  animation: slideInUp 0.5s ease forwards;
}

.cookie-popup__content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.cookie-popup__content a {
  color: var(--color-primary);
  text-decoration: underline;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Media Queries (Adaptiveness) --- */
@media (max-width: 992px) {
  .desktop-nav,
  .desktop-only {
    display: none;
  }
  .burger-btn {
    display: block;
  }

  .hero {
    padding-top: 120px;
    text-align: center;
  }
  .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__subtitle {
    margin: 0 auto 40px;
  }
  .hero__btns {
    justify-content: center;
  }

  .split-screen,
  .contact-container {
    grid-template-columns: 1fr;
  }
  .split-screen__image {
    order: -1;
  }
  .contact-form-wrapper {
    padding: 30px;
    border-radius: var(--border-radius-md);
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__btns {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }

  .hero__floating-card {
    display: none;
  } /* Hide floating elements on small screens */

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .cookie-popup {
    left: 10px;
    right: 10px;
    width: auto;
    bottom: 10px;
  }
  .contact-form-wrapper {
    padding: 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(--accent);
  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;
}

@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;
  }
}

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

.margin {
  margin: 120px 0 50px;
}
