:root {
    --primary-color: #dc2626;
}

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

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

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

/* Header */
header {
    background: var(--primary-color);
    border-bottom: 1px solid darkred;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    color: white;
}

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


.logo {
    font-size: 24px;
    font-weight: bold;
    color: white !important;
}

nav {
    /*display: flex;
    align-items: center;*/
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

nav  .btn-primary {
    padding: .3rem .8rem;
    background-color: white;
    color: black;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    padding-top: 200px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0 40px 0;
    flex-wrap: wrap;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 0px;
    font-size: 16px;
    font-weight: 500;
    color: green !important;
}

.hero-benefit .checkmark {
    width: 18px;
    height: 18px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    background-color: green !important;
    margin-right: 7px;
}

.hero-meta {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    /*background: yellow;*/
    color: white;
}

.btn-primary:hover {
    background: #b91c1c;
    color: white;
}

.btn-secondary {
    background: #ccc;
    color: #000;
    border: none;
}

.btn-secondary:hover {
    background: #999;
    color: #000;
}

/* Example Report Section */
.example-report {
    padding: 80px 0;
    background: #f2f1ed;
}

.example-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.report-preview {
    position: relative;
    cursor: pointer;
    max-width: 400px;
    margin-left: auto;
}

.report-preview img {
    width: 100%;
    border: 1px solid #000;
    border-radius: 8px;
}

.report-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.report-preview:hover .report-overlay {
    opacity: 1;
}

.benefits h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.benefits-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f8f8;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid black;
}

.faq-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #000;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
}

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

.profile-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 3px solid #000;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
}

.about-links {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.about-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.about-link:hover {
    border-bottom: 1px solid var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #000;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 20px;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #111;
    color: white;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-help {
    font-size: 14px;
    color: #ccc;
    margin-top: 8px;
    font-style: italic;
}

.btn-large {
    width: 100%;
    padding: 18px 30px;
    font-size: 20px;
    margin: 30px 0 15px 0;
}

.brand-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.form-meta {
    text-align: center;
    font-size: 14px;
    color: #ccc;
    font-style: italic;
}

/* Footer */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #333;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .example-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .faq-item {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

.crossed {
    text-decoration: line-through;
    opacity: .5;
}
