


/* =========================
   GLOBAL RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f4f7fb;
    color:#142235;
    line-height:1.8;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

.container{
    max-width:1200px;
    margin:18px auto;
    padding:0 20px;
}

/* =========================
   TYPOGRAPHY
========================= */

h1{
    font-size:2.55rem;
    line-height:1.1;
    margin-bottom:18px;
    font-weight:800;
    color:#132238;
    letter-spacing:-1px;
    max-width:920px;
    margin-left:auto;
    margin-right:auto;
}

h2{
    font-size:2.2rem;
    margin-bottom:22px;
    color:#132238;
    line-height:1.2;
    letter-spacing:-0.8px;
    font-weight:800;
}

h3{
    font-size:1.35rem;
    margin:25px 0 15px;
    color:#223a5c;
}

p{
    margin-bottom:20px;
    font-size:1.08rem;
    color:#374151;
    line-height:1.9;
}

/* =========================
   HEADER
========================= */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;

    max-width:1000px;
    margin:12px auto 0;
    padding:16px 30px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:#ffffff;
    border-radius:22px 22px 0 0;

    backdrop-filter:blur(10px);
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;

    font-weight:800;
    font-size:1.1rem;
    color:#132238;
}

.logo img{
    width:34px;
    height:34px;
}

.nav-menu{
    display:flex;
    gap:28px;
}

.nav-menu a{
    text-decoration:none;
    color:#374151;
    font-weight:600;
    font-size:0.95rem;
    transition:0.3s ease;
}

.nav-menu a:hover{
    color:#1d9bf0;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    background:#ffffff;
    padding:24px 36px 34px;
    border-radius:0 0 28px 28px;

    margin:0 auto 24px;

    text-align:center;

    max-width:1000px;

    box-shadow:0 8px 30px rgba(0,0,0,0.04);
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:6px 16px;

    background:#e8f5eb;
    color:#24573a;

    border-radius:999px;

    font-size:13px;
    font-weight:700;
    line-height:1;

    margin-bottom:14px;

    white-space:nowrap;
}

.hero-sub{
    font-size:1.12rem;
    line-height:1.8;
    max-width:900px;
    margin:0 auto;
    color:#4b5563;
}

