/* VARIABLES & RESET */
:root {
  --bg: #0f1115;
  --text: #f0f2f5;
  --text-muted: #a0a4b0;
  --primary: #7b61ff;
  --secondary: #00c2ff;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 16px;

  --font-main: "Outfit", sans-serif;
  --radius: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

/* AMBIENT BACKGROUND */
.ambient-light {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
}
.one {
  top: -100px;
  left: -100px;
  background: var(--primary);
}
.two {
  bottom: -100px;
  right: -100px;
  background: var(--secondary);
}

/* LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.narrow {
  max-width: 700px;
}
.center {
  text-align: center;
  margin-bottom: 50px;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: 4rem;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.25rem;
}
p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.gradient-text {
  background: linear-gradient(135deg, #fff, var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* NAVIGATION (FLOATING) */
.glass-nav {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
}
.nav-container {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  padding: 12px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  color: #ddd;
}
.nav-links a:hover {
  color: #fff;
}

.menu-toggle {
  background: none;
  color: #fff;
  display: none;
}

/* HERO */
.hero {
  padding: 180px 0 100px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(123, 97, 255, 0.2);
  color: #b4a0ff;
  font-size: 0.85rem;
  margin-bottom: 20px;
  border: 1px solid rgba(123, 97, 255, 0.3);
}
.hero-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  align-items: center;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-glass:hover {
  background: #fff;
  color: #000;
}
.btn-link {
  font-weight: 600;
}
.btn-link:hover {
  opacity: 0.8;
}

.hero-visual {
  position: relative;
}
.float-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.float-card i {
  color: var(--secondary);
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

/* SPLIT LAYOUT (MISSION) */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.check-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.check-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  display: block;
}

/* CARDS GRID (TRACKS) */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: var(--radius);
  transition: 0.3s;
}
.glass-panel:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}
.panel-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.panel-icon.purple {
  background: rgba(123, 97, 255, 0.2);
  color: var(--primary);
}
.panel-icon.blue {
  background: rgba(0, 194, 255, 0.2);
  color: var(--secondary);
}
.panel-icon.green {
  background: rgba(0, 255, 163, 0.2);
  color: #00ffa3;
}

/* STEPS */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-card {
  text-align: center;
}
.step-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  margin-bottom: -20px;
  position: relative;
  z-index: -1;
}
.step-card h4 {
  margin-bottom: 10px;
  color: #fff;
}

/* EXPERTS */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.expert-item {
  text-align: center;
}
.exp-img {
  margin-bottom: 20px;
}
.exp-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.expert-item span {
  font-size: 0.85rem;
  color: var(--primary);
}

/* PRICING */
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--glass-border);
  padding: 40px 30px;
  border-radius: var(--radius);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: linear-gradient(
    180deg,
    rgba(123, 97, 255, 0.1) 0%,
    rgba(15, 17, 21, 0) 100%
  );
  border-color: var(--primary);
}
.pop-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.7rem;
  background: var(--primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
}
.p-sub {
  font-size: 0.9rem;
  margin-bottom: 30px;
}
.pricing-card ul {
  margin-top: auto;
}
.pricing-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.9rem;
  color: #ddd;
}
.pricing-card li:last-child {
  border-bottom: none;
}

/* FAQ */
.glass-accordion .acc-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  margin-bottom: 15px;
  overflow: hidden;
}
.acc-head {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
.acc-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
  color: var(--text-muted);
}
.acc-item.active .acc-body {
  padding-bottom: 20px;
  max-height: 200px;
}

/* FORM */
.glass-form-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 50px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}
.form-title {
  text-align: center;
  margin-bottom: 40px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.input-group {
  margin-bottom: 24px;
}
.input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #ccc;
}
.input-group input,
.input-group select {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
}
.input-group input:focus,
.input-group select:focus {
  border-color: var(--primary);
  outline: none;
  background: rgba(0, 0, 0, 0.5);
}

.checkbox-wrapper {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  align-items: flex-start;
  margin-bottom: 30px;
}
.checkbox-wrapper a {
  color: var(--secondary);
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: 0.3s;
}
.submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* FOOTER */
.glass-footer {
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 30px;
  background: #0b0d10;
  margin-top: 60px;
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
}
.f-brand h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.f-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.f-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.f-links a:hover {
  color: #fff;
}
.f-contact a {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}
.footer-copy {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  color: #555;
  font-size: 0.8rem;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0f1115;
  z-index: 2000;
  padding: 30px;
  transform: translateY(-100%);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  transform: translateY(0);
}
.mm-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mm-head span {
  font-weight: 700;
  font-size: 1.2rem;
}
#closeMenu {
  background: none;
  color: #fff;
}
.mm-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mm-links a {
  font-size: 1.5rem;
  font-weight: 600;
}

/* COOKIE */
.cookie-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 20px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 5000;
  max-width: 300px;
}
#acceptCookie {
  background: #fff;
  color: #000;
  padding: 8px;
  border-radius: 8px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }

  h1 {
    font-size: 2.8rem;
  }
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  } /* Hide visual on mobile for cleaner look */

  .split-layout {
    grid-template-columns: 1fr;
  }
  .split-img {
    order: 2;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .steps-row {
    grid-template-columns: 1fr;
  }
  .center h2 {
    font-size: 2rem;
  }
  .experts-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .glass-form-container {
    padding: 30px 20px;
  }
  .input-row {
    grid-template-columns: 1fr;
  }
}

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

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

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

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