* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
line-height: 1.6;
color: #1f2937;
background-color: #f8fafc;
} .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
} .hero-section {
background: linear-gradient(135deg, #60a5fa, #34d399);
color: white;
padding: 5rem 1rem;
text-align: center;
}
.hero-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}
.hero-text h1 {
font-size: 3rem;
font-weight: bold;
margin-bottom: 1rem;
line-height: 1.2;
}
.hero-text p {
font-size: 1.25rem;
margin-bottom: 2rem;
opacity: 0.9;
}
.hero-image img {
width: 100%;
max-width: 500px;
border-radius: 0.5rem;
box-shadow: 0 20px 40px -10px rgba(52, 211, 153, 0.3);
} .badge {
display: inline-block;
background-color: #f59e0b;
color: white;
padding: 0.5rem 1rem;
border-radius: 0.25rem;
font-size: 0.875rem;
margin-bottom: 1.5rem;
} .cta-button {
display: inline-block;
background: linear-gradient(135deg, #10b981, #34d399);
color: white;
padding: 1rem 2rem;
border: none;
border-radius: 0.5rem;
font-size: 1.125rem;
font-weight: 600;
text-decoration: none;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 20px -2px rgba(16, 185, 129, 0.3);
}
.cta-button:hover {
transform: scale(1.05);
box-shadow: 0 8px 30px -5px rgba(16, 185, 129, 0.4);
}
.cta-button-xl {
padding: 1.5rem 3rem;
font-size: 1.25rem;
font-weight: bold;
} .section {
padding: 4rem 1rem;
}
.section-card {
background-color: white;
}
.section-accent {
background-color: rgba(52, 211, 153, 0.1);
}
.section-muted {
background-color: #f1f5f9;
} .content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
max-width: 1200px;
margin: 0 auto;
} h1, h2, h3 {
color: #1f2937;
margin-bottom: 1rem;
}
h2 {
font-size: 2rem;
font-weight: bold;
text-align: center;
margin-bottom: 2rem;
}
h3 {
font-size: 1.5rem;
font-weight: bold;
} .card {
background: white;
border-radius: 0.5rem;
padding: 2rem;
box-shadow: 0 4px 20px -2px rgba(31, 41, 55, 0.1);
margin-bottom: 1.5rem;
}
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
} .benefits-list {
list-style: none;
padding: 0;
}
.benefits-list li {
display: flex;
align-items: flex-start;
gap: 0.75rem;
margin-bottom: 1rem;
padding: 0.5rem 0;
}
.benefits-list .check {
color: #10b981;
font-weight: bold;
font-size: 1.125rem;
} .price-card {
background: white;
border-radius: 0.5rem;
padding: 2rem;
box-shadow: 0 4px 20px -2px rgba(31, 41, 55, 0.1);
text-align: center;
}
.price-old {
text-decoration: line-through;
color: #6b7280;
font-size: 1.5rem;
}
.price-current {
color: #10b981;
font-size: 3rem;
font-weight: bold;
margin: 1rem 0;
} .testimonial {
background: white;
border-radius: 0.5rem;
padding: 2rem;
box-shadow: 0 4px 20px -2px rgba(31, 41, 55, 0.1);
margin-bottom: 2rem;
}
.testimonial-stars {
color: #f59e0b;
font-size: 1.125rem;
margin-bottom: 1rem;
}
.testimonial-quote {
font-style: italic;
margin-bottom: 1rem;
line-height: 1.7;
}
.testimonial-author {
text-align: right;
font-weight: 600;
} .faq-item {
border: 1px solid #e5e7eb;
border-radius: 0.5rem;
margin-bottom: 1rem;
overflow: hidden;
}
.faq-question {
background: white;
padding: 1.5rem;
cursor: pointer;
font-weight: 600;
border: none;
width: 100%;
text-align: left;
font-size: 1rem;
}
.faq-question:hover {
background-color: #f9fafb;
}
.faq-answer {
padding: 0 1.5rem 1.5rem;
color: #6b7280;
line-height: 1.7;
} .urgency-section {
background-color: rgba(245, 158, 11, 0.1);
border-top: 4px solid #f59e0b;
text-align: center;
} .site-footer {
background-color: #f1f5f9;
text-align: center;
padding: 2rem 1rem;
color: #6b7280;
} @media (max-width: 768px) {
.hero-content,
.content-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
.hero-text h1 {
font-size: 2rem;
}
.hero-text p {
font-size: 1rem;
}
.card-grid {
grid-template-columns: 1fr;
}
.section {
padding: 2rem 1rem;
}
.cta-button {
padding: 0.75rem 1.5rem;
font-size: 1rem;
}
.cta-button-xl {
padding: 1rem 2rem;
font-size: 1.125rem;
}
} img {
max-width: 100%;
height: auto;
display: block;
}