/* Pre-compiled CSS for Fritzline Landing Page */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1e1e1e; line-height: 1.6; background-color: #ffffff; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: 12px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}
.btn-primary {
    background-color: #8b1c24;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(139, 28, 36, 0.3);
}
.btn-primary:hover {
    background-color: #6a151b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 28, 36, 0.4);
}
.btn-secondary {
    background-color: #ffffff;
    color: #8b1c24;
    border: 2px solid #8b1c24;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}
@media (max-width: 768px) { .sticky-cta { display: block; } }

section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 50px 0; } }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 15px; color: #8b1c24; }
.section-title p { color: #666666; max-width: 600px; margin: 0 auto; }

.hero { background-color: #f3e6dc; padding: 60px 0 100px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 991px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } }
.hero .badge { display: inline-block; background-color: #c9a15b; color: #ffffff; padding: 5px 15px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; margin-bottom: 20px; }
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 25px; color: #8b1c24; }
@media (max-width: 768px) { .hero h1 { font-size: 2.8rem; } }
.hero .subheadline { font-size: 1.25rem; color: #666666; margin-bottom: 30px; }
.hero .price-box { margin-bottom: 30px; display: flex; align-items: center; gap: 15px; }
@media (max-width: 991px) { .hero .price-box { justify-content: center; } }
.hero .old-price { text-decoration: line-through; color: #666666; font-size: 1.5rem; }
.hero .new-price { font-size: 2.5rem; font-weight: 700; color: #8b1c24; }
.hero .discount-tag { background-color: #e8f5e9; color: #2e7d32; padding: 4px 10px; border-radius: 4px; font-weight: 700; }
.hero-bullets { margin-bottom: 40px; }
.hero-bullets li { margin-bottom: 12px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
@media (max-width: 991px) { .hero-bullets li { justify-content: center; } }
.trust-indicators { display: flex; gap: 20px; font-size: 0.9rem; color: #666666; margin-top: 30px; }
@media (max-width: 991px) { .trust-indicators { justify-content: center; flex-wrap: wrap; } }
.hero-image img { box-shadow: 0 15px 40px rgba(0,0,0,0.1); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.benefit-card { padding: 40px; background: #ffffff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; transition: all 0.3s ease; border: 1px solid #eee; }
.benefit-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.benefit-icon { font-size: 3rem; margin-bottom: 20px; display: inline-block; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: #ffffff; padding: 30px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.stars { color: #c9a15b; margin-bottom: 15px; }
.user { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
.verified { color: #2e7d32; font-size: 0.8rem; }

.how-it-works .row { display: flex; align-items: center; gap: 60px; margin-bottom: 80px; }
@media (max-width: 991px) { .how-it-works .row { flex-direction: column; text-align: center; } }
.how-it-works .row:nth-child(even) { flex-direction: row-reverse; }
@media (max-width: 991px) { .how-it-works .row:nth-child(even) { flex-direction: column; } }
.text-side { flex: 1; }
.step-number { font-size: 3rem; color: rgba(139, 28, 36, 0.1); font-weight: 800; margin-bottom: -15px; display: block; }
.image-side { flex: 1; }

.comparison { background-color: #f3e6dc; }
.comparison-table { width: 100%; max-width: 800px; margin: 0 auto; background: #ffffff; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); border-collapse: collapse; overflow: hidden; }
.comparison-table th, .comparison-table td { padding: 20px; text-align: center; border-bottom: 1px solid #f0f0f0; }
.feature-name { text-align: left; font-weight: 600; }
.highlight { background-color: rgba(139, 28, 36, 0.03); font-weight: 700; color: #8b1c24; }

.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: #ffffff; margin-bottom: 15px; border-radius: 12px; border: 1px solid #eee; padding: 20px; }
.faq-item summary { font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.faq-item summary::after { content: '+'; color: #8b1c24; font-size: 1.5rem; }
.faq-item details[open] summary::after { content: '−'; }

.final-cta { background-color: #8b1c24; color: #ffffff; text-align: center; }
.final-cta h2 { color: #ffffff; font-size: 3rem; }

footer { padding: 60px 0 40px; background: #fafafa; border-top: 1px solid #eee; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.payment-methods { text-align: center; border-top: 1px solid #eee; padding-top: 40px; margin-top: 40px; color: #666; }
