@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    min-height: 100vh;
    background: #f9fafb;
    color: #1f2937;
    line-height: 1.6;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (max-width: 768px) {
    body {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 375px) {
    body {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* Custom gradients */
.gradient-primary {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
}

.gradient-warning {
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
}

.gradient-success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

/* Animation classes */
.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    from {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(34, 197, 94, 0.8);
    }
}

.btn-hover-effect {
    transition: all 0.3s ease;
}

.btn-hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Layout utilities */
.container {
    max-width: 28rem;
    margin: 0 auto;
    padding: 0;
}

.section {
    padding: 2rem 0;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #e5e7eb;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

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

.logo-icon {
    font-size: 1.25rem;
    color: #3b82f6;
}

.logo-text {
    font-weight: 600;
    color: #111827;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Hero section */
.hero {
    padding: 2rem 0;
    overflow: hidden;
    color: white;
}

.hero-content {
    text-align: center;
    padding: 0;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    color: rgba(186, 230, 253, 1);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-image-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image {
    border-radius: 0.5rem;
    width: 100%;
    height: 12rem;
    object-fit: cover;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    backdrop-filter: blur(4px);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.3);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.feature-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: #22c55e;
    color: white;
}

.btn-primary:hover {
    background: #16a34a;
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Benefits section */
.benefits {
    padding: 2rem 0;
    background: white;
}

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

.benefit-card {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.benefit-card.blue {
    background: #eff6ff;
    border-color: #dbeafe;
}

.benefit-card.green {
    background: #f0fdf4;
    border-color: #dcfce7;
}

.benefit-card.purple {
    background: #faf5ff;
    border-color: #e9d5ff;
}

.benefit-card.orange {
    background: #fff7ed;
    border-color: #fed7aa;
}

.benefit-icon {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.benefit-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

/* Bible quote section */
.bible-quote {
    padding: 2rem 0;
    color: white;
    text-align: center;
}

.bible-quote h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.animation-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.animation-frame {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.animation-image {
    width: 17.5rem;
    height: 17.5rem;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.bible-quote blockquote {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.bible-quote cite {
    color: #c4b5fd;
    font-size: 0.875rem;
}

/* Target audience section */
.target-audience {
    padding: 2rem 0;
    background: white;
}

.target-audience h2 {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.target-item {
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid;
}

.target-item.blue {
    background: #eff6ff;
    border-color: #dbeafe;
}

.target-item.green {
    background: #f0fdf4;
    border-color: #dcfce7;
}

.target-item.purple {
    background: #faf5ff;
    border-color: #e9d5ff;
}

.target-item.orange {
    background: #fff7ed;
    border-color: #fed7aa;
}

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

.target-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.target-icon.blue {
    color: #2563eb;
}

.target-icon.green {
    color: #16a34a;
}

.target-icon.purple {
    color: #7c3aed;
}

.target-icon.orange {
    color: #ea580c;
}

.target-text {
    font-size: 0.875rem;
    color: #374151;
}

/* Pricing section */
.pricing {
    padding: 2rem 0;
    color: white;
    overflow: hidden;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-badge {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.old-price {
    font-size: 0.875rem;
    color: #fecaca;
    text-decoration: line-through;
    margin-bottom: 0.75rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: #fde047;
    display: block;
    margin-bottom: 0.75rem;
}

.price-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.features-title {
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-check {
    color: #86efac;
    font-size: 1rem;
}

.feature-emoji {
    font-size: 1.125rem;
}

.feature-description {
    font-size: 0.875rem;
    color: white;
}

/* Countdown */
.countdown-section {
    margin-bottom: 1.5rem;
}

.countdown-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

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

.countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
    line-height: 1;
}

.countdown-unit {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-top: 0.25rem;
}

/* Trust indicators */
.trust-indicators {
    padding: 2rem 0;
    background: #f9fafb;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.trust-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.trust-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.trust-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

/* FAQ section */
.faq {
    padding: 2rem 0;
    background: white;
}

.faq h2 {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.faq-item {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.faq-answer {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}

/* Final CTA */
.final-cta {
    padding: 2rem 0;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.final-cta p {
    color: #86efac;
    margin-bottom: 1.5rem;
}

.final-cta .btn {
    background: white;
    color: #059669;
    font-weight: 700;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.final-cta .btn:hover {
    background: #f9fafb;
}

/* Sticky elements */
.sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #22c55e;
    color: white;
    padding: 1rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.sticky-price {
    font-size: 0.875rem;
}

.sticky-price-main {
    font-weight: 700;
}

.sticky-price-sub {
    color: #86efac;
}

.sticky-button {
    background: white;
    color: #059669;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sticky-button:hover {
    background: #f9fafb;
}

/* WhatsApp button removed as requested */

/* Bottom padding for sticky CTA */
.bottom-padding {
    height: 5rem;
}

/* Responsive adjustments */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.375rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .countdown-container {
        gap: 0.25rem;
    }
    
    .countdown-box {
        padding: 0.75rem;
        min-width: 3.5rem;
    }
    
    .countdown-number {
        font-size: 1.25rem;
    }
}