:root {
  --bg: #0a0e1a;
  --bg2: #0f1525;
  --bg3: #141c2e;
  --accent: #00c8ff;
  --accent2: #0076ff;
  --neon: #00ffe0;
  --text: #dce8f5;
  --muted: #7a92b0;
  --card: #111827;
  --border: rgba(0,200,255,0.15);
  --glow: 0 0 30px rgba(0,200,255,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

a { color: inherit; }
img { max-width: 100%; }
section { padding: 80px 5%; position: relative; }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-cta {
  background: var(--accent2);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 4px;
  transition: box-shadow .2s, background .2s !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  box-shadow: var(--glow);
  color: #000 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px;
  z-index: 200;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.page-hero {
  padding: 130px 5% 60px;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0,118,255,0.15) 0%, transparent 70%), var(--bg2);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,200,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,200,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-badge {
  display: inline-block;
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.3);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  animation: fadeUp .7s ease both;
}

.page-hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  animation: fadeUp .7s .1s ease both;
}

.page-hero h1 span { color: var(--accent); }
.page-hero p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  animation: fadeUp .7s .2s ease both;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title span { color: var(--accent); }
.section-sub, .body-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}
.centered { text-align: center; }
.centered .section-sub { margin: 0 auto 3rem; max-width: 560px; }

.btn-primary {
  background: var(--accent2);
  color: #fff;
  padding: 13px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-block;
  transition: box-shadow .2s, transform .2s, background .2s;
}

.btn-primary:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,200,255,0.4);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color .2s, background .2s;
}

.btn-outline:hover { border-color: var(--accent); background: rgba(0,200,255,0.07); }

.checklist { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.checklist li::before {
  content: '✓';
  color: var(--neon);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  flex-shrink: 0;
}

footer {
  background: #070a12;
  border-top: 1px solid var(--border);
  padding: 3rem 5% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
  margin-top: .75rem;
}
.footer-col h5 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.83rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }
.footer-bottom a { color: var(--accent); text-decoration: none; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; position: relative; z-index: 1; }
.form-group label { font-size: 0.75rem; color: var(--muted); letter-spacing: .5px; font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-full { margin-bottom: 1rem; }
.form-submit {
  background: var(--accent2);
  color: #fff;
  border: none;
  padding: 13px 36px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: .5px;
  transition: background .2s, box-shadow .2s;
  position: relative;
  z-index: 1;
}
.form-submit:hover { background: var(--accent); color: #000; box-shadow: var(--glow); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.js-ready .reveal { opacity: 0; transform: translateY(28px); }
.js-ready .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex !important; }

  ul.nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 70px);
    background: #0a0e1a;
    flex-direction: column;
    padding: 0 6% 1rem;
    gap: 0;
    border-bottom: 2px solid rgba(0,200,255,0.3);
    z-index: 99999;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  }

  ul.nav-links.open { display: flex !important; }
  ul.nav-links li { border-bottom: 1px solid rgba(0,200,255,0.1); list-style: none; }
  ul.nav-links li:last-child { border-bottom: none; }
  ul.nav-links a {
    display: block !important;
    padding: 16px 0;
    font-size: 1rem !important;
    color: #dce8f5 !important;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  ul.nav-links a:hover { color: #00c8ff !important; }
  ul.nav-links .nav-cta {
    display: block !important;
    text-align: center;
    padding: 12px 20px !important;
    border-radius: 6px;
    margin-top: .5rem;
    background: #0076ff;
    color: #fff !important;
  }
}

@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* Accessibility and utility */
.skip-link { position: absolute; left: 12px; top: -44px; z-index: 1000; background: var(--accent); color: #000; padding: 10px 14px; border-radius: 6px; text-decoration: none; font-weight: 700; }
.skip-link:focus { top: 12px; }
main, footer, nav, section { position: relative; z-index: 1; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }


.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.34);
  filter: brightness(1.03);
}
.whatsapp-float:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.whatsapp-float__icon {
  font-size: 1.1rem;
  line-height: 1;
}
@media (max-width: 520px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px 15px;
    font-size: 0.88rem;
  }
}
