:root {
    --primary-color: #27ae60;
    --primary-dark: #219150;
    --secondary-color: #2c3e50;
    --accent-color: #e67e22;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --border-color: #eee;
    --container-width: 1100px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

img {
    max-width: 450px;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

/* Typography */
h1, h2, h3 {
    color: var(--secondary-color);
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-color);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-large {
    font-size: 1.2rem;
    padding: 20px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.2);
}

.btn-large:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(39, 174, 96, 0.3);
}

.btn-small {
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 0.9rem;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

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

/* Header */
.header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.logo span {
    color: var(--primary-color);
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    margin-right: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #f0f7f2 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 15px;
}

.trust-badges {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badges img {
    height: 100px;
    opacity: 0.7;
}

/* Problem-Solution */
.section-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.solution-item {
    padding: 40px;
    border-radius: 15px;
    background: var(--white);
    border: 1px solid var(--border-color);
    text-align: center;
}

.highlight-item {
    background-color: #eafaf1;
    border-color: var(--primary-color);
}

.solution-item .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.review-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    font-style: italic;
}

.review-card cite {
    display: block;
    margin-top: 20px;
    font-weight: 700;
    font-style: normal;
    color: var(--secondary-color);
}

.stars {
    color: #f1c40f;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Urgency Section */
.urgency-box {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.urgency-box h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.countdown {
    margin: 30px 0;
    font-size: 1.5rem;
    font-weight: 700;
}

#timer {
    color: var(--accent-color);
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 5px;
}

.secure-note {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #1a252f;
    color: #bdc3c7;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.fda-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    font-size: 0.8rem;
    text-align: center;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-image { order: -1; }
    .trust-badges { justify-content: center; }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .header .nav { display: none; }
    .solution-grid, .reviews-grid, .footer-grid { grid-template-columns: 1fr; }
    .urgency-box { padding: 40px 20px; }
}
