:root {
  --bg-main: #0b1120;
  --bg-sec: #0f172a;
  --primary: #06b6d4; /* Cyan */
  --primary-hover: #0891b2;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --border: rgba(6, 182, 212, 0.2);
  --glass: rgba(15, 23, 42, 0.7);
  --font: "Exo 2", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.text-glow {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.center {
  text-align: center;
}
.mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}

/* Buttons */
.btn-primary,
.btn-submit,
.btn-mm {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: var(--bg-main);
  font-weight: 700;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--font);
  transition: 0.3s;
}

.btn-primary:hover,
.btn-submit:hover {
  background: #fff;
  box-shadow: 0 0 15px var(--primary);
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
}

.btn-outline:hover {
  background: rgba(6, 182, 212, 0.1);
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 900;
  line-height: 0.9;
  font-size: 1.2rem;
  color: #fff;
}

.desktop-nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
}

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

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

.contact-link {
  font-size: 0.9rem;
  color: #fff;
}

/* Burger Button */
.burger-btn {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.burger-btn svg {
  width: 32px;
  height: 32px;
}

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

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

.mm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.mm-logo {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.2rem;
}

.mm-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.mm-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mm-content a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.mm-content a:hover {
  color: var(--primary);
}

.mm-highlight {
  color: var(--primary) !important;
}

.btn-mm {
  margin-top: 20px;
  text-align: center;
}

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

.hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.1;
  z-index: -1;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid var(--primary);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 25px;
  color: var(--primary);
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.card-glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px;
  transform: rotate(-2deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cg-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: var(--primary);
  font-family: monospace;
}

.cg-body h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.loader-line {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 20px 0;
  overflow: hidden;
}
.line-fill {
  height: 100%;
  width: 80%;
  background: var(--primary);
  animation: load 3s ease-out forwards;
}
@keyframes load {
  from {
    width: 0;
  }
  to {
    width: 90%;
  }
}

.stats-row {
  display: flex;
  gap: 40px;
}
.stats-row strong {
  display: block;
  font-size: 1.5rem;
  color: #fff;
}
.stats-row span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Ticker */
.ticker-wrap {
  background: var(--primary);
  padding: 15px 0;
  overflow: hidden;
  transform: rotate(1deg) scale(1.05);
  margin: 50px 0;
}

.ticker {
  white-space: nowrap;
  animation: tickerAnim 20s linear infinite;
  font-weight: 700;
  color: #000;
  font-size: 1.2rem;
}

@keyframes tickerAnim {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Section General */
.section {
  padding: 80px 0;
}
.bg-alt {
  background: var(--bg-sec);
}

/* Features Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 8px;
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  background: rgba(6, 182, 212, 0.05);
}

.fb-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.check-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}
.check-list i {
  color: var(--primary);
}

.split-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prog-card {
  background: var(--bg-main);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--border);
  transition: 0.3s;
}

.prog-card:hover,
.prog-card.active {
  border-left-color: var(--primary);
  transform: translateX(10px);
}

.pc-num {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  display: block;
}
.prog-card h4 {
  margin: 5px 0;
  font-size: 1.2rem;
}
.prog-card p {
  margin: 0;
  font-size: 0.9rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  background: radial-gradient(
    circle at center,
    rgba(6, 182, 212, 0.1) 0%,
    transparent 70%
  );
  padding: 40px;
}

.stat-val {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
}
.stat-lbl {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin: 10px 0;
}

/* Reviews */
.review-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.rc-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.rc-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--bg-main);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.rc-header h5 {
  margin: 0;
  font-size: 1.1rem;
}
.rc-header small {
  color: var(--text-muted);
}

/* FAQ */
.narrow {
  max-width: 800px;
  margin: 0 auto;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
}

.acc-item {
  background: var(--bg-sec);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.acc-btn {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.acc-btn::after {
  content: "+";
  color: var(--primary);
  font-size: 1.5rem;
}
.acc-btn.active::after {
  content: "-";
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease-out;
  background: rgba(0, 0, 0, 0.2);
}

.acc-content p {
  padding: 20px;
  margin: 0;
}

/* Form */
.form-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-sec);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(6, 182, 212, 0.1);
}

.fb-left {
  padding: 50px;
  background: linear-gradient(135deg, #0f172a 0%, #0b1120 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefits-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.benefits-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.benefits-list i {
  color: var(--primary);
}

.fb-right {
  padding: 50px;
  background: #080c16;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.form-group input {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fff;
  outline: none;
}
.form-group input:focus {
  border-color: var(--primary);
}

.error-text {
  color: #ff4d4d;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}
.form-group.error input {
  border-color: #ff4d4d;
}
.form-group.error .error-text {
  display: block;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}
.captcha-row label {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
  min-width: 100px;
  margin: 0;
}
.captcha-row input {
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 4px;
}
.cap-err {
  display: none;
  margin-bottom: 15px;
  color: #ff4d4d;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
  margin-top: 15px;
}
.check-row label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.check-row a {
  color: var(--primary);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
}

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

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

.f-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: 15px;
}

.footer h5 {
  color: #fff;
  margin-bottom: 20px;
}
.f-col a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.f-col a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.contact-hl {
  color: var(--primary) !important;
  font-weight: 700;
}

.contacts p {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.contacts i {
  color: var(--primary);
  width: 18px;
}

.soc-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.soc-links a {
  color: #fff;
}
.soc-links a:hover {
  color: var(--primary);
}

.footer-copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  bottom: 30px;
  left: 30px;
  max-width: 350px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--primary);
  padding: 25px;
  border-radius: 12px;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.5s;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.cookie-content h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.cookie-content p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
#cookieAccept {
  background: var(--primary);
  border: none;
  padding: 8px 20px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image {
    margin-top: 50px;
  }
  .hero-btns {
    justify-content: center;
    flex-direction: column;
  }
  .footer-cont {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Header Changes */
  .desktop-nav,
  .header-actions .btn-primary,
  .header-actions .contact-link {
    display: none;
  }

  .ticker-wrap {
    display: none;
  }

  .burger-btn {
    display: block; /* Show burger on mobile */
  }

  .header-row {
    justify-content: space-between;
  }

  /* Grids */
  .grid-3,
  .stats-grid,
  .review-row,
  .split-layout,
  .form-box {
    grid-template-columns: 1fr;
  }

  .footer-cont {
    grid-template-columns: 1fr;
  }

  /* Typography */
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }

  .fb-left,
  .fb-right {
    padding: 30px 20px;
  }
  .card-glass {
    transform: rotate(0);
  }
}

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