/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Body */
body {
  font-family: 'DM Sans', sans-serif;
  background: #041018;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.7;
}

/* Body Background Grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 162, 231, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 162, 231, 0.035) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
  z-index: 0;
}

/* Body Glow Blobs */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 25%, rgba(22, 162, 231, 0.11) 0%, transparent 42%),
    radial-gradient(circle at 85% 70%, rgba(30, 200, 255, 0.08) 0%, transparent 38%);
  pointer-events: none;
  z-index: 0;
}

/* Hero */
.feature-hero-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

/* .feature-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 600px;
  padding: 60px 0;
  overflow: hidden;
  background: url("https://i.pinimg.com/1200x/f7/96/4b/f7964b2f2fd2c1cab619a19127f40115.jpg") right center / cover no-repeat;
  display: flex;
  align-items: center;
} */


.feature-hero {
  width: 100%;
  position: relative;
  min-height: 600px;
  padding: 140px 0 60px;
  overflow: hidden;
  display: flex;
  align-items: center;

  background-color: #03111a;
  background-image: url("/newsite/images/OverlayImg/Price.webp");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right -2px top 82px;
}




/* Hero Overlay */
.feature-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 16, 24, 0.95)  0%,
    rgba(4, 16, 24, 0.85)  30%,
    rgba(4, 16, 24, 0.45)  55%,
    rgba(4, 16, 24, 0.15)  75%,
    rgba(4, 16, 24, 0.05)  100%
  );
  z-index: 1;
}

/* Hero Content */
.feature-hero-content {
  color: #ffffff;
  position: relative;
  z-index: 2;
  padding: 70px 80px;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 1600px) {
  .feature-hero-content {
    padding-left: max(80px, calc((100vw - 1400px) / 2 + 80px));
  }
}

/* Breadcrumb Pill */
.breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  padding: 7px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1ec8ff;
  background: rgba(30, 200, 255, 0.10);
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 200, 255, 0.22);
}

.breadcrumb-pill span { opacity: 0.8; }

.feature-hero-content h1 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: #ffffff;
}

.feature-hero-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin-bottom: 22px;
}

/* Hero Link */
.hero-link {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #1ec8ff;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-link:hover { opacity: 0.85; transform: translateX(4px); }

/* Hero Responsive */
@media (max-width: 1100px) {
  .feature-hero-content { padding: 70px 60px; }
}

@media (max-width: 992px) {
  .feature-hero { min-height: 460px; }
  .feature-hero-content { padding: 60px 50px; }
  .feature-hero-content h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .feature-hero {
        min-height: 420px;
        /* keep image anchored to right */
        background-size: auto 95%;
        background-position: right -30px top 60px;
    }
}

@media (max-width: 576px) {
    .feature-hero {
        min-height: 400px;
        /* slightly zoom out so full hand is visible */
        background-size: auto 88%;
        background-position: right -45px top 55px;
    }
}
@media (max-width: 320px) {
    .feature-hero {
        background-size: auto 76%;
        background-position: right -150px top 48px;
    }
}

@media (max-width: 375px) {
    .feature-hero {
        min-height: 380px;
        /* final adjustment for small phones */
        background-size: auto 82%;
        background-position: right -150px top 50px;
    }
}

/* Pricing Section */
.pricing-section {
  position: relative;
  z-index: 1;
  background: transparent;
  min-height: 100vh;
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Pricing Header */
.pricing-header {
  max-width: 800px;
  margin-bottom: 80px;
}

.pricing-header h1 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pricing-header h1 span { color: #1ec8ff; }

.pricing-header p {
  margin-top: 12px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* Toggle */
.toggle {
  position: relative;
  width: 260px;
  margin: 40px auto 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 6px;
  display: flex;
  backdrop-filter: blur(10px);
}

.toggle-btn {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  z-index: 2;
  padding: 10px 0;
  border-radius: 40px;
  transition: color 0.3s ease;
}

.toggle-btn.active { color: #041018; }

.toggle-indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(50% - 6px);
  height: calc(100% - 12px);
  background: linear-gradient(135deg, #1ec8ff, #16A2E7);
  border-radius: 40px;
  transition: all 0.3s ease;
}

/* Pricing Cards Grid */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  width: 100%;
  margin-top: 60px;
}

.pricing-cards.single {
  display: none;
  grid-template-columns: 1fr;
  max-width: 420px;
}

/* Pricing Card */
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 40px 32px;
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  text-align: left;
  color: #ffffff;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 200, 255, 0.25);
  box-shadow: 0 35px 80px rgba(30, 200, 255, 0.18);
}

/* Featured Card */
.card.featured {
  background: linear-gradient(180deg, rgba(30, 200, 255, 0.10), rgba(22, 162, 231, 0.04));
  border-color: rgba(30, 200, 255, 0.35);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(30, 200, 255, 0.12);
}

.card.featured:hover {
  border-color: rgba(30, 200, 255, 0.60);
  box-shadow: 0 40px 90px rgba(30, 200, 255, 0.25);
}

/* Pill */
.pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(30, 200, 255, 0.12);
  border: 1px solid rgba(30, 200, 255, 0.22);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1ec8ff;
}

.card h2 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  margin: 20px 0 6px;
  color: #1ec8ff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.card h2 span {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.48);
  font-weight: 400;
}

.desc {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Button */
.cta {
  width: 100%;
  padding: 14px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(135deg, #1ec8ff, #16A2E7);
  color: #041018;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30, 200, 255, 0.35);
}

.card:not(.featured) .cta {
  background: transparent;
  border: 1px solid rgba(30, 200, 255, 0.35);
  color: #1ec8ff;
}

.card:not(.featured) .cta:hover {
  background: rgba(30, 200, 255, 0.10);
  box-shadow: 0 8px 24px rgba(30, 200, 255, 0.20);
}

.card ul { list-style: none; text-align: left; }

.card li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1ec8ff;
  font-weight: 700;
}

.card hr { border: none; border-top: 1px solid rgba(255, 255, 255, 0.08); margin: 24px 0; }

/* Original Price */
.original-price {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 80, 80, 0.7);
  text-decoration-thickness: 2px;
  margin-right: 8px;
}

/* Save Badge */
.save-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.25);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ff6b6b;
  vertical-align: middle;
}

