.hero {
  position: relative;
  padding: 70px 20px 80px;
  background: radial-gradient(circle at 20% 20%, #dff7ff 0%, #f6fcff 40%, #ffffff 80%);
  text-align: center;
  overflow: hidden;
}

/* Floating Glow */
.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #00B98E;
  opacity: 0.08;
  filter: blur(140px);
  top: -100px;
  left: -100px;
  border-radius: 50%;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Badge */
.hero-badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,185,142,0.1);
  color: #00B98E;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* Title */
.hero-title {
  font-size: 60px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  background: linear-gradient(90deg,#00B98E,#009688);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.hero-subtitle {
  font-size: 19px;
  color: #64748b;
  max-width: 750px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* Price Highlight */
.hero-price {
  display: inline-block;
  margin-bottom: 40px;
  padding: 14px 26px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  font-size: 20px;
  font-weight: 700;
  color: #00B98E;
}

/* Feature Chips */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
}

.hero-features div {
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.hero-features div:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* Buttons */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.btn-primary {
  background: linear-gradient(135deg,#00B98E,#009688);
  color: #ffffff;
  padding: 16px 34px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0,185,142,0.35);
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0,185,142,0.45);
}

.btn-outline {
  border: 2px solid #00B98E;
  color: #00B98E;
  padding: 16px 30px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  background: #ffffff;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #00B98E;
  color: #ffffff;
}

/* Divider */
.hero-divider {
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
  background: linear-gradient(to right, transparent, #e2e8f0, transparent);
}

/* Mobile Fix */
@media (max-width: 768px) {

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-features div {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

}

/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.stat h3 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
}

.stat p {
  font-size: 14px;
  color: #64748b;
  margin-top: 4px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    padding: 90px 16px 80px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 26px;
  }
}

.features {
  padding: 30px 0;
  background: #f8fafc;
}

.features-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.features-label {
  font-size: 12px;
  letter-spacing: 1.2px;
  font-weight: 600;
  color: #00B98E;
}

.features-head h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin: 14px 0 18px;
  line-height: 1.25;
}

.features-head p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

/* GRID */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.feature-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #e8edf3;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

/* ICON */
.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(180deg, #00B98E, #00B98E);
  border-radius: 10px;
  color: #ffffff;
  font-size: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
}

/* TEXT */
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features {
    padding: 80px 0;
  }

  .features-head h2 {
    font-size: 30px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.pricing {
  padding: 20px 0;
  background: #f8fafc;
}

.pricing-head {
  text-align: center;
  margin-bottom: 70px;
}

.pricing-label {
  font-size: 12px;
  letter-spacing: 1.2px;
  font-weight: 600;
  color: #00B98E;
}

.pricing-head h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 12px 0;
  color: #0f172a;
}

.pricing-head p {
  color: #64748b;
  font-size: 16px;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}


/* CARD */
.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 26px;
  border: 1px solid #e8edf3;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 600;
}

.plan-desc {
  font-size: 13px;
  color: #64748b;
  margin: 6px 0 18px;
}

.price {
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price .mrp {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: line-through;
}

.price .duration {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
}

.price + .save {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #00B98E;
}


.price span {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}

.trial {
  font-size: 12px;
  color: #00B98E;
  background: #e0f2fe;
  padding: 6px 10px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 18px;
}

.price .save {
  font-size: 12px;
  color: #00B98E;
  font-weight: 600;
}

/* META */
.plan-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  font-size: 13px;
  margin-bottom: 18px;
}

.plan-meta span {
  color: #64748b;
}

/* FEATURES */
.features-list {
  list-style: none;
  padding: 18px 0;
  margin: 0;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
  flex-grow: 1;
}

.features-list li {
  font-size: 13px;
  color: #334155;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00B98E;
  font-weight: 700;
}