.hero-image{
    width:100%;
    max-width:620px;
    max-height:320px;

    height:auto;

    object-fit:cover;

    border-radius:22px;

    margin:24px auto 8px;

    display:block;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* =========================
   BUTTONS
========================= */

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 34px;

    background:linear-gradient(180deg,#f7c650,#efb12d);

    color:#071b3b;

    border:1px solid rgba(0,0,0,0.06);

    border-radius:18px;

    font-size:1.02rem;
    font-weight:700;
    line-height:1.2;
    letter-spacing:-0.2px;

    text-decoration:none;

    margin-top:24px;

    transition:all 0.25s ease;

    box-shadow:0 5px 14px rgba(0,0,0,0.08);

    position:relative;

    overflow:hidden;

    text-align:center;
}

/* =========================
   HOVER
========================= */

.cta-btn:hover{
    transform:translateY(-1px);

    background:linear-gradient(180deg,#f5bf42,#e9a81f);

    box-shadow:0 9px 20px rgba(0,0,0,0.12);
}

/* =========================
   ACTIVE
========================= */

.cta-btn:active{
    transform:translateY(0);
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .cta-btn{
        width:100%;

        max-width:320px;

        padding:15px 24px;

        font-size:0.98rem;

        border-radius:16px;
    }

}

/* =========================
   CONTENT SECTIONS
========================= */

.section{
    background:#ffffff;
    max-width:1000px;
    margin:0 auto 34px;
    padding:42px 44px;
    border-radius:28px;
    border:1px solid #eef1f5;
    box-shadow:0 6px 24px rgba(0,0,0,0.04);
}

/* =========================
   SECTION HEADINGS
========================= */

.section h2{
    font-size:32px;
    font-weight:800;
    line-height:1.3;
    letter-spacing:-0.5px;
    color:#071b3b;
    margin-bottom:22px;
}

/* =========================
   PARAGRAPHS
========================= */

.section p{
    font-size:17px;
    line-height:1.85;
    color:#2f3b52;
    margin-bottom:20px;
}

/* =========================
   HIGHLIGHT BOX
========================= */

.highlight{
    background:#fff8e7;
    padding:22px 24px;
    border-left:5px solid #f5b12f;
    border-radius:18px;
    margin:30px 0 16px;
    font-size:16px;
    line-height:1.8;
    color:#2f3b52;
}

/* =========================
   QUOTE BOX
========================= */

.quote-box{
    background:#f9fafb;
    padding:24px;
    border-radius:18px;
    margin:24px 0;
    font-style:italic;
    font-size:16px;
    line-height:1.8;
    color:#334155;
    border:1px solid #eef2f6;
}

/* =========================
   TABLES
========================= */

.table{
    width:100%;
    border-collapse:collapse;
    margin-top:22px;
    overflow:hidden;
    border-radius:16px;
}

.table th,
.table td{
    border:1px solid #e5e7eb;
    padding:16px 14px;
    text-align:left;
    vertical-align:top;
    font-size:15px;
    line-height:1.7;
}

.table th{
    background:#f8fafc;
    font-weight:700;
    color:#071b3b;
}

.table td{
    color:#334155;
}

/* =========================
   IMAGES
========================= */

.section-image,
.pricing-image{
    width:100%;
    max-width:920px;
    height:auto;
    display:block;
    margin:24px auto 26px;
    border-radius:22px;
    box-shadow:0 10px 28px rgba(0,0,0,0.06);
}

.section-image{
    object-fit:cover;
    object-position:center;
    max-height:560px;
}

.pricing-image{
    object-fit:contain;
}

/* =========================
   LISTS
========================= */

.section ul{
    padding-left:26px;
    margin:0 0 22px;
}

.section li{
    margin-bottom:12px;
    font-size:17px;
    line-height:1.8;
    color:#2f3b52;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .section{
        padding:26px 18px;
        margin-bottom:20px;
        border-radius:20px;
    }

    .section h2{
        font-size:26px;
        line-height:1.32;
        margin-bottom:18px;
    }

    .section p{
        font-size:16px;
        line-height:1.8;
        margin-bottom:18px;
    }

    .highlight,
    .quote-box{
        font-size:15px;
        line-height:1.75;
    }

    .table th,
    .table td{
        padding:10px 8px;
        font-size:13px;
    }

    .section li{
        font-size:16px;
        line-height:1.75;
    }

    .section-image,
    .pricing-image{
        border-radius:18px;
        margin:20px auto 22px;
    }

}
/* =========================
   REVIEW GRID
========================= */

.review-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:45px;
}

.review-card{
    background:#f7f7f7;
    border-radius:20px;
    padding:36px 24px;
    text-align:center;

    box-shadow:0 4px 14px rgba(0,0,0,0.05);

    transition:transform 0.2s ease;
}

.review-card:hover{
    transform:translateY(-3px);
}

.review-card h4{
    font-size:24px;
    line-height:1.4;
    margin-bottom:22px;
    color:#111;
    font-weight:700;
}

.score{
    font-size:56px;
    font-weight:800;
    color:#2d6b3f;
    line-height:1;
}

/* =========================
   BONUS SECTION
========================= */

.bonus-section{
    max-width:1080px;
    margin:auto;
}

.bonus-section h2{
    text-align:center;

    font-size:40px;
    font-weight:800;

    margin-bottom:26px;

    color:#132238;

    line-height:1.18;
    letter-spacing:-1px;

    max-width:860px;
    margin-left:auto;
    margin-right:auto;
}

.bonus-box{
    display:flex;
    align-items:flex-start;
    gap:18px;

    background:#ffffff;

    border-radius:18px;

    padding:20px 22px;

    margin-bottom:16px;

    box-shadow:0 4px 18px rgba(0,0,0,0.05);

    border:1px solid rgba(0,0,0,0.04);
}

