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

:root {
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-400: #fb923c;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --amber-50: #fffbeb;
  --white: #ffffff;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 80px;
}

.container {
  max-width: 28rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Animations */
@keyframes bounce-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-bounce-gentle {
  animation: bounce-gentle 2s ease-in-out infinite;
}

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

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--red-500);
  border-radius: 50%;
  animation: pulse-dot 1s ease-in-out infinite;
}

.pulse-dot.green {
  background: var(--green-400);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(to right, var(--orange-500), var(--orange-600));
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}

.header-logo-icon {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.375rem;
  border-radius: 0.5rem;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--white);
  color: var(--orange-600);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.header-cta:active {
  transform: scale(0.95);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/jesus-glory.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(154, 52, 18, 0.9));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  gap: 1.25rem;
}

.hero-badge {
  background: rgba(249, 115, 22, 0.9);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.text-orange {
  color: var(--orange-400);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

/* Countdown */
.countdown-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1rem;
}

.countdown-label {
  font-size: 0.875rem;
  color: #fca5a5;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to bottom, var(--red-500), var(--red-600));
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  min-width: 60px;
}

.countdown-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.countdown-unit {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.countdown-separator {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
}

/* Product Image */
.product-image-container {
  position: relative;
  width: 14rem;
  height: 18rem;
  margin: 0.5rem 0;
}

.discount-badge {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  background: linear-gradient(to right, var(--red-500), var(--red-600));
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 900;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  z-index: 10;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.product-glow {
  position: absolute;
  inset: 0;
  background: rgba(249, 115, 22, 0.3);
  border-radius: 1rem;
  filter: blur(30px);
}

.product-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.25));
}

/* Price Hero */
.price-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--white);
}

.price-old {
  font-size: 1.125rem;
  text-decoration: line-through;
  opacity: 0.6;
}

.price-current {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--orange-400);
}

/* CTA Button */
.cta-button {
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.cta-button:active {
  transform: scale(0.98);
}

.cta-urgent {
  background: linear-gradient(to right, var(--orange-500), var(--red-500));
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.3);
}

.cta-primary {
  background: linear-gradient(to right, var(--orange-500), var(--orange-600));
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

.cta-secondary {
  background: var(--white);
  color: var(--orange-600);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.trust-badge svg {
  color: var(--green-400);
}

/* Feature Bar */
.feature-bar {
  background: var(--gray-900);
  padding: 1rem;
}

.feature-bar-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.feature-bar-title svg {
  color: var(--orange-400);
}

.feature-items {
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Benefits Section */
.benefits {
  padding: 3rem 1rem;
  background: linear-gradient(to bottom, var(--amber-50), var(--white));
}

.section-title {
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.section-title.text-white {
  color: var(--white);
}

.section-subtitle-orange {
  text-align: center;
  color: var(--orange-600);
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.benefit-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit-image-wrapper {
  aspect-ratio: 3/4;
  position: relative;
}

.benefit-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
}

.benefit-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
}

.benefit-icon-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.25rem;
}

.benefit-icon {
  padding: 0.375rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon.bg-orange {
  background: var(--orange-500);
  color: var(--white);
}

.benefit-title {
  font-weight: 700;
  color: var(--white);
  font-size: 0.875rem;
}

.benefit-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  line-height: 1.5;
}

/* Quick Benefits Card */
.quick-benefits-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.1);
}

.quick-benefits-title {
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 1rem;
}

.quick-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quick-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 237, 213, 0.5);
  border-radius: 0.75rem;
  padding: 0.75rem;
}

.quick-benefit-icon {
  background: var(--orange-500);
  padding: 0.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.quick-benefit-item span {
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Stats Section */
.stats {
  padding: 2.5rem 1rem;
  background: linear-gradient(to right, var(--orange-500), var(--orange-600));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 0.75rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.125rem;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.stats-cta-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.5rem;
}

.stats-cta-title {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 1rem;
}

.stats-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.stats-price-old {
  font-size: 1.25rem;
  text-decoration: line-through;
  color: var(--gray-400);
}

.stats-price-current {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange-600);
}

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bullet-item span {
  color: var(--gray-700);
  font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials {
  padding: 3rem 1rem;
  background: var(--gray-900);
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  color: var(--orange-200);
}

.testimonial-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.avatar-pink {
  background: #fce7f3;
  color: #be185d;
}

.avatar-blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.avatar-purple {
  background: #ede9fe;
  color: #7c3aed;
}

.testimonial-text {
  flex: 1;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.testimonial-name {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 0.875rem;
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.testimonial-quote {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.readers-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.2);
  color: var(--green-400);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 2rem;
}

/* Pricing Section */
.pricing {
  position: relative;
  padding: 3rem 1rem;
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/jesus-hands.png');
  background-size: cover;
  background-position: center;
}

.pricing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(220, 38, 38, 0.95), rgba(234, 88, 12, 0.95), rgba(194, 65, 12, 0.95));
}

.pricing-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}

.pricing-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.pricing-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-bottom: 1.5rem;
}

.pricing-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-600);
}

.pricing-price {
  margin-bottom: 1rem;
}

.pricing-old {
  font-size: 1.125rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.pricing-current {
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--orange-600);
}

.pricing-payment {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.value-points {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.value-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.value-check {
  background: rgba(220, 252, 231, 1);
  padding: 0.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-point span {
  color: var(--gray-700);
  font-size: 0.875rem;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.75rem;
  margin-top: 1rem;
}

.pricing-urgency {
  color: var(--white);
  margin-bottom: 1rem;
}

.pricing-question {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-message {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.pricing-countdown .countdown-item {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

/* Differentials Section */
.differentials {
  padding: 3rem 1rem;
  background: linear-gradient(to bottom, var(--white), var(--gray-50));
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.differential-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-100);
  text-align: center;
}

.differential-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  color: var(--white);
}

.differential-icon.bg-blue {
  background: linear-gradient(to right, #3b82f6, #2563eb);
}

.differential-icon.bg-pink {
  background: linear-gradient(to right, #ec4899, #db2777);
}

.differential-icon.bg-green {
  background: linear-gradient(to right, #22c55e, #16a34a);
}

.differential-icon.bg-purple {
  background: linear-gradient(to right, #a855f7, #9333ea);
}

.differential-title {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.differential-description {
  color: var(--gray-500);
  font-size: 0.75rem;
  line-height: 1.5;
}

/* Final CTA Section */
.final-cta {
  padding: 3rem 1rem;
  background: var(--amber-50);
  text-align: center;
}

.final-cta-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 237, 213, 1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--orange-600);
}

.final-cta-text {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.final-cta-text strong {
  color: var(--gray-900);
}

.final-cta-highlight {
  display: inline-block;
  background: linear-gradient(to right, var(--orange-500), var(--red-500));
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  padding: 2rem 1rem;
  background: var(--gray-900);
  color: var(--white);
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  background: var(--orange-500);
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.footer-logo span {
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-tagline {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--gray-400);
  font-size: 0.75rem;
}

.footer-copyright {
  color: var(--gray-500);
  font-size: 0.75rem;
}

/* Sticky Bottom CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(to right, var(--orange-500), var(--red-500));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  padding: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-container {
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.sticky-cta-price {
  flex: 1;
}

.sticky-old-price {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
}

.sticky-current-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
}

.sticky-cta-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--orange-600);
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.sticky-cta-button:active {
  transform: scale(0.95);
}

/* Responsive adjustments */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .feature-items {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  
  .feature-item {
    flex: 0 0 45%;
  }
  
  .pricing-current {
    font-size: 3rem;
  }
  
  .stats-price-current {
    font-size: 2.5rem;
  }
}
