:root {
  --bg-color: #030406;
  --surface-color: #0d1016;
  --surface-color-light: #151a24;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(56, 178, 230, 0.5);
  --text-primary: #ffffff;
  --text-secondary: #949ba8;
  --accent-cyan: #38b2e6;
  --accent-blue: #2450ff;
  --glass-bg: rgba(3, 4, 6, 0.3);
  --font-main: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.container {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}

/* Ambient Glows */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(150px);
  -webkit-filter: blur(150px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.glow-1 {
  top: -10%;
  left: -10%;
  width: 45vw;
  height: 45vw;
  background: var(--accent-cyan);
  animation: floatOrb1 20s ease-in-out infinite alternate;
}

.glow-2 {
  top: 40%;
  right: -20%;
  width: 55vw;
  height: 55vw;
  background: var(--accent-blue);
  animation: floatOrb2 25s ease-in-out infinite alternate-reverse;
}

.glow-3 {
  bottom: -20%;
  left: 20%;
  width: 40vw;
  height: 40vw;
  background: rgba(144, 56, 230, 0.6); /* Purple tint */
  animation: floatOrb3 22s ease-in-out infinite alternate;
}

.glow-4 {
  top: 10%;
  right: 30%;
  width: 30vw;
  height: 30vw;
  background: rgba(56, 230, 169, 0.4); /* Greenish cyan */
  animation: floatOrb1 18s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10vw, 5vh) scale(1.1); }
  100% { transform: translate(-5vw, 15vh) scale(0.9); }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15vw, -10vh) scale(1.2); }
  100% { transform: translate(5vw, -20vh) scale(0.8); }
}

@keyframes floatOrb3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20vw, -15vh) scale(1.1); }
  100% { transform: translate(-10vw, 5vh) scale(1); }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

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

.logo-img {
  max-height: 72px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--surface-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.mobile-menu.open {
  display: block;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-links a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav-links a:hover {
  color: var(--accent-cyan);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-color);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
  background: var(--accent-cyan);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* Hero Section */
.hero-section {
  padding: 200px 0 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(56, 178, 230, 0.1);
  border: 1px solid rgba(56, 178, 230, 0.2);
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(56, 178, 230, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(56, 178, 230, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 178, 230, 0); }
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 10%, var(--accent-cyan) 50%, #ffffff 90%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin-bottom: 48px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Trusted By Marquee */
.trusted-marquee {
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  display: flex;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: scrollMarquee 25s linear infinite;
}

.marquee-content span {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.marquee-content .dot {
  color: var(--accent-cyan);
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Stats Section */
.stats-section {
  padding: 40px 0 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(56, 178, 230, 0.05);
  border-color: rgba(56, 178, 230, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Services Section */
.services-section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-auto-rows: minmax(300px, auto);
}

.bento-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    800px circle at var(--mouse-x) var(--mouse-y),
    rgba(56, 178, 230, 0.06),
    transparent 40%
  );
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card > * {
  z-index: 1;
  position: relative;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.large-card {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .large-card {
    grid-column: span 2;
  }
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-cyan);
}

.bento-card h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.bento-card p {
  color: var(--text-secondary);
  flex-grow: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.card-tags span {
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

/* About Section */
.about-section {
  padding: 120px 0;
  background: linear-gradient(to bottom, transparent, rgba(56, 178, 230, 0.03));
}

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

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content {
  max-width: 500px;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-content .section-desc {
  text-align: left;
  margin-left: 0;
  margin-bottom: 40px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 500;
}

.feature-list svg {
  width: 24px;
  height: 24px;
  color: var(--accent-cyan);
}

.about-visual {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.visual-box {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: transparent;
  border: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow-sphere {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56, 178, 230, 0.3), rgba(36, 80, 255, 0.3));
  filter: blur(60px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
  100% { transform: translateY(0px) scale(1); }
}

/* Process Section */
.process-section {
  padding: 120px 0;
  background: var(--surface-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  position: relative;
  transition: transform 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 178, 230, 0.3);
}

.step-number {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  position: absolute;
  top: -10px;
  right: -10px;
  line-height: 1;
  z-index: -1;
  user-select: none;
}

.step-content {
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--accent-cyan);
}

.process-step p {
  color: var(--text-secondary);
}

/* Testimonials Section */
.testimonials-section {
  padding: 120px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial-card {
  padding: 48px 40px;
  background: var(--surface-color-light);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  position: relative;
}

.quote-icon {
  font-size: 5rem;
  color: rgba(56, 178, 230, 0.2);
  position: absolute;
  top: 10px;
  left: 30px;
  font-family: serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-author h4 {
  color: var(--text-primary);
  margin-bottom: 4px;
}

.testimonial-author p {
  color: var(--accent-cyan);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg-color), rgba(56, 178, 230, 0.03));
}

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

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-cyan);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding-bottom: 24px;
  /* a large max-height allows content to expand naturally */
  max-height: 500px; 
}

.faq-answer p {
  color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
  padding: 120px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.contact-info .section-desc {
  text-align: left;
  margin-left: 0;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border-radius: 16px;
  background: transparent;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-method.clickable:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(56, 178, 230, 0.2);
  transform: translateX(5px);
}

.method-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(56, 178, 230, 0.1);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}

#networkCanvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  z-index: 2;
  pointer-events: none;
}

.contact-method h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-method p {
  color: var(--text-secondary);
}

.highlight-text {
  color: var(--accent-cyan) !important;
  font-weight: 500;
}

.contact-form-wrapper {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: rgba(56, 178, 230, 0.05);
}

.form-group select option {
  background-color: var(--surface-color);
  color: var(--text-primary);
}

.btn-wide {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
  background: var(--surface-color);
}

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

@media (min-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 2fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-img {
  max-height: 48px;
  width: auto;
  opacity: 0.9;
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.footer-location {
  color: var(--accent-cyan);
  font-weight: 500;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(56, 178, 230, 0.1);
  color: var(--accent-cyan);
  border-color: rgba(56, 178, 230, 0.3);
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 576px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.link-col h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #fff;
}

.link-col a {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.link-col a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Responsive adjustments */
@media (max-width: 991px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .large-card {
    grid-column: span 1;
  }
  .nav-links, .nav-actions .btn {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-section {
    padding: 160px 0 80px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .contact-form-wrapper {
    padding: 24px;
  }
}
