
:root {
  --navy-primary: #0a192f;
  --navy-light: #172a45;
  --navy-glow: rgba(10, 25, 47, 0.4);
  --accent-glow: rgba(100, 255, 218, 0.15);
  --white: #ffffff;
  --black: #020c1b;
  --text-main: #495670;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--white);
  color: var(--navy-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===================== NAVIGATION ===================== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(10, 25, 47, 0.05);
}

#nav-tabs {
  display: flex;
  gap: 25px;
}

#nav-tabs a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-primary);
  transition: var(--transition);
  position: relative;
}

#nav-tabs a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--navy-primary);
}

/* ===================== HERO SECTION ===================== */
#pricing-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 10% 60px;
  background: radial-gradient(circle at top right, #f8faff 0%, #ffffff 100%);
}

.hero-heading {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 850px;
}

#pricing-hero p {
  font-size: 1.1rem;
  color: var(--text-main);
  max-width: 650px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  z-index: 10;
}

/* ===================== BUTTONS ===================== */
.btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-navy {
  background: var(--navy-primary);
  color: var(--white);
  box-shadow: 0 4px 15px var(--navy-glow);
}

.btn-black {
  background: var(--black);
  color: var(--white);
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ===================== PRICING GRID ===================== */
#pricing-plans {
  padding: 80px 10%;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: var(--navy-primary);
  color: var(--white);
  padding: 45px 35px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

/* Hover Effect: Glow only, no movement */
.pricing-card:hover {
  box-shadow: 0 0 40px var(--navy-glow), 0 0 15px rgba(100, 255, 218, 0.1);
  border-color: rgba(255,255,255,0.2);
}

.pricing-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.pricing-card p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 25px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 35px;
  text-align: left;
}

.pricing-card ul li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.pricing-card ul li::before {
  content: '✓';
  margin-right: 12px;
  font-weight: bold;
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--white);
}

.card-btn {
  width: 100%;
  text-align: center;
}

/* ===================== CONTACT CTA ===================== */
#pricing-contact {
  padding: 100px 10%;
  text-align: center;
}

.contact-card {
  background: var(--navy-primary);
  color: var(--white);
  padding: 60px 40px;
  border-radius: 40px;
  max-width: 900px;
  margin: 0 auto;
}

#pricing-contact h2 { font-size: 2.5rem; margin-bottom: 15px; }
#pricing-contact p { margin-bottom: 35px; opacity: 0.8; }

/* ===================== FOOTER ===================== */
footer {
  padding: 40px 10%;
  text-align: center;
  border-top: 1px solid #eee;
  color: var(--text-main);
  font-size: 0.9rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  nav { padding: 0 5%; }
  #nav-tabs { display: none; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn { width: 100%; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
}