.bonus-image{
    flex:0 0 110px;
}

.bonus-image img{
    width:110px;
    height:auto;
    display:block;
    border-radius:8px;
}

.bonus-text{
    flex:1;
}

.bonus-text h3{
    font-size:25px;
    font-weight:800;
    color:#d40000;
    margin-bottom:10px;
    line-height:1.25;
}

.bonus-text p{
    font-size:16px;
    line-height:1.55;
    color:#374151;
    margin-bottom:10px;
}

/* =========================================
   FAQ SECTION
========================================= */

.faq-section{
    padding-top:10px;
}

.faq-section h2{
    text-align:center;
    font-size:34px;
    font-weight:800;
    line-height:1.2;
    color:#071b3b;
    margin-bottom:28px;
}

.faq-container{
    max-width:760px;
    margin:0 auto;
}

/* FAQ ITEM */

.faq-item{
    background:#fff;
    border:1px solid #dddddd;
    margin-bottom:12px;
    overflow:hidden;
    transition:0.25s ease;
}

/* QUESTION BUTTON */

.faq-question{
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:#fff;
    border:none;
    outline:none;

    cursor:pointer;

    text-align:left;

    padding:18px 20px;

    font-size:16px;
    font-weight:700;
    line-height:1.5;

    color:#111;
}

/* QUESTION TEXT */

.faq-question span:first-child{
    flex:1;
    padding-right:14px;
}

/* ICON */

.faq-icon{
    font-size:22px;
    font-weight:500;
    color:#1f4f87;
    flex-shrink:0;
    line-height:1;
}

/* ANSWER */

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.3s ease;
    background:#fff;
}

.faq-answer p{
    padding:0 20px 20px;

    font-size:15px;
    line-height:1.8;

    color:#3c4452;
}

/* ACTIVE */

.faq-item.active .faq-question{
    padding-bottom:12px;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .faq-section h2{
        font-size:28px;
        margin-bottom:24px;
    }

    .faq-container{
        max-width:100%;
    }

    .faq-question{
        font-size:15px;
        padding:16px 16px;
    }

    .faq-icon{
        font-size:20px;
    }

    .faq-answer p{
        font-size:14px;
        line-height:1.75;
        padding:0 16px 18px;
    }

}

/* =========================
   MINI Q&A
========================= */

.mini-question{
    font-weight:700;
    font-size:1.15rem;
    margin-top:12px;
    margin-bottom:4px;
    color:#132238;
}

.mini-answer{
    font-weight:700;
    color:#24573a;
    margin-bottom:10px;
}

/* =========================
   PRICING SECTION
========================= */

.pricing-section h2{
    margin-bottom:32px;
}

.pricing-section .cta-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:fit-content;

    margin:28px auto 0;

    padding:16px 38px;

    text-align:center;
}

/* =========================
   FINAL CTA
========================= */

.final-cta{
    text-align:center;

    margin-top:50px;

    padding:50px 38px;

    background:#f8fafc;

    border-radius:28px;

    border:1px solid #eef2f7;

    box-shadow:0 3px 14px rgba(0,0,0,0.05);
}

.final-cta h3{
    font-size:46px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:24px;
    color:#0b2341;
    letter-spacing:-0.5px;
}

.final-cta p{
    font-size:21px;
    line-height:1.9;
    color:#2f3b52;

    margin-bottom:24px;

    max-width:920px;
    margin-left:auto;
    margin-right:auto;
}

.final-cta-btn{
    display:inline-block;

    background:linear-gradient(135deg,#f4b942,#d89b1d);

    color:#111;

    font-size:24px;
    font-weight:800;

    padding:22px 46px;

    border-radius:60px;

    text-decoration:none;

    margin-top:14px;
    margin-bottom:30px;

    transition:all 0.25s ease;

    box-shadow:0 8px 22px rgba(212,155,29,0.28);
}

.final-cta-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 28px rgba(212,155,29,0.36);
    opacity:0.98;
}