/* BUTTONS */
.full {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

.btn-outline {
  border: 2px solid #00B98E;
  color: #00B98E;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(180deg, #00B98E, #00B98E);
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
}

/* POPULAR */
.popular {
  border: 2px solid #00B98E;
  transform: translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #00B98E;
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .popular {
    transform: none;
  }
}


.cta {
  padding: 45px 0;
  background: linear-gradient(180deg, #00B98E 0%, #00B98E 100%);
  color: #ffffff;
  text-align: center;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffffe6;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffffe6;
  max-width: 720px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* BUTTONS */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.cta-btn.primary {
  background: #ffffff;
  color: #00B98E;
}

.cta-btn.outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta {
    padding: 80px 16px;
  }

  .cta h2 {
    font-size: 30px;
  }

  .cta-actions {
    flex-direction: column;
  }
}

.cta-note {
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note strong {
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .cta-note {
    font-size: 11px;
    margin-top: 20px;
  }
}


.modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;              /* IMPORTANT */
  background: rgba(0,0,0,.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;              /* mobile safe padding */
}

.modal-box{
  background: #fff;
  width: 100%;
  max-width: 420px;
  padding: 24px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

.modal-box h3{
  margin-bottom: 18px;
  font-size: 20px;
  text-align: center;
}

.modal-box input{
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px; /* prevents zoom on iOS */
}

.modal-box button{
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
}

.close{
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile specific fix */
@media (max-width: 480px){
  .modal-box{
    padding: 20px;
  }
}


.offer-timer {
  text-align: center;
  margin: 10px auto 60px;
  padding: 22px 26px;
  max-width: 420px;
  background: linear-gradient(135deg, #e0f2fe, #f0fdf4);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.offer-text {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 6px;
}

.offer-timer h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f172a;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.timer div {
  background: #0f172a;
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  min-width: 90px;
}

.timer span {
  font-size: 34px;
  font-weight: 800;
  display: block;
}

.timer small {
  font-size: 12px;
  opacity: 0.8;
}

.offer-sub {
  margin-top: 14px;
  font-size: 14px;
  color: #475569;
}

@media (max-width: 768px) {
  .offer-timer {
    margin: 30px 16px 40px;
    padding: 18px 16px;
    max-width: 100%;
    border-radius: 14px;
  }

  .offer-text {
    font-size: 12px;
    letter-spacing: 0.8px;
  }

  .offer-timer h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .timer {
    gap: 12px;
  }

  .timer div {
    padding: 12px 10px;
    min-width: 72px;
    border-radius: 10px;
  }

  .timer span {
    font-size: 26px;
  }

  .timer small {
    font-size: 11px;
  }

  .offer-sub {
    font-size: 13px;
    margin-top: 12px;
  }
}

@media (max-width: 380px) {
  .timer {
    flex-wrap: wrap;
  }

  .timer div {
    min-width: 65px;
  }
}

.floating-offer {
  position: fixed;
  top: 90px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 16px;

  background: linear-gradient(135deg, #ff3b3b, #ff9800);
  color: #fff;
  padding: 16px 22px;
  border-radius: 999px;

  box-shadow: 
    0 15px 40px rgba(255, 59, 59, 0.45),
    0 0 25px rgba(255, 152, 0, 0.5);

  z-index: 9999;
  animation: floatPulse 2s infinite ease-in-out;
}

/* Subtle floating pulse */
@keyframes floatPulse {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.offer-left strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: block;
}

.offer-left span {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.95;
}

/* TIMER */
.offer-timer-mini {
  background: #000;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
  box-shadow: 0 0 18px rgba(255,255,255,0.4);
  animation: blinkTimer 1s infinite alternate;
}

/* Timer glow pulse */
@keyframes blinkTimer {
  from { box-shadow: 0 0 10px rgba(255,255,255,0.3); }
  to   { box-shadow: 0 0 25px rgba(255,255,255,0.9); }
}

/* MOBILE VERSION */
@media (max-width: 768px) {

  .floating-offer {
    top: 74px;
    right: 12px;
    padding: 12px 16px;
    gap: 12px;
  }

  .offer-left strong {
    font-size: 13px;
  }

  .offer-left span {
    font-size: 11px;
  }

  .offer-timer-mini {
    font-size: 16px;
    padding: 8px 14px;
  }
}

/* Ultra small devices */
@media (max-width: 380px) {
  .offer-left span {
    display: none; /* hides secondary text if space is tight */
  }
}


/* Hide by default */
.mobile-only {
  display: none;
}

/* Show only on mobile */
@media (max-width: 767px) {

  body {
    padding-bottom: 85px; /* prevent content overlap */
  }

  .mobile-only {
    display: flex;
  }

  .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    gap: 10px;
    padding: 12px 15px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.08);
    z-index: 9999;
    border-top: 1px solid #eee;
  }

  .btn-outline {
    flex: 1;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #111;
    color: #111;
    background: #fff;
  }

  .sticky-primary {
    flex: 1;
    padding: 14px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg,#ff512f,#dd2476);
    cursor: pointer;
  }

}