body {
  margin: 0;
  background: #080712;
  color: #fff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 24px 6%;
  position: sticky;
  top: 0;
  background: #080712dd;
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid #ffffff0a;
}

nav b {
  font-size: 26px;
  font-weight: 900;
  margin-right: auto;
  background: linear-gradient(135deg, #a78bfa, #fb7185);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
}

nav a:hover, nav a.active-link {
  color: #a78bfa;
}

button {
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff;
  padding: 14px 24px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

button:hover {
  transform: scale(1.03);
  opacity: 0.95;
}

.hero {
  min-height: 75vh;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  padding: 5% 8%;
  background: radial-gradient(circle at 20% 20%, #7c3aed33, transparent 40%),
              radial-gradient(circle at 80% 30%, #ec489922, transparent 40%);
}

h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -1.5px;
}

.hero p {
  font-size: 20px;
  color: #94a3b8;
  line-height: 1.6;
}

.phone {
  border: 1px solid #ffffff15;
  border-radius: 42px;
  background: #ffffff05;
  padding: 48px;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
}

.wave {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: auto;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #22d3ee, #a78bfa, #fb7185);
  box-shadow: 0 10px 40px rgba(167,139,250,0.3);
  animation: bob 2.5s infinite ease-in-out;
}

@keyframes bob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.02); }
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 5% 8%;
}

.features div {
  background: #14132a;
  border-radius: 26px;
  padding: 32px;
  border: 1px solid #ffffff0d;
  transition: transform 0.2s ease;
}

.features div:hover {
  transform: translateY(-5px);
}

.features h2 {
  font-size: 20px;
  margin: 16px 0 8px;
}

.features p {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* Footer Section */
footer {
  background: #0d0c1e;
  border-radius: 36px 36px 0 0;
  padding: 60px 8% 30px;
  border-top: 1px solid #ffffff0a;
}

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

.footer-grid h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 16px;
}

.footer-grid h4 {
  font-size: 16px;
  margin: 0 0 20px;
  color: #a78bfa;
}

.footer-grid p {
  color: #94a3b8;
  line-height: 1.6;
  max-width: 400px;
}

.footer-grid a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: #fb7185;
}

.footer-bottom {
  border-top: 1px solid #ffffff0a;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 13px;
  margin: 0;
}

/* Legal & Policy Pages styling */
.content-container {
  max-width: 900px;
  margin: 40px auto 100px;
  padding: 0 24px;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff0a;
  border: 1px solid #ffffff0d;
  color: #cbd5e1;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 12px;
  margin-bottom: 32px;
  text-decoration: none;
}

.back-button:hover {
  background: #ffffff15;
}

.last-updated {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 40px;
}

.section-intro {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 40px;
}

.legal-section {
  background: #14132a;
  border: 1px solid #ffffff0d;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 24px;
}

.legal-section h2 {
  font-size: 22px;
  margin-top: 0;
  color: #a78bfa;
}

.legal-section p, .legal-section li {
  color: #cbd5e1;
  line-height: 1.7;
}

.legal-section ul {
  padding-left: 20px;
}

.legal-section li {
  margin-bottom: 12px;
}

/* Contact Us Styling */
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.contact-info-card {
  background: #14132a;
  border: 1px solid #ffffff0d;
  border-radius: 24px;
  padding: 32px;
  text-align: center;
}

.contact-icon {
  color: #fb7185;
  margin-bottom: 16px;
  display: inline-block;
}

.contact-info-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.contact-info-card p {
  color: #cbd5e1;
  margin: 6px 0;
  font-size: 14px;
}

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

.pricing-card {
  background: #14132a;
  border: 1px solid #ffffff0d;
  border-radius: 28px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.pricing-card.popular {
  border-color: #8b5cf6;
  box-shadow: 0 10px 30px rgba(139,92,246,0.15);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  font-size: 20px;
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 900;
  margin: 20px 0 10px;
  color: #a78bfa;
}

.pricing-card p {
  color: #94a3b8;
  font-size: 14px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.pricing-card li {
  color: #cbd5e1;
  padding: 10px 0;
  border-bottom: 1px solid #ffffff05;
  font-size: 14px;
}

.pricing-note {
  background: rgba(251,113,133,0.05);
  border: 1px dashed rgba(251,113,133,0.3);
  border-radius: 20px;
  padding: 24px;
  margin-top: 40px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
}

/* About Us Section styling */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.vision-card {
  background: #14132a;
  border: 1px solid #ffffff0d;
  border-radius: 24px;
  padding: 32px;
}

.vision-card h3 {
  color: #a78bfa;
  margin-top: 0;
}

.vision-card p {
  color: #cbd5e1;
  line-height: 1.7;
}

.lead-text {
  font-size: 22px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 40px;
}
