:root {
  --bg-dark: #090919;
  --bg-light: #12122a;
  --primary: #7c3aed; /* Violet */
  --secondary: #22d3ee; /* Cyan */
  --text-main: #ffffff;
  --text-muted: #a1a1aa;
  --glass: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --font-head: "Outfit", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  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;
}

/* Background FX */
.nebula {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  z-index: -1;
  animation: moveNebula 20s infinite alternate;
}

.n1 {
  top: -100px;
  left: -100px;
  background: var(--primary);
}
.n2 {
  bottom: -100px;
  right: -100px;
  background: var(--secondary);
  animation-direction: alternate-reverse;
}

@keyframes moveNebula {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  pointer-events: none;
}

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

h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 25px;
}
h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

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

.center {
  text-align: center;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.btn-primary.small {
  padding: 8px 20px;
  font-size: 0.9rem;
}
.btn-primary.full {
  width: 100%;
  text-align: center;
}
.btn-primary.glow {
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-ghost {
  color: var(--text-muted);
  font-weight: 600;
  padding: 8px 15px;
}
.btn-ghost:hover {
  color: #fff;
}

/* Header */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background: rgba(9, 9, 25, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-family: var(--font-head);
  letter-spacing: 1px;
  font-size: 1.2rem;
}
.logo-icon {
  filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.5));
}

.desk-nav {
  display: flex;
  gap: 30px;
}
.desk-nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}
.desk-nav a:hover,
.desk-nav a.active {
  color: #fff;
}

.h-btns {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-togg {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Mobile Menu */
.mob-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 2000;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: 0.4s ease;
  border-left: 1px solid var(--border);
}

.mob-menu.active {
  right: 0;
}

.mm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
  font-weight: 700;
  font-family: var(--font-head);
}
#closeMm {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.mm-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mm-body a {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-head);
}
.mm-cta {
  color: var(--secondary);
  margin-top: 20px;
}

.mm-foot {
  margin-top: auto;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
}

/* Hero */
.hero {
  padding-top: 150px;
  padding-bottom: 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 6px 15px;
  border-radius: 30px;
  color: #c4b5fd;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
}

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

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.trust-badge i {
  color: var(--secondary);
  width: 18px;
}

.hero-visual {
  position: relative;
}
.glass-phone {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 30px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.msg {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.bubble {
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  font-size: 0.9rem;
  line-height: 1.4;
}
.msg.user {
  flex-direction: row-reverse;
}
.msg.user .bubble {
  background: var(--primary);
  color: #fff;
}

.typing span {
  display: inline-block;
  animation: blink 1.4s infinite both;
  font-size: 1.5rem;
  line-height: 10px;
}
.typing span:nth-child(2) {
  animation-delay: 0.2s;
}
.typing span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes blink {
  0% {
    opacity: 0.2;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

.float-card {
  position: absolute;
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
}
.fc-1 {
  top: 40px;
  right: -30px;
}
.fc-2 {
  bottom: 40px;
  left: -30px;
  animation-delay: 2s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Ticker */
.logo-strip {
  background: var(--bg-light);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip-track {
  white-space: nowrap;
  display: flex;
  gap: 30px;
  animation: scroll 30s linear infinite;
  color: var(--text-muted);
  font-weight: 700;
  font-family: var(--font-head);
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Solutions */
.section {
  padding: 100px 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.s-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 40px 30px;
  border-radius: 20px;
  transition: 0.3s;
}

.s-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  background: rgba(124, 58, 237, 0.05);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  margin-bottom: 25px;
}

.link-arrow {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}
.link-arrow:hover {
  text-decoration: underline;
}

/* Blog */
.bg-glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.blog-row {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(18, 18, 42, 0.5);
  transition: 0.3s;
}

.blog-row:hover {
  border-color: var(--secondary);
  background: rgba(34, 211, 238, 0.05);
}

.b-date {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.8rem;
  min-width: 100px;
}
.b-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #fff;
}
.b-content p {
  margin: 0;
  font-size: 0.95rem;
}
.mt-40 {
  margin-top: 40px;
}

/* Stats Banner */
.banner-box {
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  border-radius: 30px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--primary);
  box-shadow: 0 0 50px rgba(124, 58, 237, 0.1);
}

.bb-txt h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.bb-txt p {
  color: #c7d2fe;
  margin-bottom: 10px;
}
.tiny-text {
  font-size: 0.8rem;
  opacity: 0.7;
}

.bb-stats {
  display: flex;
  gap: 40px;
}
.stat .num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-head);
  line-height: 1;
}
.stat .lbl {
  font-size: 0.9rem;
  color: #a5b4fc;
}

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

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

.acc-head {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.acc-head::after {
  content: "+";
  color: var(--secondary);
  font-size: 1.5rem;
}
.acc-head.active::after {
  content: "-";
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.2);
}
.acc-body p {
  padding: 20px;
  margin: 0;
}

/* Form */
.form-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-light);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.fc-left {
  padding: 60px;
  background: linear-gradient(180deg, #1e1b4b, #12122a);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-list li {
  display: flex;
  gap: 15px;
  align-items: center;
  color: #fff;
}
.contact-list i {
  color: var(--secondary);
}

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

.err {
  color: #f87171;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}
.input-grp.error input {
  border-color: #f87171;
}
.input-grp.error .err {
  display: block;
}

.cap-grp input {
  width: 100px;
}
.cap-grp label {
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: 700;
}

.check-grp {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.check-grp label {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-muted);
}
.check-grp a {
  color: var(--secondary);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #000;
  padding: 80px 0 20px;
}
.f-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.f-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
}
.f-col h5 {
  color: #fff;
  margin-bottom: 20px;
}
.f-col a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.f-col a:hover {
  color: var(--secondary);
}
.hl-link {
  color: var(--secondary) !important;
  font-weight: 600;
}
.f-bot {
  text-align: center;
  color: #555;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.85rem;
}

/* Cookie */
.cookie-box {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 320px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 12px;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: none;
}
.cookie-inner button {
  width: 100%;
  margin-top: 10px;
  background: var(--text-main);
  border: none;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    margin-top: 50px;
  }
  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }
  .banner-box {
    grid-template-columns: 1fr;
  }
  .form-card {
    grid-template-columns: 1fr;
  }
  .f-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .desk-nav,
  .h-btns .btn-ghost,
  .h-btns .btn-primary {
    display: none;
  }
  .n1 {
    display: none;
  }
  .fc-1 {
    display: none;
  }
  .menu-togg {
    display: block;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .blog-row {
    flex-direction: column;
    align-items: flex-start;
  }
  h1 {
    font-size: 2.8rem;
  }
  .f-wrap {
    grid-template-columns: 1fr;
  }
  .glass-phone {
    max-width: 100%;
  }
  h2 {
    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 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;
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  h3 {
    font-size: 18px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .margin {
    margin: 80px 0 30px;
    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;
  }
}