/* Pricing Responsive */
@media (max-width: 900px) {
  .pricing-cards { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-header h1 { font-size: 2.6rem; }
}

@media (max-width: 480px) {
  .pricing-section { padding: 80px 16px; }
  .pricing-header h1 { font-size: 2rem; }
  .card { padding: 30px 22px; }
  .card h2 { font-size: 2.4rem; }
}

/* FAQ Section */
.faq-section {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 120px 20px;
  color: #ffffff;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* FAQ Badge */
.faq-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(30, 200, 255, 0.10);
  border: 1px solid rgba(30, 200, 255, 0.22);
  color: #1ec8ff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* FAQ Title */
.faq-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #ffffff;
}

.faq-title span { color: #1ec8ff; }

.faq-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
}

/* FAQ CTA Box */
.faq-cta {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 32px;
  backdrop-filter: blur(16px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.faq-cta h4 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: #ffffff;
}

.faq-cta p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
  line-height: 1.65;
}

/* FAQ Button */
.faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1ec8ff, #16A2E7);
  color: #041018;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30, 200, 255, 0.35);
}

/* FAQ Item */
.faq-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  margin-bottom: 14px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: border-color 0.3s ease;
}

.faq-item.active { border-color: rgba(30, 200, 255, 0.22); }

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 12px;
  text-align: left;
}

.faq-question .icon {
  color: #1ec8ff;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer { max-height: 200px; padding: 0 24px 20px; }
.faq-item.active .icon { transform: rotate(180deg); }

/* FAQ Responsive */
@media (max-width: 900px) {
  .faq-container { grid-template-columns: 1fr; gap: 40px; }
  .faq-title { font-size: 2.4rem; }
}

@media (max-width: 480px) {
  .faq-section { padding: 80px 16px; }
  .faq-title { font-size: 2rem; }
  .faq-cta { padding: 24px 20px; }
}

/* Login CTA Section */
.login-cta-section {
  position: relative;
  z-index: 1;
  padding: 120px 20px;
  background: transparent;
}

.login-cta-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.login-cta-container::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1ec8ff, #16A2E7, transparent);
}

.login-cta-container h2 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 18px;
}

.login-cta-container h2 span { color: #1ec8ff; }

.login-cta-container p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  text-align: center;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 720px;
  margin: 0 auto 34px;
}

/* Login CTA Button */
.btn-login-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 38px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1ec8ff, #16A2E7);
  color: #041018;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-login-cta i { font-size: 0.9rem; transition: transform 0.3s ease; }
.btn-login-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(30, 200, 255, 0.35); }
.btn-login-cta:hover i { transform: translateX(6px); }

/* Login CTA Responsive */
@media (max-width: 768px) {
  .login-cta-container { padding: 50px 28px; }
  .login-cta-container h2 { font-size: 2rem; }
  .login-cta-container p { font-size: 0.97rem; }
}

@media (max-width: 480px) {
  .login-cta-section { padding: 80px 16px; }
  .login-cta-container { padding: 40px 20px; border-radius: 24px; }
  .login-cta-container h2 { font-size: 1.7rem; }
  .btn-login-cta { padding: 14px 28px; font-size: 0.9rem; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #041018; }
::-webkit-scrollbar-thumb { background: rgba(30, 200, 255, 0.30); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(30, 200, 255, 0.55); }