/* Gradient + Animation ONLY for Explore Plans button */
.hero .cta {
  display:block;
  margin:30px auto 0;
  padding:16px 50px;
  border-radius:40px;
  color:#fff;
  font-weight:700;
  text-decoration:none;
  font-size:1.2rem;
  max-width:340px;
  text-align:center;
  background: linear-gradient(270deg, var(--brand), var(--brand-2), var(--brand));
  background-size: 400% 400%;
  animation: gradientMove 6s ease infinite;
  box-shadow: 0 0 25px rgba(124,92,255,.45);
  transition: all 0.3s ease;
}

/* Global Subscribe buttons (keep static gradient but animate glow) */
.cta {
  display:block;
  width:100%;
  padding:12px;
  border-radius:12px;
  background: linear-gradient(180deg, var(--brand), #5b3cff);
  color:#fff;
  font-weight:700;
  text-decoration:none;
  transition:.3s;
  box-shadow: 0 0 15px rgba(124,92,255,.3);
  animation: pulseGlow 4s ease-in-out infinite;
}

/* Hover Effects */
.hero .cta:hover,
.cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 40px rgba(46,230,166,.7);
}

/* Gradient Animation Keyframes (Explore Plans only) */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Pulse Glow Animation (Subscribe buttons only) */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(124,92,255,.3); }
  50% { box-shadow: 0 0 30px rgba(46,230,166,.6); }
}


.hero p strong {
  font-size: 1.6rem;
  background: linear-gradient(90deg, #7c5cff, #2ee6a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(124,92,255,.6);
  font-weight: 900;
  letter-spacing: 1px;
}

/* Glass effect upgrade */
.glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(25px);
  padding: 32px;
  margin: 30px auto;
  max-width: 900px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #f5f6fa;
  box-shadow: 0 8px 30px rgba(124, 92, 255, 0.15);
  animation: fadeInUp 1s ease forwards;
  transform: translateY(20px);
  opacity: 0;
}

/* Heading enhancement */
section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s infinite alternate;
}

/* Glow animation for headings */
@keyframes glow {
  from { text-shadow: 0 0 8px rgba(124, 92, 255, 0.5); }
  to   { text-shadow: 0 0 16px rgba(46, 230, 166, 0.7); }
}

/* Card-style infographic look */
.info-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 20px;
  margin: 15px auto;
  max-width: 750px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: 0.3s;
}
.info-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--brand);
  box-shadow: 0 8px 20px rgba(124, 92, 255, 0.3);
}
.info-card svg {
  width: 28px;
  height: 28px;
  color: var(--brand-2);
}

/* Entry animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
footer {
  text-align: center;               /* center all footer content */
  padding: 40px 20px;
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.12);
}

footer p {
  margin: 6px 0;                    /* equal spacing */
}

footer p.phone {
  display: inline-flex;             /* keeps icon & number inline */
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f5f6fa;
}
footer p.phone i {
  stroke: var(--brand-2);
  width: 18px;
  height: 18px;
}
footer p.phone a {
  color: inherit;
  text-decoration: none;
}
footer p.phone a:hover {
  color: var(--brand-2);
  text-shadow: 0 0 6px rgba(46,230,166,0.4);
}
