* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #ffffff;
  color: #111827;
  -webkit-font-smoothing: antialiased;
}

.page-container {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Urgency Banner */
.urgency-banner {
  color: #fff;
  background-image: linear-gradient(90deg, #7a1220, #c0392b, #7a1220);
  background-size: 200% 100%;
  animation: shine 4s linear infinite;
  text-align: center;
  padding: 10px 12px;
  font-weight: 700;
  font-size: clamp(0.72rem, 3.4vw, 1.125rem);
  position: sticky;
  top: 0;
  z-index: 40;
  white-space: nowrap;
}

@keyframes shine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* Eyebrow & Titles */
.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(43, 93, 139, 0.12);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  color: #1e3a5f;
  border: 1px solid rgba(43, 93, 139, 0.3);
  margin-bottom: 12px;
}

.headline-hero {
  color: #0e2a48;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 16px;
}

.hl-marker {
  text-underline-offset: 2px;
  font-weight: 800;
  text-decoration: underline #2b7a38;
  text-decoration-thickness: 3px;
  display: inline;
}

/* Hero Section */
.hero-section {
  padding: 32px 16px 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero-description {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #475569;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-image-wrapper {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper img {
  width: 100%;
  max-width: 580px;
  height: auto;
  object-fit: contain;
}

/* CTAs & Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #ffffff;
  padding: 16px 36px;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 30px -6px rgba(22, 163, 74, 0.45);
  transition: transform 0.2s, opacity 0.2s;
  text-align: center;
}

.btn-cta:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

@keyframes cta-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 12px 30px -6px rgba(22, 163, 74, 0.45);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 18px 38px -4px rgba(22, 163, 74, 0.65);
  }
}

.cta-pulse {
  animation: cta-pulse 2.4s ease-in-out infinite;
}

.cta-subtext {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
}

.pills-container {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pill-blue {
  background: #ffffff;
  border-color: #2b5d8b;
  color: #2b5d8b;
}

.pill-green {
  background: #ffffff;
  border-color: #2b7a38;
  color: #2b7a38;
}

/* Countdown Bar */
.countdown-bar {
  background: linear-gradient(90deg, #c0392b, #7a1220);
  padding: 20px 16px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.countdown-title {
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: monospace;
}

.timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #8a1c2b;
  border-radius: 12px;
  padding: 8px 14px;
  min-width: 60px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.timer-num {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.timer-label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-top: 4px;
  opacity: 0.8;
}

.timer-sep {
  font-size: 1.5rem;
  font-weight: 900;
}

/* Showcase & Marquee */
.showcase-section {
  padding: 48px 16px;
  background-color: #f8fafc;
  overflow: hidden;
  text-align: center;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 32px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #0e2a48;
  margin-top: 8px;
}

.section-header p {
  margin-top: 10px;
  color: #64748b;
  font-size: 0.95rem;
}

.marquee-viewport {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee var(--marquee-duration, 18s) linear infinite;
  will-change: transform;
}

.marquee-track-reverse {
  display: flex;
  width: max-content;
  animation: marquee-reverse var(--marquee-duration, 18s) linear infinite;
  will-change: transform;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-group {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
  padding-right: 16px;
  white-space: nowrap;
}

.marquee-card {
  width: 250px;
  height: 380px;
  background: #ffffff;
  border: 2px solid #2b5d8b;
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px -18px rgba(43, 93, 139, 0.35);
  flex-shrink: 0;
}

.marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* Problems Section */
.problems-section {
  background: #2b5d8b;
  color: #ffffff;
  padding: 48px 16px;
}

.section-container {
  max-width: 1000px;
  margin: 0 auto;
}

.problems-section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 900;
  text-align: center;
}

.sub-desc {
  text-align: center;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.problem-card {
  background: #ffffff;
  color: #111827;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.problem-card .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1e3a5f;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

/* Comparison Section */
.comparison-section {
  padding: 48px 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 900;
  text-align: center;
  color: #0e2a48;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.comp-box {
  padding: 28px 20px;
  border-radius: 20px;
  border: 2px solid;
}

.comp-before {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.comp-before h3 {
  color: #475569;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.comp-after {
  background: #f2f8f1;
  border-color: #cfe4c9;
}

.comp-after h3 {
  color: #2e6b3d;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.comp-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comp-box li {
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
  line-height: 1.4;
}

/* OFFER SECTION */
.offer-section {
  background: radial-gradient(80% 50% at 50% 0, #1c4f7e 0%, #123a63 55%, #0e2f50 100%);
  padding: 48px 12px;
  color: #ffffff;
  width: 100%;
}

.offer-container {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.offer-heading {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
}

.offer-heading span {
  color: #f4a62a;
}

.offer-sub {
  margin-top: 10px;
  font-size: 0.95rem;
  opacity: 0.9;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
  width: 100%;
}

.plan-card {
  background: #ffffff;
  color: #111827;
  border-radius: 26px;
  padding: 32px 16px 24px;
  text-align: left;
  position: relative;
  box-shadow: 0 32px 70px -28px rgba(8, 16, 32, 0.4);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.plan-featured {
  border: 3px solid #22c55e;
}

.plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 8px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.4);
}

.plan-title {
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
  color: #0b1220;
}

.plan-subtitle {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #2b7a38;
  margin-top: 4px;
}

.plan-subtitle-green {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #16a34a;
  margin-top: 2px;
}

.plan-img-wrapper {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}

.plan-img-wrapper img {
  width: 100%;
  max-width: 320px;
  max-height: 240px;
  object-fit: contain;
}

.plan-pricing {
  text-align: center;
}

.plan-old {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 700;
}

.plan-old-amount {
  color: #ef2f2f;
  text-decoration: line-through;
}

.plan-price {
  font-size: 3.2rem;
  font-weight: 900;
  color: #22c55e;
  line-height: 1;
  margin: 6px 0;
}

.plan-price small {
  font-size: 1.5rem;
}

.plan-tag-green {
  font-size: 0.85rem;
  font-weight: 700;
  color: #16a34a;
}

.plan-tag-blue {
  font-size: 0.85rem;
  font-weight: 800;
  color: #1e3a5f;
  margin-top: 4px;
}

.plan-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px dashed #e5e7eb;
  padding-top: 16px;
}

.plan-list li {
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.plan-list li.disabled {
  opacity: 0.5;
}

.pcheck {
  color: #22c55e;
  font-weight: 900;
}

.pcross {
  color: #9ca3af;
  font-weight: 900;
}

.pgift {
  font-size: 1rem;
}

.upsell-banner {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1.5px solid #22c55e;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: #166534;
}

.plan-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  margin-top: 20px;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.35);
}

.cta-gray {
  background: linear-gradient(135deg, #64748b, #475569);
  box-shadow: 0 10px 25px rgba(71, 85, 105, 0.35);
}

.plan-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 700;
}

/* Guarantee Section */
.guarantee-section {
  padding: 48px 16px;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.guarantee-badge {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 16px;
}

.guarantee-section h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #0e2a48;
}

.guarantee-section p {
  margin-top: 12px;
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
  background: #f8fafc;
  padding: 48px 16px;
}

.faq-section h2 {
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  color: #0e2a48;
  margin-bottom: 24px;
}

.faq-accordion {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e3a5f;
  cursor: pointer;
  text-align: left;
}

.faq-panel {
  padding: 0 20px 16px;
  display: none;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

.faq-panel.show {
  display: block;
}

.chevron.open {
  transform: rotate(180deg);
}

/* Footer */
.footer {
  background: #0f1115;
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 16px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-brand {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-copy {
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  opacity: 0.6;
}

@media (max-width: 640px) {
  .plan-card {
    padding: 24px 12px 18px;
  }
  .plan-title {
    font-size: 1.35rem;
  }
  .plan-price {
    font-size: 2.6rem;
  }
  .btn-cta {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}
