/* Variables & Reset */
:root {
  --primary: #4f46e5;
  --secondary: #0ea5e9;
  --accent: #d946ef;
  --dark: #0f172a;
  --darker: #020617;
  --light: #f8fafc;
  --gray: #64748b;
  --text-main: #e2e8f0;
  --radius: 12px;
  --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --font-main: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

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

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

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

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.6);
}

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

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

.btn-white {
  background: white;
  color: var(--primary);
  font-weight: bold;
  margin: 30px 0;
}

.btn-white:hover {
  background: var(--light);
  transform: scale(1.05);
}

.btn-full {
  width: 100%;
  justify-content: center;
  background: var(--accent);
  color: white;
  font-size: 1.1rem;
}

.btn-full:hover {
  background: #c026d3;
}

.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  background: linear-gradient(to right, #fff, var(--gray));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

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

.desk-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 0.95rem;
  color: var(--gray);
}

.nav-link:hover {
  color: var(--secondary);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.burger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--darker);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: 0.4s ease-in-out;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.mobile-menu__close {
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

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

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.close-menu i {
  width: 32px;
  height: 32px;
}

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

.mobile-link {
  font-size: 1.5rem;
  font-weight: 600;
}

.mobile-link.cta {
  color: var(--accent);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 70% 20%,
      rgba(14, 165, 233, 0.15),
      transparent 50%
    ),
    radial-gradient(circle at 20% 80%, rgba(217, 70, 239, 0.1), transparent 40%);
  z-index: -1;
}

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

.hero__text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  background: linear-gradient(135deg, white, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__text p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 35px;
  max-width: 90%;
}

.hero__btns {
  display: flex;
  gap: 15px;
}

.img-box {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.img-box img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

.glow {
  box-shadow: 0 0 40px rgba(14, 165, 233, 0.3);
}

/* Grids & Cards */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.label {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--secondary);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-block h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: white;
}

.text-block p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
  transition: 0.3s;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(10px);
}

.feature-card i {
  color: var(--accent);
  width: 32px;
  height: 32px;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: white;
  margin-bottom: 10px;
}

/* Info Cards */
.center-head {
  text-align: center;
  margin-bottom: 60px;
}

.info-card {
  background: var(--dark);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

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

.info-card.highlight {
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.1), var(--dark));
  border-color: rgba(14, 165, 233, 0.3);
}

.icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--secondary);
}

.info-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

/* Visual Section */
.section-visual {
  background: url("./image/glowing-molecular-structure-futuristic-galaxy-backdrop-generated-by-ai\ \(1\).jpg")
    no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-attachment: fixed;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.7);
}

.content-visual {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.content-visual h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: white;
}

/* Reverse Grid + Check List */
.reverse .img-wrapper {
  order: 2;
}

.img-wrapper {
  position: relative;
}

.img-wrapper img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--darker);
  padding: 15px 25px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--accent);
}

.floating-badge i {
  color: var(--accent);
}

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

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

/* Steps */
.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  position: relative;
  padding-top: 40px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.step-num {
  position: absolute;
  top: -15px;
  left: 0;
  background: var(--darker);
  padding-right: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* Section Gradient */
.section-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.big-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.lead-text {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 20px 0 40px;
}

.cta-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 30px;
  border-radius: var(--radius);
  display: inline-block;
  max-width: 600px;
}

.cta-box p {
  margin-bottom: 20px;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
}

.stat-val {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--gray);
}

/* FAQ */
.bg-light {
  background: #1e293b;
}

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

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 20px 0;
  color: white;
  font-size: 1.2rem;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-right: 20px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--gray);
}

/* Contact Form */
.section-contact {
  display: flex;
  justify-content: center;
}

.form-wrapper {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  background: var(--dark);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.input-group {
  margin-bottom: 20px;
  position: relative;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  width: 18px;
}

.input-group input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid #334155;
  border-radius: 8px;
  color: white;
  font-family: inherit;
  transition: 0.3s;
}

.input-group input:focus {
  border-color: var(--secondary);
  outline: none;
}

.error-msg {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

.checkbox-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 25px;
  font-size: 0.85rem;
  color: var(--gray);
}

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

.checkbox-group a {
  color: var(--secondary);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #000;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col p {
  color: var(--gray);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.legal-links li {
  margin-bottom: 10px;
}

.legal-links a {
  color: var(--gray);
  font-size: 0.9rem;
}

.legal-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #475569;
  font-size: 0.85rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: white;
  color: var(--dark);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 2000;
  max-width: 350px;
  display: none; /* JS toggles this */
  animation: slideUp 0.5s ease-out;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-icon {
  color: var(--primary);
  width: 30px;
  height: 30px;
}

.cookie-content p {
  font-size: 0.9rem;
}

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

/* Responsive */
@media (max-width: 992px) {
  .hero__text h1 {
    font-size: 2.8rem;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .reverse .img-wrapper {
    order: -1;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .steps-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 890px) {
  .desk-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero {
    padding-top: 100px;
  }
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__btns {
    justify-content: center;
  }
  .hero__text p {
    margin: 0 auto 35px;
  }
  .steps-container {
    grid-template-columns: 1fr;
  }
  .checkbox-group {
    white-space: normal;
  }
  .section-title {
    font-size: 2rem;
  }
}

.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 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(--primary);
}

.text-wrapper a.email {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 32px;
    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: var(--darker);
}

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