* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: radial-gradient(circle at top left, #111a3a, #050816 60%);
  color: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAVBAR */
/* NAVBAR - BRIGHT GLASS BAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;

  /* Brighter glass effect */
  background: linear-gradient(
    90deg,
    rgba(255, 60, 172, 0.15),
    rgba(123, 47, 247, 0.18),
    rgba(0, 198, 255, 0.15)
  );

  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Slight glow under navbar */
.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    #ff3cac,
    #7b2ff7,
    #00c6ff
  );
  box-shadow: 0 0 20px rgba(123, 47, 247, 0.6);
}


.navbar img {
  height: 90px;
  filter: drop-shadow(0 0 10px rgba(123,47,247,0.6));
}

.navbar nav a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.navbar nav a:hover {
  color: #00c6ff;
}

/* HERO */
.hero {
  padding: 140px 20px;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  background: linear-gradient(90deg, #ff3cac, #7b2ff7, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
}

.hero p {
  max-width: 750px;
  margin: auto;
  opacity: 0.85;
  font-size: 1.1rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  margin: 15px 10px;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff3cac, #7b2ff7);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(123,47,247,0.4);
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(123,47,247,0.8);
}

.btn-outline {
  border: 2px solid #00c6ff;
  padding: 12px 26px;
  border-radius: 50px;
  color: #00c6ff;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #00c6ff;
  color: #050816;
}

/* TRUST STRIP */
.trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 30px;
  background: rgba(255,255,255,0.03);
  font-weight: 500;
}

/* SECTIONS */
.section {
  padding: 100px 20px;
  text-align: center;
}

.section.dark {
  background: rgba(255,255,255,0.02);
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.card,
.template-card,
.portfolio-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.card:hover,
.template-card:hover,
.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(123,47,247,0.4);
}

/* TEMPLATE IMAGES */
.template-card img,
.portfolio-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* FORM */
form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

form input,
form textarea {
  padding: 15px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.05);
  color: white;
}

form input:focus,
form textarea:focus {
  outline: 1px solid #7b2ff7;
}

form button {
  padding: 15px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(90deg, #ff3cac, #7b2ff7);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

form button:hover {
  box-shadow: 0 0 30px rgba(255,60,172,0.6);
}

/* FOOTER */
footer {
  padding: 30px;
  text-align: center;
  background: #050816;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}


.space-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #7b2ff7 0%, transparent 70%);
  top: -200px;
  right: -200px;
  filter: blur(150px);
  opacity: 0.4;
  z-index: -1;
}

/* PARTICLE CANVAS */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

/* Subtle animation overlay depth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, #050816 90%);
  z-index: -1;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin: 20px 0;
  padding-left: 0;
}

.package-desc {
  font-size: 0.95rem;
  opacity: 0.85;
  margin: 15px 0;
}

.price {
  font-size: 1.9rem;
  font-weight: 700;
  margin: 15px 0;
  background: linear-gradient(90deg, #ff3cac, #7b2ff7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight {
  border: 1px solid rgba(255, 60, 172, 0.6);
  box-shadow: 0 0 40px rgba(123, 47, 247, 0.5);
  transform: scale(1.05);
}

.popular {
  position: relative;
  overflow: hidden;
}

.badge {
  position: absolute;
  top: 15px;
  right: -40px;
  background: linear-gradient(90deg, #ff3cac, #7b2ff7);
  padding: 6px 50px;
  font-size: 0.7rem;
  font-weight: 700;
  transform: rotate(45deg);
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0% { box-shadow: 0 0 10px rgba(255,60,172,0.6); }
  50% { box-shadow: 0 0 25px rgba(255,60,172,1); }
  100% { box-shadow: 0 0 10px rgba(255,60,172,0.6); }
}

.care-plan {
  margin-top: 80px;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 700px;
  margin: 80px auto 0 auto;
}

.hidden { display: none; }

.comparison table {
  width: 100%;
  margin-top: 50px;
  border-collapse: collapse;
   overflow-x: auto;
}

.comparison th,
.comparison td {
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.floating-cta {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(90deg, #ff3cac, #7b2ff7);
  padding: 15px 25px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(123,47,247,0.6);
  z-index: 999;
  animation: floatPulse 2s infinite;
}

@keyframes floatPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* ========================= */
/* MOBILE NAVIGATION SYSTEM */
/* ========================= */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .navbar nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(5, 8, 22, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .navbar nav a {
    margin: 15px 0;
  }

  .navbar nav.active {
    max-height: 500px; /* expands menu */
    padding: 20px 0;
  }
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: white;
  margin: 6px 0;
  transition: 0.4s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .navbar img {
    height: 60px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 90px 20px;
  }
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 15px;
    right: 15px;
    padding: 12px 18px;
    font-size: 0.85rem;
  }
}





