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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #fff8f6;
    color: #2d2524;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.header {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(255, 185, 168, 0.45), transparent 35%),
        linear-gradient(135deg, #fff8f6, #ffe8e1);
    padding-bottom: 60px;
}

.navbar {
    width: 92%;
    max-width: 1250px;
    margin: auto;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #9f4f43;
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 700;
    color: #4b3a38;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active-link {
    color: #c35f50;
}

.menu-btn {
    display: none;
    border: none;
    background: #fff;
    color: #9f4f43;
    font-size: 24px;
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
}

.hero {
    width: 92%;
    max-width: 1200px;
    margin: 75px auto 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.small-label {
    color: #c35f50;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: 54px;
    line-height: 1.05;
    color: #2d2524;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: #6b5551;
    max-width: 620px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn {
    display: inline-block;
    padding: 15px 26px;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.primary-btn {
    background: #c35f50;
    color: #fff;
    box-shadow: 0 12px 30px rgba(195, 95, 80, 0.25);
}

.primary-btn:hover {
    background: #a94d40;
    transform: translateY(-3px);
}

.secondary-btn {
    background: #fff;
    color: #9f4f43;
    border: 1px solid #f3c8bf;
}

.secondary-btn:hover {
    background: #fff0ec;
    transform: translateY(-3px);
}

.light-btn {
    background: #fff;
    color: #9f4f43;
}

.light-btn:hover {
    transform: translateY(-3px);
}

.trust-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: #6b5551;
    font-size: 14px;
    font-weight: 700;
}

.hero-card {
    display: flex;
    justify-content: center;
}

.pdf-preview {
    width: 360px;
    min-height: 500px;
    background: #fff;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 30px 70px rgba(116, 59, 49, 0.18);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(195, 95, 80, 0.14);
}

.pdf-top {
    position: absolute;
    top: 0;
    left: 0;
    height: 120px;
    width: 100%;
    background: linear-gradient(135deg, #c35f50, #f2a79a);
}

.pdf-preview h2 {
    position: relative;
    margin-top: 120px;
    color: #2d2524;
    font-size: 32px;
    line-height: 1.1;
}

.pdf-preview p {
    margin-top: 18px;
    color: #6b5551;
    font-weight: 700;
}

.pdf-lines {
    margin-top: 32px;
    display: grid;
    gap: 14px;
}

.pdf-lines span {
    display: block;
    height: 14px;
    background: #ffe5df;
    border-radius: 999px;
}

.pdf-lines span:nth-child(2) {
    width: 80%;
}

.pdf-lines span:nth-child(3) {
    width: 65%;
}

.pdf-lines span:nth-child(4) {
    width: 90%;
}

.preview-btn {
    display: inline-block;
    margin-top: 28px;
    background: #2d2524;
    color: #fff;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 900;
}

.section {
    width: 92%;
    max-width: 1200px;
    margin: auto;
    padding: 85px 0;
}

.section-title {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-title h2 {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-title p {
    color: #6b5551;
    font-size: 17px;
}

.cards-grid,
.inside-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card,
.inside-item,
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 26px;
    box-shadow: 0 16px 40px rgba(116, 59, 49, 0.08);
    border: 1px solid #ffe1d9;
    transition: 0.3s;
}

.info-card:hover,
.inside-item:hover,
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(116, 59, 49, 0.14);
}

.info-card h3,
.inside-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #9f4f43;
}

.info-card p,
.inside-item p,
.testimonial-card p {
    color: #6b5551;
}

.about-section {
    background: #fff;
    max-width: 100%;
    width: 100%;
}

.about-content {
    width: 92%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.about-content h2 {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.about-content p {
    color: #6b5551;
    margin-bottom: 18px;
    font-size: 17px;
}

.about-box {
    background: linear-gradient(135deg, #fff8f6, #ffe2db);
    padding: 34px;
    border-radius: 28px;
    border: 1px solid #ffd1c7;
}

.about-box h3 {
    color: #9f4f43;
    font-size: 24px;
    margin-bottom: 18px;
}

.about-box ul,
.pricing-left ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.about-box li {
    background: #fff;
    padding: 13px 15px;
    border-radius: 14px;
    color: #5d4946;
    font-weight: 700;
}

.inside-item span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    background: #ffe2db;
    color: #9f4f43;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    margin-bottom: 18px;
}

.quote-section {
    max-width: 100%;
    width: 100%;
    background: linear-gradient(135deg, #9f4f43, #c35f50);
    color: #fff;
    padding: 80px 0;
}

.quote-box {
    width: 92%;
    max-width: 950px;
    margin: auto;
    text-align: center;
}

.quote-box h2 {
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 16px;
}

.quote-box p {
    opacity: 0.9;
    font-size: 18px;
    margin-bottom: 22px;
}

.testimonial-card h4 {
    color: #9f4f43;
    margin-top: 16px;
}

.pricing-card {
    background: #fff;
    border-radius: 34px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 34px;
    align-items: start;
    box-shadow: 0 30px 70px rgba(116, 59, 49, 0.12);
    border: 1px solid #ffe1d9;
}

.pricing-left h2 {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.pricing-left p {
    color: #6b5551;
    font-size: 17px;
    margin-bottom: 20px;
}

.pricing-left li {
    color: #4b3a38;
    font-weight: 700;
}

.pricing-right {
    background: linear-gradient(135deg, #fff8f6, #ffe2db);
    padding: 30px;
    border-radius: 28px;
}

.price-label {
    color: #9f4f43;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.pricing-right h3 {
    font-size: 52px;
    color: #2d2524;
    margin: 8px 0;
}

.price-note {
    color: #6b5551;
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-weight: 900;
    margin-bottom: 8px;
    color: #4b3a38;
}

input,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #f0c7bf;
    outline: none;
    font-size: 15px;
    margin-bottom: 14px;
    background: #fff;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

input:focus,
textarea:focus {
    border-color: #c35f50;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #5d4946;
    margin: 8px 0 18px;
}

.checkbox-row input {
    width: auto;
    margin-top: 4px;
}

.checkbox-row a {
    color: #9f4f43;
    font-weight: 900;
}

#paypal-button-container {
    margin-top: 12px;
}

.payment-message {
    font-size: 14px;
    font-weight: 800;
    margin-top: 14px;
    color: #9f4f43;
}

.secure-note {
    color: #6b5551;
    font-size: 13px;
    margin-top: 14px;
}

.faq-list {
    max-width: 850px;
    margin: auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #ffe1d9;
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px;
    font-size: 17px;
    font-weight: 900;
    color: #2d2524;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 0 22px 22px;
    color: #6b5551;
}

.faq-item.active .faq-answer {
    display: block;
}

.contact-form {
    max-width: 720px;
    margin: auto;
    background: #fff;
    padding: 32px;
    border-radius: 28px;
    border: 1px solid #ffe1d9;
    box-shadow: 0 20px 50px rgba(116, 59, 49, 0.08);
}

.legal-section {
    padding: 45px 0;
}

.legal-box {
    background: #fff;
    padding: 34px;
    border-radius: 26px;
    border: 1px solid #ffe1d9;
    box-shadow: 0 16px 40px rgba(116, 59, 49, 0.07);
}

.legal-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.legal-box p {
    color: #6b5551;
    margin-bottom: 14px;
}

.final-cta {
    text-align: center;
    padding-top: 60px;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 14px;
}

.final-cta p {
    color: #6b5551;
    margin-bottom: 24px;
    font-size: 18px;
}

.footer {
    background: #2d2524;
    color: #fff;
    padding: 42px 5%;
    display: grid;
    gap: 20px;
    text-align: center;
}

.footer h3 {
    color: #ffd5cc;
    margin-bottom: 6px;
}

.footer p {
    color: #d8c7c3;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    opacity: 0.8;
    transition: 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 1;
    color: #ffd5cc;
}

.copyright {
    font-size: 14px;
}

.hidden {
    opacity: 0;
    transform: translateY(28px);
    transition: 0.7s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #c35f50;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 14px 35px rgba(195, 95, 80, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #a94d40;
    transform: translateY(-4px);
}

@media (max-width: 950px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 78px;
        left: 5%;
        right: 5%;
        background: #fff;
        border-radius: 20px;
        padding: 20px;
        display: none;
        flex-direction: column;
        box-shadow: 0 18px 40px rgba(116, 59, 49, 0.12);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .hero,
    .cards-grid,
    .inside-grid,
    .testimonial-grid,
    .about-content,
    .pricing-card {
        grid-template-columns: 1fr;
    }

    .hero {
        margin-top: 40px;
        text-align: center;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-buttons,
    .trust-row {
        justify-content: center;
    }

    .section-title h2,
    .about-content h2,
    .pricing-left h2,
    .final-cta h2 {
        font-size: 31px;
    }
}

@media (max-width: 520px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .pdf-preview {
        width: 100%;
        min-height: 450px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }

    .pricing-card,
    .contact-form,
    .legal-box {
        padding: 24px;
    }
}