.cta-note{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;

    gap:14px;

    max-width:850px;

    margin:0 auto;

    font-size:17px;
    font-weight:600;
    line-height:1.6;

    color:#2d3748;
}

.cta-note span{
    background:#fff;

    padding:12px 18px;

    border-radius:40px;

    border:1px solid #edf1f5;

    box-shadow:0 2px 10px rgba(0,0,0,0.05);

    display:inline-flex;
    align-items:center;
    justify-content:center;

    white-space:nowrap;
}
/* =========================
   FOOTER
========================= */

.site-footer{
    background:#000;
    color:#fff;

    padding:34px 20px 38px;

    margin-top:60px;
}

/* =========================
   TOP LINKS
========================= */

.footer-links{
    text-align:center;

    margin-bottom:18px;

    line-height:1.8;
}

.footer-links a{
    color:#fff;

    text-decoration:none;

    font-size:12px;

    font-weight:500;

    transition:0.25s ease;
}

.footer-links a:hover{
    color:#3dbdff;
}

.footer-links span{
    margin:0 7px;

    color:#666;
}

/* =========================
   COPYRIGHT
========================= */

.footer-copy{
    text-align:center;

    font-size:13px;

    font-weight:700;

    color:#fff;

    margin-bottom:24px;

    line-height:1.5;
}

/* =========================
   DISCLAIMER WRAPPER
========================= */

.footer-disclaimer{
    max-width:920px;

    margin:0 auto;
}

/* =========================
   DISCLAIMER TEXT
========================= */

.footer-disclaimer p{
    font-size:13px;

    line-height:1.9;

    color:#dddddd;

    margin-bottom:22px;

    text-align:left;
}

/* =========================
   BOLD LABELS
========================= */

.footer-disclaimer strong,
.vendor-support strong{
    color:#ffffff;
}

/* =========================
   VENDOR SUPPORT
========================= */

.vendor-support{
    margin-top:28px;

    margin-bottom:18px;

    text-align:left;
}

.vendor-support p{
    margin-bottom:12px;
}

.vendor-support strong{
    font-size:15px;
}

.vendor-support a{
    color:#4db8ff;

    text-decoration:none;

    font-size:13px;

    font-weight:500;
}

.vendor-support a:hover{
    color:#7ed0ff;
}

/* =========================
   SUPPORT LINKS
========================= */

.support-links{
    font-size:13px;

    color:#d9d9d9;

    line-height:1.8;

    text-align:left;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .site-footer{
        padding:28px 16px 34px;
    }

    .footer-links{
        line-height:2;
    }

    .footer-links a{
        font-size:11px;
    }

    .footer-links span{
        display:none;
    }

    .footer-copy{
        font-size:12px;

        line-height:1.5;

        margin-bottom:20px;
    }

    .footer-disclaimer{
        max-width:100%;
    }

    .footer-disclaimer p{
        font-size:12px;

        line-height:1.85;

        margin-bottom:18px;

        text-align:left;
    }

    .vendor-support{
        text-align:left;
    }

    .vendor-support strong{
        font-size:14px;
    }

    .vendor-support a{
        font-size:12px;
    }

    .support-links{
        font-size:12px;

        line-height:1.75;
    }
}

/* =========================
   COPYRIGHT
========================= */

.footer-copy{
    text-align:center;

    font-size:13px;

    font-weight:600;

    margin-bottom:26px;

    line-height:1.5;
}


/* =========================
   DISCLAIMER WRAPPER
========================= */

.footer-disclaimer{
    max-width:700px;

    margin:0 auto;
}

/* =========================
   DISCLAIMER PARAGRAPHS
========================= */

.footer-disclaimer p{
    font-size:12px;

    line-height:1.65;

    color:#d7d7d7 !important;

    margin-bottom:15px;

    text-align:left;
}

/* =========================
   BOLD LABELS
========================= */

.footer-disclaimer strong{
    color:#ffffff !important;

    font-weight:700;
}

/* =========================
   VENDOR SUPPORT
========================= */

.vendor-support{
    margin-top:24px;

    margin-bottom:16px;

    text-align:center;
}

