/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.navbar {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-bottom: 2px solid #d69e2e;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.brand-logo {
    height: 40px;
    width: auto;
}

.kit-name {
    color: #ffd700;
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255,215,0,0.2);
    border-radius: 20px;
    border: 1px solid rgba(255,215,0,0.3);
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="legal-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><rect x="23" y="23" width="4" height="4" fill="%23d69e2e" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23legal-pattern)"/></svg>');
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.legal-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d69e2e, #b7791f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.highlight {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.impact-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.95);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(214, 158, 46, 0.3);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
}

.stat-label {
    font-size: 0.8rem;
    color: #718096;
}

.disclaimer {
    margin-bottom: 2rem;
    text-align: left;
}

.disclaimer small {
    color: #a0aec0;
    font-size: 0.8rem;
    font-style: italic;
}

.lead-magnet-offer {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 2px solid rgba(214, 158, 46, 0.3);
    position: relative;
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: linear-gradient(135deg, #d69e2e, #b7791f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
}

.lead-magnet-offer h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.lead-magnet-offer p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.email-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.email-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.email-form input:focus {
    outline: none;
    border-color: #d69e2e;
}

.cta-button {
    background: linear-gradient(135deg, #d69e2e, #b7791f);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 158, 46, 0.5);
}

.privacy-note {
    font-size: 0.8rem;
    color: #718096;
    text-align: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 2px solid rgba(214, 158, 46, 0.3);
}

/* Benefits Section */
.benefits {
    padding: 4rem 2rem;
    background: white;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.benefit-card {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #d69e2e;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(214, 158, 46, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(214, 158, 46, 0.3);
    backdrop-filter: blur(10px);
}

.testimonial-content p {
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #a0aec0;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #fffbeb;
}

.pricing-card {
    background: white;
    color: #1a202c;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 2px solid rgba(214, 158, 46, 0.3);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #d69e2e;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #d69e2e;
    margin-bottom: 2rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.features li:before {
    content: '⚖️';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #718096;
}

/* Footer */
footer {
    background: #1a202c;
    color: white;
    text-align: center;
    padding: 2rem;
    border-top: 2px solid #d69e2e;
}

.template-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #4a5568;
}

.template-info small {
    color: #a0aec0;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .impact-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

