/* DESIGN SYSTEM: Soft Glass / Nebula */
:root {
  --bg-deep: #0b0e14;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.1);

  --primary: #00f0ff; /* Cyan */
  --secondary: #7000ff; /* Violet */
  --text-main: #ffffff;
  --text-muted: #94a3b8;

  --font-head: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius: 20px;
  --container: 1200px;
}

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

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

/* BACKGROUND BLOBS */
.blob {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}
.b1 {
  top: -200px;
  left: -200px;
  background: var(--secondary);
}
.b2 {
  bottom: -200px;
  right: -200px;
  background: var(--primary);
}

/* UTILS */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}
img {
  width: 100%;
  display: block;
  object-fit: cover;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 20px;
}
h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 15px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 120px 0;
}
.center {
  text-align: center;
  margin-bottom: 60px;
}
.narrow {
  max-width: 800px;
  margin: 0 auto;
}

/* GRADIENTS */
.gradient-txt {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  color: transparent;
}

/* BUTTONS */
.btn-glow {
  padding: 10px 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-head);
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}
.btn-glow:hover {
  background: var(--primary);
  color: var(--bg-deep);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.btn-primary {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-head);
  transition: 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(112, 0, 255, 0.3);
}

.btn-glass {
  display: inline-block;
  padding: 18px 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-head);
  transition: 0.3s;
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* HEADER */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(11, 14, 20, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-glass);
  z-index: 100;
}
.h-flex {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
.logo-icon {
  display: flex;
  align-items: center;
}

.desktop-nav {
  display: flex;
  gap: 30px;
}
.desktop-nav a {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}
.desktop-nav a:hover {
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.h-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* MOBILE MENU */
.mob-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #11141d;
  z-index: 200;
  transform: translateX(100%);
  transition: 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border-glass);
}
.mob-drawer.active {
  transform: translateX(0);
}
.md-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  font-family: var(--font-head);
  color: var(--text-muted);
}
#closeMob {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
.md-links a {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.highlight {
  color: var(--primary);
}

/* HERO */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tag {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 0.8rem;
  margin-bottom: 30px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
}
.hero-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.float {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-family: monospace;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  margin-right: 5px;
  opacity: 0.5;
}
.chat-sim {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.msg {
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  max-width: 90%;
}
.bot {
  background: rgba(255, 255, 255, 0.05);
  align-self: flex-start;
  color: var(--text-muted);
  border-bottom-left-radius: 2px;
}
.user {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  align-self: flex-end;
  color: white;
  border-bottom-right-radius: 2px;
}

/* TICKER */
.ticker-bar {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  overflow: hidden;
  position: relative;
  z-index: 2;
  transform: rotate(-2deg);
  margin-bottom: 100px;
}
.ticker-track {
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
  animation: scroll 30s linear infinite;
}
.ticker-track span {
  color: white;
  margin: 0 10px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* MISSION */
.split-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.lead {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 30px;
  font-weight: 500;
}
.txt-block p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.stats-row {
  display: flex;
  gap: 50px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-glass);
}
.stat strong {
  display: block;
  font-size: 2.5rem;
  color: var(--primary);
  font-family: var(--font-head);
  line-height: 1;
}
.stat span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mission-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border-glass);
  transition: 0.3s;
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--secondary);
}
.feature-card i {
  color: var(--secondary);
  margin-bottom: 15px;
  width: 30px;
  height: 30px;
}
.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* GUIDES GRID */
.sec-header p {
  color: var(--text-muted);
  font-size: 1.2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.glass-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 40px 30px;
  transition: 0.4s;
  display: flex;
  flex-direction: column;
}
.glass-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
}
.gi-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.5rem;
}
.c1 {
  background: rgba(255, 99, 71, 0.2);
  color: tomato;
}
.c2 {
  background: rgba(100, 149, 237, 0.2);
  color: cornflowerblue;
}
.c3 {
  background: rgba(50, 205, 50, 0.2);
  color: limegreen;
}
.c4 {
  background: rgba(255, 215, 0, 0.2);
  color: gold;
}
.c5 {
  background: rgba(255, 105, 180, 0.2);
  color: hotpink;
}
.c6 {
  background: rgba(138, 43, 226, 0.2);
  color: blueviolet;
}

.glass-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.glass-item p {
  color: var(--text-muted);
  margin-bottom: 30px;
  flex-grow: 1;
  font-size: 1rem;
}
.link-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: white;
  font-size: 0.9rem;
}
.link-arrow i {
  width: 18px;
  transition: 0.3s;
}
.glass-item:hover .link-arrow i {
  transform: translateX(5px);
  color: var(--primary);
}

/* REVIEWS */
.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.review-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border-glass);
}
.rc-content {
  font-style: italic;
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.6;
}
.rc-author {
  display: flex;
  gap: 15px;
  align-items: center;
}
.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-family: var(--font-head);
}
.info strong {
  display: block;
  font-size: 1rem;
}
.info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ */
.accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border-glass);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: 0.3s;
}
.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 25px;
  background: none;
  border: none;
  color: white;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-btn::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary);
  transition: 0.3s;
}
.faq-btn.active::after {
  transform: rotate(45deg);
  color: var(--secondary);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  padding: 0 25px;
}
.faq-body p {
  padding-bottom: 25px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CONTACT FORM */
.section-form {
  background: linear-gradient(180deg, var(--bg-deep), #0d121c);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.sub-label {
  color: var(--primary);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}
.form-intro h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
}
.form-intro p {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1.1rem;
}
.contact-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}
.c-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}
.contact-list strong {
  display: block;
  font-family: var(--font-head);
}
.contact-list span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-wrapper {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid var(--border-glass);
}
.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ddd;
}
.field input,
.field textarea {
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: 0.3s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0, 240, 255, 0.05);
}

.privacy-box {
  display: flex;
  gap: 15px;
  align-items: start;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.privacy-box input {
  margin-top: 4px;
}
.privacy-box a {
  color: var(--primary);
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: white;
  color: var(--bg-deep);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.submit-btn:hover {
  background: var(--primary);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

/* FOOTER */
.glass-footer {
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 30px;
  background: #06080c;
  margin-top: 0;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}
.f-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 20px 0;
  line-height: 1.6;
  max-width: 300px;
}
.f-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.f-social a {
  margin-right: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}
.f-social a:hover {
  color: var(--primary);
}

.glass-footer h5 {
  margin-bottom: 25px;
  color: white;
  font-size: 1rem;
}
.glass-footer a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.glass-footer a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.f-contact p {
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.f-contact .hl {
  color: white;
  border-bottom: 1px solid var(--border-glass);
  display: inline-block;
  margin-top: 10px;
}

.f-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #555;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* COOKIE */
.cookie-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  background: rgba(11, 14, 20, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--primary);
  padding: 20px;
  border-radius: 50px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 500;
}
.cn-text {
  font-size: 0.9rem;
  color: white;
}
#acceptCookie {
  padding: 10px 25px;
  background: var(--primary);
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  color: var(--bg-deep);
  transition: 0.3s;
}
#acceptCookie:hover {
  background: white;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .desktop-nav,
  .btn-glow {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .h-actions {
    display: flex;
  }

  .hero-content,
  .split-layout,
  .contact-grid,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-desc,
  .hero-buttons {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .hero-image {
    display: none;
  }

  .btn-glass {
    width: 100%;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .ticker-bar {
    display: none;
  }

  .reviews-slider {
    grid-template-columns: 1fr;
  }
  .cookie-notification {
    flex-direction: column;
    border-radius: 20px;
    text-align: center;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 10px;
  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: 22px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