.vendor-support p{
    margin-bottom:9px;

    font-size:12px;

    line-height:1.6;

    color:#d7d7d7 !important;
}

.vendor-support strong{
    font-size:14px;

    color:#ffffff !important;

    font-weight:700;
}

.vendor-support a{
    color:#4db8ff !important;

    text-decoration:none;

    font-size:12px;

    font-weight:500;

    transition:0.25s ease;
}

.vendor-support a:hover{
    color:#7ed0ff !important;
}


/* =========================
   SUPPORT NOTE
========================= */

.support-links{
    text-align:center;

    font-size:12px;

    color:#cfcfcf;

    line-height:1.7;

    margin-top:18px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .site-footer{
        padding:28px 18px 32px;
    }

    .footer-links{
        line-height:1.9;
    }

    .footer-links a{
        font-size:11px;
    }

    .footer-copy{
        font-size:12px;
    }

    .footer-disclaimer p{
        font-size:12px;

        line-height:1.7;

        text-align:left;
    }

    .vendor-support strong{
        font-size:14px;
    }

    .vendor-support a{
        font-size:12px;
    }

    .support-links{
        font-size:11px;
    }

}

/* =========================
   GENERIC FOOTER
========================= */

footer{
    text-align:center;
    padding:30px 0;
    font-size:0.9rem;
    color:#6b7280;
}

/* =========================
   DISCLAIMER
========================= */

.disclaimer{
    font-size:0.85rem;
    color:#6b7280;
    line-height:1.7;
    margin-top:30px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

    .review-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .review-card{
        padding:32px 22px;
    }

    .review-card h4{
        font-size:22px;
    }

    .score{
        font-size:48px;
    }

}

@media(max-width:768px){

    .container{
        padding:0 15px;
        margin:10px auto;
    }

    .site-header{
        padding:16px 20px;
        flex-direction:column;
        gap:14px;
        border-radius:18px 18px 0 0;
    }

    .nav-menu{
        gap:18px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        padding:24px 22px 38px;
    }

    h1{
        font-size:2rem;
        line-height:1.15;
    }

    h2{
        font-size:1.6rem;
    }

    .hero-sub{
        font-size:1rem;
        line-height:1.7;
        max-width:100%;
    }

    .hero-image{
        max-width:100%;
        max-height:none;
        margin:22px auto 6px;
    }

    .hero-badge{
        font-size:12px;
        padding:6px 14px;
    }

   

    .section-image{
        height:auto;
        max-height:none;
        border-radius:18px;
        margin:16px auto 20px;
    }

    .bonus-section h2{
        font-size:29px;
        line-height:1.22;
        margin-bottom:24px;
    }

    .bonus-box{
        flex-direction:column;
        text-align:center;
        gap:16px;
        padding:20px 18px;
    }

    .bonus-image{
        flex:auto;
        margin:0 auto;
    }

    .bonus-image img{
        width:115px;
    }

    .bonus-text h3{
        font-size:22px;
    }

    .bonus-text p{
        font-size:15px;
        line-height:1.6;
    }

    .faq-section h2{
        font-size:34px;
        margin-bottom:30px;
    }

    .faq-question{
        font-size:18px;
        padding:22px 18px;
    }

    .faq-icon{
        font-size:28px;
    }

    .faq-answer p{
        font-size:17px;
        line-height:1.7;
        padding:0 18px 24px;
    }

    .final-cta{
        margin-top:40px;
        padding:38px 22px;
        border-radius:22px;
    }

    .final-cta h3{
        font-size:32px;
        line-height:1.25;
        margin-bottom:20px;
    }

    .final-cta p{
        font-size:17px;
        line-height:1.85;
        margin-bottom:22px;
    }

    .final-cta-btn{
        width:100%;
        font-size:20px;
        padding:18px 24px;
        margin-bottom:24px;
    }

    .cta-note{
        flex-direction:column;
        gap:12px;
    }

    .cta-note span{
        width:100%;
        font-size:15px;
        padding:12px 16px;
        white-space:normal;
    }

    .site-footer{
        padding:35px 16px 40px;
    }

    .footer-links{
        line-height:2;
    }

    .footer-links a{
        font-size:13px;
    }

    .footer-links span{
        display:none;
    }

    .footer-copy{
        font-size:15px;
    }

    .footer-disclaimer p{
        font-size:11px;
        line-height:1.6;
    }

    .vendor-support{
        margin-top:22px;
    }

    .support-links{
        font-size:11px;
    }

}

@media(max-width:600px){

    .review-grid{
        grid-template-columns:repeat(2,1fr);
        gap:16px;
        margin-top:35px;
    }

    .review-card{
        padding:24px 16px;
        border-radius:16px;
    }

    .review-card h4{
        font-size:18px;
        margin-bottom:16px;
    }

    .score{
        font-size:34px;
    }

}




/* =========================
   CONTENT SECTIONS
========================= */

.section{
    background:#ffffff;

    max-width:1000px;

    margin:0 auto 24px;

    padding:34px 38px;

    border-radius:24px;

    border:1px solid #eef1f5;

    box-shadow:0 4px 18px rgba(0,0,0,0.03);
}

/* =========================
   SECTION HEADINGS
========================= */

.section h2{
    font-size:28px;

    font-weight:800;

    line-height:1.3;

    letter-spacing:-0.4px;

    color:#071b3b;

    margin-bottom:18px;
}

/* =========================
   PARAGRAPHS
========================= */

.section p{
    font-size:17px;

    line-height:1.85;

    color:#334155;

    margin-bottom:18px;
}

/* =========================
   HIGHLIGHT BOX
========================= */

.highlight{
    background:#fff8e7;

    padding:20px 22px;

    border-left:5px solid #f5b12f;

    border-radius:16px;

    margin:24px 0 14px;

    font-size:16px;

    line-height:1.8;

    color:#334155;
}

/* =========================
   QUOTE BOX
========================= */

.quote-box{
    background:#f9fafb;

    padding:22px;

    border-radius:16px;

    margin:22px 0;

    font-style:italic;

    font-size:16px;

    line-height:1.8;

    color:#475569;

    border:1px solid #eef2f6;
}

/* =========================
   TABLES
========================= */

.table{
    width:100%;

    border-collapse:collapse;

    margin-top:18px;

    overflow:hidden;

    border-radius:14px;
}

.table th,
.table td{
    border:1px solid #e5e7eb;

    padding:14px 12px;

    text-align:left;

    vertical-align:top;

    font-size:15px;

    line-height:1.7;
}

.table th{
    background:#f8fafc;

    font-weight:700;

    color:#071b3b;
}

.table td{
    color:#334155;
}

/* =========================
   IMAGES
========================= */

.section-image,
.pricing-image{
    width:100%;

    max-width:900px;

    height:auto;

    border-radius:20px;

    margin:20px auto 22px;

    display:block;

    box-shadow:0 8px 22px rgba(0,0,0,0.05);
}

/* =========================
   LISTS
========================= */

.section ul{
    padding-left:22px;

    margin:0 0 18px;
}

.section li{
    margin-bottom:10px;

    font-size:17px;

    line-height:1.8;

    color:#334155;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .section{
        padding:24px 20px;

        margin-bottom:18px;

        border-radius:20px;
    }

    .section h2{
        font-size:24px;

        line-height:1.35;

        margin-bottom:16px;
    }

    .section p{
        font-size:16px;

        line-height:1.8;

        margin-bottom:16px;
    }

    .highlight{
        padding:18px;

        font-size:15px;
    }

    .quote-box{
        padding:18px;

        font-size:15px;
    }

    .table th,
    .table td{
        padding:10px;

        font-size:14px;
    }

    .section li{
        font-size:16px;
    }

    .section-image,
    .pricing-image{
        border-radius:18px;

        margin:18px auto 20px;
    }

}






/* =========================
   FOOTER COLOR FIX
========================= */

.site-footer,
.site-footer p,
.site-footer a,
.site-footer span,
.site-footer strong,
.site-footer .footer-copy,
.site-footer .support-links,
.site-footer .footer-disclaimer p,
.site-footer .vendor-support p{
    color:#ffffff !important;
}

/* LIGHTER PARAGRAPH TEXT */

.site-footer .footer-disclaimer p,
.site-footer .support-links{
    color:#d8d8d8 !important;
}

/* BLUE SUPPORT LINKS */

.site-footer .vendor-support a{
    color:#4db8ff !important;
}





/* =========================
   FINAL MOBILE FOOTER WIDTH FIX
========================= */

@media(max-width:768px){

    .site-footer{
        width:100% !important;

        max-width:100% !important;

        margin:40px 0 0 !important;

        padding:28px 22px 34px !important;

        box-sizing:border-box;
    }

    .footer-disclaimer{
        width:100% !important;

        max-width:100% !important;

        margin:0 !important;

        padding:0 !important;
    }

    .footer-disclaimer p{
        width:100% !important;

        max-width:100% !important;

        font-size:12px !important;

        line-height:1.9 !important;

        text-align:left !important;

        word-break:normal !important;

        overflow-wrap:normal !important;

        white-space:normal !important;
    }

    .vendor-support,
    .support-links{
        width:100% !important;

        text-align:left !important;
    }

    .footer-links{
        width:100% !important;

        text-align:center !important;

        line-height:2 !important;
    }

    .footer-links a{
        display:inline-block;

        margin:0 4px 6px;

        font-size:11px !important;
    }

    .footer-links span{
        display:none !important;
    }

    .footer-copy{
        font-size:12px !important;

        line-height:1.5 !important;

        text-align:center !important;
    }
}

/* =========================
   ANCHOR LINK OFFSET
========================= */

#ingredients,
#pricing,
#faq{
    scroll-margin-top:120px;
}

/* ===== QUICK VERDICT ===== */

.quick-verdict{
text-align:center;
}

.rating-label{
font-size:13px;
color:#64748b;
text-transform:uppercase;
letter-spacing:1px;
font-weight:600;
margin-bottom:10px;
}

.quick-rating{
display:inline-block;
background:#fff7e0;
padding:12px 26px;
border-radius:999px;
font-size:22px;
font-weight:700;
margin-bottom:25px;
box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.quick-summary{
max-width:850px;
margin:0 auto 25px;
font-size:18px;
line-height:1.8;
}

.highlight{
max-width:900px;
margin:0 auto 30px;
padding:18px 22px;
background:#fff8e8;
border-left:4px solid #f59e0b;
border-radius:12px;
text-align:center;
}

.verdict-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:24px;
margin-top:30px;
}

.verdict-card{
background:#ffffff;
border-radius:18px;
padding:28px;
text-align:left;
box-shadow:0 2px 12px rgba(0,0,0,.05);
}

.pros-card{
border-left:5px solid #16a34a;
}

.cons-card{
border-left:5px solid #dc2626;
}

.bestfor-card{
margin-top:24px;
border-left:5px solid #2563eb;
}

.verdict-card h3{
margin-top:0;
margin-bottom:18px;
font-size:1.4rem;
}

.verdict-card ul{
margin:0;
padding-left:20px;
}

.verdict-card li{
margin-bottom:12px;
line-height:1.7;
}

.quick-cta{
margin-top:35px;
}

.quick-cta .cta-btn{
display:inline-block;
padding:16px 34px;
font-size:18px;
font-weight:700;
}

.trust-signals{
margin-top:18px;
font-size:14px;
color:#64748b;
font-weight:600;
text-align:center;
}

.trust-signals span{
margin:0 8px;
}

@media (max-width:768px){
.quick-rating{
    font-size:18px;
    padding:10px 20px;
}

.quick-summary{
    font-size:16px;
}

.verdict-grid{
    grid-template-columns:1fr;
}

.verdict-card{
    padding:22px;
}

.quick-cta .cta-btn{
    width:100%;
    max-width:320px;
}

.trust-signals{
    line-height:2;
}
}
