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

body{
    font-family:'Poppins', 'Segoe UI', Arial, sans-serif;
    background:#F8FAFC;
}

/* Navigation */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#0F172A;
}

.logo{
    color:#10B981;
    font-size:30px;
    font-weight:bold;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:30px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.nav-links a:hover{
    color:#10B981;
}

/* Hero Section */
.hero{
    text-align:center;
    padding:100px 20px;
}

.hero h1{
    font-size:55px;
    color:#0F172A;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    color:#555;
    max-width:800px;
    margin:auto;
    margin-bottom:40px;
}

/* Button */
.btn{
    display:inline-block;
    background:#10B981;
    color:white;
    text-decoration:none;
    padding:15px 35px;
    border-radius:8px;
    font-size:18px;
    transition:.3s;
}

.btn:hover{
    background:#059669;
}
/* Why Choose Relnova */

.why-choose{
    padding:80px 8%;
    background:#F8FAFC;
}

.why-choose h2{
    text-align:center;
    font-size:40px;
    color:#0F172A;
    margin-bottom:50px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.feature-card{
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card h3{
    color:#10B981;
    margin-bottom:15px;
}

.feature-card p{
    color:#555;
    font-size:16px;
    line-height:1.6;
}
/* ===========================
   OUR SERVICES
=========================== */

.services{
    padding:80px 8%;
    background:#ffffff;
}

.services h2{
    text-align:center;
    font-size:40px;
    color:#0F172A;
    margin-bottom:50px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service-card{
    background:#F8FAFC;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card h3{
    color:#10B981;
    margin-bottom:15px;
    font-size:22px;
}

.service-card p{
    color:#555;
    line-height:1.7;
    font-size:16px;
}
/* ==========================
   HOW IT WORKS
========================== */

.how-it-works{
    padding:80px 8%;
    background:#F8FAFC;
}

.how-it-works h2{
    text-align:center;
    font-size:40px;
    color:#0F172A;
    margin-bottom:50px;
}

.steps{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:25px;
}

.step-card{
    background:#ffffff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:0.3s;
}

.step-card:hover{
    transform:translateY(-8px);
}

.step-number{
    width:60px;
    height:60px;
    margin:0 auto 20px;
    background:#10B981;
    color:#ffffff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:bold;
}

.step-card h3{
    color:#0F172A;
    margin-bottom:15px;
}

.step-card p{
    color:#555;
    line-height:1.7;
}
/* ==========================
   PRICING
========================== */

.pricing{
    padding:80px 8%;
    background:#ffffff;
}

.pricing h2{
    text-align:center;
    font-size:40px;
    color:#0F172A;
    margin-bottom:50px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.price-card{
    background:#F8FAFC;
    border-radius:15px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    position:relative;
}

.price-card:hover{
    transform:translateY(-10px);
}

.featured{
    border:3px solid #10B981;
}

.badge{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#10B981;
    color:#fff;
    padding:8px 20px;
    border-radius:20px;
    font-size:14px;
    font-weight:bold;
}

.price{
    font-size:42px;
    color:#10B981;
    margin:20px 0;
    font-weight:bold;
}

.price span{
    font-size:16px;
    color:#555;
}

.price-card ul{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.price-card ul li{
    margin:12px 0;
    color:#555;
}
/* ==========================
   TESTIMONIALS
========================== */

.testimonials{
    padding:80px 8%;
    background:#F8FAFC;
}

.testimonials h2{
    text-align:center;
    font-size:40px;
    color:#0F172A;
    margin-bottom:50px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.testimonial-card{
    background:#ffffff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:0.3s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card p{
    font-size:16px;
    color:#555;
    line-height:1.8;
    font-style:italic;
}

.testimonial-card h4{
    margin-top:20px;
    color:#10B981;
    font-size:18px;
}
/* ==========================
   FAQ
========================== */

.faq{
    padding:80px 8%;
    background:#ffffff;
}

.faq h2{
    text-align:center;
    font-size:40px;
    color:#0F172A;
    margin-bottom:50px;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#F8FAFC;
    margin-bottom:20px;
    padding:25px;
    border-left:5px solid #10B981;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.faq-item h3{
    color:#0F172A;
    margin-bottom:10px;
    font-size:22px;
}

.faq-item p{
    color:#555;
    line-height:1.7;
}
/* ================= CONTACT SECTION ================= */

.contact-section{
    padding:100px 8%;
    background:#f7f9fc;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#0A2540;
    margin-bottom:15px;
}

.section-title span{
    color:#16A34A;
}

.section-title p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.7;
}

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

/* LEFT */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.info-card{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    padding:22px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.3s;
}

.info-card:hover{
    transform:translateY(-8px);
}

.icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#16A34A;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
}

.info-card h3{
    color:#0A2540;
    margin-bottom:5px;
}

.info-card p{
    color:#666;
}

/* RIGHT */

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.input-box{
    margin-bottom:20px;
}

.input-box input,
.input-box textarea,
.input-box select{

    width:100%;
    padding:16px 18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
    outline:none;
    transition:.3s;
    font-family:inherit;
}

.input-box input:focus,
.input-box textarea:focus,
.input-box select:focus{

    border-color:#16A34A;
    box-shadow:0 0 10px rgba(22,163,74,.2);
}

.contact-btn{

    width:100%;
    padding:18px;
    border:none;
    border-radius:12px;
    background:#16A34A;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-btn:hover{

    background:#0A2540;
    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:991px){

.contact-container{

grid-template-columns:1fr;

}

.contact-form{

margin-top:20px;

}

.section-title h2{

font-size:34px;

}

}

@media(max-width:600px){

.contact-section{

padding:70px 6%;

}

.contact-form{

padding:25px;

}

.section-title h2{

font-size:30px;

}

}
/* ==========================
   FOOTER
========================== */

.footer{
    background:#0F172A;
    color:#ffffff;
    padding:60px 8% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    margin-bottom:40px;
}

.footer h3{
    color:#10B981;
    margin-bottom:20px;
}

.footer p{
    color:#CBD5E1;
    line-height:1.8;
}

.footer-links ul{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#CBD5E1;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#10B981;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:20px;
    text-align:center;
}

.footer-bottom p{
    color:#94A3B8;
}
/* ==========================
   WHATSAPP BUTTON
========================== */

.whatsapp-btn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 10px 20px rgba(0,0,0,.25);
    transition:.3s;
    z-index:1000;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
    background:#1EBE5D;
}

/* ==========================
   ABOUT HERO
========================== */

.about-hero{
    min-height:70vh;
    background:
        linear-gradient(rgba(15,23,42,.85), rgba(15,23,42,.85)),
        url("../images/about.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
}

.about-content{
    max-width:800px;
    margin:auto;
}

.about-hero .about-content h1{
    font-size:60px;
    color:#ffffff;
    margin-bottom:20px;
}

.about-hero .about-content p{
    color:#E2E8F0;
    font-size:20px;
    line-height:1.8;
}
/* ==========================
   OUR STORY
========================== */

.our-story{
    padding:80px 8%;
    background:#ffffff;
}

.story-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.story-text h2{
    font-size:42px;
    color:#0F172A;
    margin-bottom:20px;
}

.story-text p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
    font-size:17px;
}

.story-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}
/* ==========================
   MISSION & VISION
========================== */

.mission-vision{
    padding:80px 8%;
    background:#F8FAFC;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.mission-card,
.vision-card{
    background:#ffffff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.mission-card:hover,
.vision-card:hover{
    transform:translateY(-8px);
}

.mission-card h2,
.vision-card h2{
    color:#10B981;
    margin-bottom:20px;
    font-size:32px;
}

.mission-card p,
.vision-card p{
    color:#555;
    line-height:1.8;
    font-size:17px;
}
/* ==========================
   ABOUT - WHY CHOOSE
========================== */

.about-why{
    padding:80px 8%;
    background:#ffffff;
}

.about-why h2{
    text-align:center;
    font-size:42px;
    color:#0F172A;
    margin-bottom:50px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.about-card{
    background:#F8FAFC;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.about-card:hover{
    transform:translateY(-8px);
}

.about-card h3{
    color:#10B981;
    margin-bottom:15px;
    font-size:22px;
}

.about-card p{
    color:#555;
    line-height:1.7;
}
/* ==========================
   CORE VALUES
========================== */

.core-values{
    padding:80px 8%;
    background:#F8FAFC;
}

.core-values h2{
    text-align:center;
    font-size:42px;
    color:#0F172A;
    margin-bottom:50px;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.value-card{
    background:#ffffff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-card h3{
    color:#10B981;
    margin-bottom:15px;
}

.value-card p{
    color:#555;
    line-height:1.7;
}
/* ==========================
   ABOUT CTA
========================== */

.about-cta{
    background:#10B981;
    color:#ffffff;
    text-align:center;
    padding:80px 8%;
}

.about-cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.about-cta p{
    font-size:18px;
    max-width:700px;
    margin:0 auto 35px;
    line-height:1.8;
}

.about-cta .btn{
    display:inline-block;
    padding:15px 35px;
    background:#ffffff;
    color:#10B981;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.about-cta .btn:hover{
    background:#0F172A;
    color:#ffffff;
}
/* ==========================
   SERVICES HERO
========================== */

.services-hero{

min-height:70vh;

background:linear-gradient(rgba(15,23,42,.85),rgba(15,23,42,.85)),
url("../images/services.png");

background-size:cover;

background-position:center;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:40px;

}

.services-content{

max-width:800px;

}

.services-content h1{

font-size:60px;

color:white;

margin-bottom:20px;

}

.services-content p{

font-size:20px;

color:#E2E8F0;

line-height:1.8;

}
/* ==========================
   SERVICES LIST
========================== */

.services-list{
    padding:80px 8%;
    background:#F8FAFC;
}

.services-list h2{
    text-align:center;
    font-size:42px;
    color:#0F172A;
    margin-bottom:50px;
}

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

.service-box{
    background:#ffffff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.service-box:hover{
    transform:translateY(-10px);
}

.service-box h3{
    color:#10B981;
    margin-bottom:18px;
    font-size:24px;
}

.service-box p{
    color:#555;
    line-height:1.8;
    font-size:16px;
}
/* ==========================
   SERVICE BENEFITS
========================== */

.service-benefits{
    padding:80px 8%;
    background:#ffffff;
}

.service-benefits h2{
    text-align:center;
    font-size:42px;
    color:#0F172A;
    margin-bottom:50px;
}

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

.benefit-card{
    background:#F8FAFC;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

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

.benefit-card h3{
    color:#10B981;
    margin-bottom:15px;
}

.benefit-card p{
    color:#555;
    line-height:1.7;
}
/* ==========================
   SERVICES CTA
========================== */

.services-cta{
    background:#10B981;
    color:#ffffff;
    text-align:center;
    padding:80px 8%;
}

.services-cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.services-cta p{
    max-width:700px;
    margin:0 auto 35px;
    font-size:18px;
    line-height:1.8;
}

.services-cta .btn{
    display:inline-block;
    padding:15px 35px;
    background:#ffffff;
    color:#10B981;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.services-cta .btn:hover{
    background:#0F172A;
    color:#ffffff;
}
/* ==========================
   PRICING HERO
========================== */

.pricing-hero{

    min-height:70vh;

    background:linear-gradient(rgba(15,23,42,.85),rgba(15,23,42,.85)),
    url("../images/pricing.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:40px;

}

.pricing-content{

    max-width:800px;

}

.pricing-content h1{

    font-size:60px;

    color:white;

    margin-bottom:20px;

}

.pricing-content p{

    font-size:20px;

    color:#E2E8F0;

    line-height:1.8;

}
/* ==========================
   PRICING CARDS
========================== */

.pricing-section{
    padding:80px 8%;
    background:#F8FAFC;
}

.pricing-section h2{
    text-align:center;
    font-size:42px;
    color:#0F172A;
    margin-bottom:50px;
}

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

.price-card{
    background:#ffffff;
    padding:40px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    position:relative;
    transition:.3s;
}

.price-card:hover{
    transform:translateY(-10px);
}

.price-card h3{
    font-size:28px;
    color:#0F172A;
    margin-bottom:20px;
}

.price{
    font-size:48px;
    color:#10B981;
    font-weight:700;
    margin-bottom:25px;
}

.price-card ul{
    list-style:none;
    padding:0;
    margin-bottom:30px;
}

.price-card ul li{
    padding:10px 0;
    color:#555;
}

.popular{
    border:3px solid #10B981;
}

.badge{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#10B981;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}
/* ==========================
   COMPARISON TABLE
========================== */

.comparison{
    padding:80px 8%;
    background:#ffffff;
}

.comparison h2{
    text-align:center;
    font-size:42px;
    color:#0F172A;
    margin-bottom:40px;
}

.comparison table{
    width:100%;
    border-collapse:collapse;
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.comparison th{
    background:#10B981;
    color:#ffffff;
    padding:18px;
}

.comparison td{
    padding:18px;
    text-align:center;
    border-bottom:1px solid #eee;
}

.comparison tr:nth-child(even){
    background:#F8FAFC;
}
/* ==========================
   PRICING FAQ
========================== */

.pricing-faq{
    padding:80px 8%;
    background:#ffffff;
}

.pricing-faq h2{
    text-align:center;
    font-size:42px;
    color:#0F172A;
    margin-bottom:50px;
}

.faq-item{
    background:#F8FAFC;
    padding:25px;
    border-radius:12px;
    margin-bottom:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.faq-item h3{
    color:#10B981;
    margin-bottom:10px;
}

.faq-item p{
    color:#555;
    line-height:1.7;
}
/* ==========================
   FOOTER
========================== */

/* ==========================
   FOOTER
========================== */

.footer {
    background: #0F172A;
    color: #FFFFFF;
    padding: 60px 8% 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Footer headings */

.footer-column h3 {
    color: #10B981;
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Footer text */

.footer-column p {
    color: #CBD5E1;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Footer links */

.footer-column a {
    display: block;
    color: #CBD5E1;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 5px;
}

.footer-column a:hover {
    color: #10B981;
}

/* WhatsApp */

.footer-column .footer-whatsapp {
    display: inline-block;
    color: #10B981;
    margin-top: 5px;
}

/* Bottom footer */

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}

.footer-bottom p {
    color: #94A3B8;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 13px;
}

.footer-bottom-links a:hover {
    color: #10B981;
}


/* ==========================
   FOOTER RESPONSIVE
========================== */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .footer {
        padding: 45px 20px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 8px;
    }

}
/* ==========================
   FAQ HERO
========================== */

.faq-hero{

    min-height:70vh;

    background:linear-gradient(rgba(15,23,42,.85),rgba(15,23,42,.85)),
    url("../images/faq.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:40px;

}

.faq-content{

    max-width:800px;

}

.faq-content h1{

    font-size:60px;

    color:#ffffff;

    margin-bottom:20px;

}

.faq-content p{

    color:#E2E8F0;

    font-size:20px;

    line-height:1.8;

}
/* ==========================
   FAQ SECTION
========================== */

.faq-section{
    padding:80px 8%;
    background:#F8FAFC;
}

.faq-section h2{
    text-align:center;
    font-size:42px;
    color:#0F172A;
    margin-bottom:50px;
}

.faq-card{
    background:#ffffff;
    padding:25px 30px;
    border-radius:12px;
    margin-bottom:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

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

.faq-card h3{
    color:#10B981;
    margin-bottom:12px;
    font-size:22px;
}

.faq-card p{
    color:#555;
    line-height:1.8;
    font-size:16px;
}
/* ==========================
   FAQ CTA
========================== */

.faq-cta{
    background:#10B981;
    color:#ffffff;
    text-align:center;
    padding:80px 8%;
}

.faq-cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.faq-cta p{
    max-width:700px;
    margin:0 auto 30px;
    font-size:18px;
    line-height:1.8;
}

.faq-cta .btn{
    display:inline-block;
    padding:15px 35px;
    background:#ffffff;
    color:#10B981;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.faq-cta .btn:hover{
    background:#0F172A;
    color:#ffffff;
}
/* ==========================
   CONTACT HERO
========================== */

/* ==========================
   CONTACT HERO
========================== */

.contact-hero {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 8%;

    background:
        linear-gradient(
            rgba(15, 23, 42, 0.82),
            rgba(15, 23, 42, 0.82)
        ),
        url("../images/contact.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h1 {
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-content p {
    color: #E2E8F0;
    font-size: 20px;
    line-height: 1.8;
}


/* ==========================
   CONTACT SECTION
========================== */

.contact-section {
    padding: 80px 8%;
    background: #F8FAFC;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.9fr;

    gap: 30px;
    align-items: start;
}


/* ==========================
   CONTACT FORM
========================== */

.contact-form {
    background: #ffffff;
    padding: 35px;

    border-radius: 18px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    color: #0F172A;
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-form > p {
    color: #64748B;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}


/* Form Fields */

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    padding: 14px 16px;

    margin-bottom: 16px;

    border: 1px solid #D1D5DB;

    border-radius: 10px;

    font-size: 15px;

    font-family: 'Poppins', sans-serif;

    background: #ffffff;

    color: #0F172A;

    box-sizing: border-box;

    transition: 0.3s;
}


/* Select */

.contact-form select {
    cursor: pointer;
}


/* Focus */

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;

    border-color: #10B981;

    box-shadow:
        0 0 0 4px rgba(16, 185, 129, 0.12);
}


/* Textarea */

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}


/* Button */

.contact-form .btn {
    width: 100%;

    border: none;

    cursor: pointer;

    padding: 14px 25px;

    background: #10B981;

    color: #ffffff;

    border-radius: 10px;

    font-size: 16px;

    font-family: 'Poppins', sans-serif;

    font-weight: 600;

    transition: 0.3s;
}

.contact-form .btn:hover {
    background: #0F172A;
    transform: translateY(-2px);
}


/* ==========================
   CONTACT IMAGE
========================== */

.contact-image {
    display: flex;

    justify-content: center;

    align-items: center;

    height: 100%;
}

.contact-image img {
    width: 100%;

    max-width: 450px;

    height: auto;

    display: block;

    border-radius: 20px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15);
}


/* ==========================
   CONTACT INFORMATION
========================== */

.contact-info {
    background: #ffffff;

    padding: 35px;

    border-radius: 18px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
    color: #0F172A;

    font-size: 28px;

    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 20px;

    color: #555555;

    line-height: 1.8;

    font-size: 15px;
}

.contact-info strong {
    color: #10B981;
}


/* WhatsApp / Contact Button */

.contact-info .btn {
    display: inline-block;

    margin-top: 10px;

    padding: 13px 22px;

    background: #10B981;

    color: #ffffff;

    text-decoration: none;

    border-radius: 8px;

    font-weight: 600;

    transition: 0.3s;
}

.contact-info .btn:hover {
    background: #0F172A;
}


/* ==========================
   GOOGLE MAP
========================== */

.map-section {
    padding: 80px 8%;

    background: #ffffff;
}

.map-section h2 {
    text-align: center;

    color: #0F172A;

    font-size: 40px;

    margin-bottom: 35px;
}

.map-section iframe {
    display: block;

    width: 100%;

    max-width: 1200px;

    height: 450px;

    margin: 0 auto;

    border: none;

    border-radius: 18px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.08);
}


/* ==========================
   CONTACT RESPONSIVE
========================== */

@media (max-width: 1100px) {

    .contact-container {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form {
        grid-column: 1 / -1;
    }

    .contact-image {
        grid-column: 1;
    }

    .contact-info {
        grid-column: 2;
    }

}


@media (max-width: 768px) {

    .contact-hero {
        min-height: 55vh;

        padding: 50px 20px;
    }

    .contact-content h1 {
        font-size: 38px;
    }

    .contact-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .contact-section,
    .map-section {
        padding: 55px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .contact-form {
        grid-column: auto;
    }

    .contact-image {
        grid-column: auto;

        order: 2;
    }

    .contact-info {
        grid-column: auto;

        order: 3;
    }

    .contact-form {
        order: 1;

        padding: 25px;
    }

    .contact-info {
        padding: 25px;
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 24px;
    }

    .map-section h2 {
        font-size: 30px;
    }

    .map-section iframe {
        height: 350px;
    }

}


/* ==========================
   FLOATING WHATSAPP BUTTON
========================== */

.whatsapp-btn {
    position: fixed;

    bottom: 25px;

    right: 25px;

    width: 65px;

    height: 65px;

    background: #25D366;

    color: #ffffff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    text-decoration: none;

    font-size: 32px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.25);

    z-index: 9999;

    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);

    background: #20BA5A;
}
/* ==========================
   PRICING CTA
========================== */

.pricing-cta{
    background:#10B981;
    color:#ffffff;
    text-align:center;
    padding:80px 8%;
}

.pricing-cta h2{
    font-size:42px;
    margin-bottom:20px;
    color:#ffffff;
}

.pricing-cta p{
    max-width:700px;
    margin:0 auto 30px;
    color:#ffffff;
    font-size:18px;
    line-height:1.8;
}

.pricing-cta .btn{
    display:inline-block;
    background:#ffffff;
    color:#10B981;
    padding:15px 35px;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
}

.pricing-cta .btn:hover{
    background:#0F172A;
    color:#ffffff;
}
/* ==========================
   WhatsApp Floating Button
========================== */

.whatsapp-float{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    z-index: 9999;
    transition: .3s;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform: scale(1.12);
    box-shadow: 0 15px 35px rgba(0,0,0,.35);
}

.whatsapp-float img{
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
}

@keyframes whatsappPulse{
    0%{
        transform: scale(1);
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        transform: scale(1.05);
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        transform: scale(1);
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

/* Mobile */

@media(max-width:768px){

    .whatsapp-float{
        width:58px;
        height:58px;
        right:18px;
        bottom:18px;
    }

    .whatsapp-float img{
        width:30px;
        height:30px;
    }

}
.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    z-index:9999;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
}

.whatsapp-float img{
    width:28px;
    height:28px;
    filter:brightness(0) invert(1);
}

.whatsapp-float:hover{
    transform:scale(1.05);
}

@media(max-width:768px){
    .whatsapp-float span{
        display:none;
    }

    .whatsapp-float{
        width:60px;
        height:60px;
        justify-content:center;
        padding:0;
        border-radius:50%;
    }
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */

/* Tablet */
@media (max-width: 992px) {

    .container,
    .hero-container,
    .about-container,
    .contact-container,
    .footer-container {
        width: 90%;
        margin: auto;
    }

    .hero-container,
    .about-container,
    .contact-container,
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-content,
    .hero-image,
    .about-content,
    .about-image,
    .contact-info,
    .contact-form {
        width: 100%;
    }

    .pricing-cards,
    .service-cards,
    .faq-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-container {
        gap: 35px;
    }

}

/* Mobile */
@media (max-width: 768px) {

    h1{
        font-size: 2rem;
    }

    h2{
        font-size: 1.7rem;
    }

    h3{
        font-size: 1.3rem;
    }

    p{
        font-size:15px;
        line-height:1.7;
    }

    .navbar{
        padding:15px 20px;
        flex-wrap:wrap;
    }

    .nav-links{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:12px;
        margin-top:15px;
    }

    .nav-links li{
        list-style:none;
    }

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

    section{
        padding:70px 20px;
    }

    img{
        max-width:100%;
        height:auto;
    }

}

/* Small Mobile */

@media (max-width:480px){

    h1{
        font-size:1.7rem;
    }

    h2{
        font-size:1.4rem;
    }

    p{
        font-size:14px;
    }

    .logo{
        font-size:24px;
    }

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

    .footer-links ul{
        padding:0;
    }

    .footer-links li{
        list-style:none;
        margin-bottom:10px;
    }

        .whatsapp-float{
        right:15px;
        bottom:15px;
        width:58px;
        height:58px;
    }

}/* =========================================
   RELNOVA FREE ASSESSMENT POPUP
   ========================================= */

.assessment-popup {
    display: none;
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
    border: 1px solid #e5e7eb;
    z-index: 9999;
}

.assessment-popup-content {
    text-align: center;
}

.assessment-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #16a34a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.assessment-popup h3 {
    margin: 0 0 10px;
    font-size: 21px;
    color: #0b2a4a;
}

.assessment-popup p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
}

.assessment-start-btn {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    background: #0b5ed7;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.assessment-start-btn:hover {
    opacity: 0.9;
}

.assessment-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    color: #666666;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

/* Mobile */
@media (max-width: 600px) {

    .assessment-popup {
        left: 12px;
        right: 12px;
        bottom: 15px;
        top: auto;
        transform: none;
        width: auto;
        padding: 20px;
    }

}/* =========================================
   RELNOVA ASSESSMENT FORM
   ========================================= */

.assessment-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.55);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.assessment-form-container {
    position: relative;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.assessment-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: none;
    background: transparent;
    color: #555;
    font-size: 30px;
    cursor: pointer;
}

.assessment-form-container h2 {
    margin: 0 0 8px;
    color: #0b2a4a;
    font-size: 28px;
}

.assessment-subtitle {
    margin-bottom: 24px;
    color: #666;
    line-height: 1.5;
}

.assessment-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.assessment-field {
    display: flex;
    flex-direction: column;
}

.assessment-field label {
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.assessment-field input,
.assessment-field select,
.assessment-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 13px;
    border: 1px solid #d6dbe1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.assessment-field input:focus,
.assessment-field select:focus,
.assessment-field textarea:focus {
    border-color: #0b5ed7;
}

.assessment-field textarea {
    resize: vertical;
}

.assessment-full-width {
    grid-column: 1 / -1;
}

.assessment-submit-btn {
    width: 100%;
    margin-top: 22px;
    padding: 14px 20px;
    border: none;
    border-radius: 9px;
    background: #0b5ed7;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.assessment-submit-btn:hover {
    opacity: 0.9;
}

.assessment-message {
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 600px) {

    .assessment-modal {
        padding: 10px;
    }

    .assessment-form-container {
        max-height: 95vh;
        padding: 24px 18px;
        border-radius: 14px;
    }

    .assessment-form-grid {
        grid-template-columns: 1fr;
    }

    .assessment-full-width {
        grid-column: auto;
    }

    .assessment-form-container h2 {
        font-size: 23px;
    }
}
/* ==========================
   SERVICE SUBPAGE DETAIL
   (additive — existing styles untouched)
========================== */

.service-box-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.service-box-link:hover {
    color: inherit;
}

.service-detail {
    padding: 80px 8%;
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail h2 {
    color: #0F172A;
    font-size: 36px;
    margin: 40px 0 20px;
}

.service-detail > h2:first-child {
    margin-top: 0;
}

.service-detail p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 10px;
}

.service-detail-card {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.service-detail-card h3 {
    color: #10B981;
    margin-bottom: 12px;
    font-size: 19px;
}

.service-detail-card p {
    font-size: 15px;
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.service-detail-list li {
    background: #F8FAFC;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.6;
}

.service-detail-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap:  20px;
    margin-top: 10px;
}

.service-detail-step {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 22px;
    text-align: center;
}

.service-detail-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #10B981;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-detail-step p {
    font-size: 15px;
}

.service-detail-disclaimer {
    background: #F8FAFC;
    border-left: 4px solid #10B981;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 30px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* =========================================
   RELNOVA DESIGN FOUNDATION — STEP 2
   Page-specific rules above remain in place. These utilities are
   ready for incremental adoption; no navigation or modal restructuring.
========================================= */

:root {
    --navy-950: #0b1828;
    --navy-900: #12263a;
    --navy-800: #1d354c;
    --navy-700: #304c65;
    --green-700: #146044;
    --green-600: #19734f;
    --green-500: #23865f;
    --green-100: #e7f2ec;
    --surface: #ffffff;
    --surface-soft: #f7f9f8;
    --surface-muted: #edf2f0;
    --text-primary: var(--navy-950);
    --text-secondary: #46576a;
    --text-muted: #617080;
    --border: #dfe6e3;
    --border-strong: #b4c2bb;
    --shadow-sm: 0 2px 6px rgba(11, 24, 40, 0.04);
    --shadow-md: 0 8px 24px rgba(11, 24, 40, 0.07);
    --shadow-lg: 0 16px 40px rgba(11, 24, 40, 0.1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --container-width: 1240px;
    --font-body: 'Poppins', 'Segoe UI', Arial, sans-serif;
    --page-gutter: 32px;
    --section-space: 80px;
    --card-space: 28px;
    --transition-ui: 160ms ease;
}

body {
    font-family: var(--font-body);
    font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--surface-soft);
}

button, input, select, textarea {
    font-family: var(--font-body);
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.25;
    overflow-wrap: break-word;
    margin-bottom: 0.65em;
}

/* Existing, more specific page heading sizes retain precedence. */
h1 { font-size: clamp(2rem, 1.25rem + 3vw, 4rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.75rem, 1.2rem + 2vw, 2.875rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem); letter-spacing: -0.015em; }
h4 { font-size: clamp(1.0625rem, 1rem + 0.25vw, 1.25rem); }
p { font-size: 1em; line-height: 1.75; overflow-wrap: break-word; }
small { font-size: 0.875em; line-height: 1.6; }

.container {
    width: calc(100% - var(--page-gutter) * 2);
    max-width: var(--container-width);
    margin-inline: auto;
    min-width: 0;
}

.section { padding-block: var(--section-space); }
.section-soft { background: var(--surface-soft); }
.section-dark { background: var(--navy-950); color: var(--surface); }
.section-header { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.section-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--green-700);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* .section-title already wraps Home's contact heading: scope new
   heading treatment by element to preserve that existing wrapper. */
h1.section-title, h2.section-title, h3.section-title {
    margin: 0 0 16px;
    color: inherit;
}
.section-description {
    max-width: 65ch;
    margin-inline: auto;
    color: var(--text-secondary);
    font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
}
.section-dark .section-description { color: #c5d2dd; }
.section-dark .section-eyebrow { color: #99d4b8; }

/* Low-specificity defaults leave contextual CTA treatments intact. */
.btn, .btn-primary, .btn-secondary, .btn-outline, .btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    max-width: 100%;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    background: var(--green-600);
    color: var(--surface);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    overflow-wrap: anywhere;
    cursor: pointer;
    transition: background-color var(--transition-ui), color var(--transition-ui),
        border-color var(--transition-ui), box-shadow var(--transition-ui);
}
.btn:hover, .btn-primary:hover { background: var(--green-700); }
.btn-secondary, .btn-outline {
    background: var(--surface);
    border-color: var(--border-strong);
    color: var(--navy-900);
}
.btn-secondary:hover, .btn-outline:hover {
    background: var(--surface-muted);
    border-color: var(--navy-700);
    color: var(--navy-950);
}
.btn-dark { background: var(--navy-900); color: var(--surface); }
.btn-dark:hover { background: var(--navy-950); }
:is(.btn, .btn-primary, .btn-secondary, .btn-outline, .btn-dark):is(:disabled, [aria-disabled="true"]) {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
/* aria-disabled is visual only; future link users must also prevent activation. */

.card, .service-card, .feature-card, .support-card {
    min-width: 0;
    padding: var(--card-space);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    overflow-wrap: break-word;
    transition: border-color var(--transition-ui), box-shadow var(--transition-ui);
}
.card:hover, .service-card:hover, .feature-card:hover, .support-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
    transform: none;
}

/* Dual-color ring remains visible against light and dark surfaces.
   Important is intentional: legacy field rules explicitly remove outlines. */
:focus-visible {
    outline: 3px solid var(--navy-700) !important;
    outline-offset: 3px;
    box-shadow: 0 0 0 3px var(--surface) !important;
}

@media (max-width: 1200px) {
    :root { --section-space: 72px; }
}
@media (max-width: 1024px) {
    :root { --page-gutter: 28px; --section-space: 64px; --card-space: 24px; }
}
@media (max-width: 768px) {
    :root { --page-gutter: 20px; --section-space: 52px; }
    .section-header { margin-bottom: 28px; }
}
@media (max-width: 480px) {
    :root { --page-gutter: 16px; --section-space: 44px; --card-space: 20px; }
    .btn-primary, .btn-secondary, .btn-outline, .btn-dark { padding-inline: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================
   STEP 3 ? SHARED HEADER, FOOTER AND NAVIGATION
   Dedicated selectors isolate this shell from legacy page layouts.
========================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 80px;
    max-width: var(--container-width);
    width: calc(100% - var(--page-gutter) * 2);
    margin-inline: auto;
}
.site-brand {
    color: var(--navy-950);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.25;
    text-decoration: none;
    flex-shrink: 0;
}
.site-navigation { display: flex; align-items: center; gap: 28px; min-width: 0; }
.site-nav-links { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; }
.site-nav-links a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 48px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}
.site-nav-links a:hover { color: var(--green-700); }
.site-nav-links a.active { color: var(--navy-950); font-weight: 600; }
.site-nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 2px;
    background: var(--green-600);
}
.site-assessment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid var(--green-600);
    border-radius: var(--radius-md);
    background: var(--green-600);
    color: var(--surface);
    font: 600 0.875rem/1.5 var(--font-body);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color var(--transition-ui);
}
.site-assessment:hover { background: var(--green-700); }
.site-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--navy-900);
    cursor: pointer;
}
.site-menu-toggle:hover { background: var(--surface-soft); }
.site-menu-cross, .is-menu-open .site-menu-bars { display: none; }
.is-menu-open .site-menu-cross { display: block; }
.site-menu-toggle[hidden], .site-navigation[hidden], .site-whatsapp[hidden], [data-blog-pending][hidden] { display: none; }

.site-footer { background: var(--navy-950); color: #c5d2dd; padding: 60px 0 0; }
.site-footer-inner { width: calc(100% - var(--page-gutter) * 2); max-width: var(--container-width); margin-inline: auto; }
.site-footer-grid { display: grid; grid-template-columns: 1.15fr 0.7fr 1.3fr 1fr; gap: 36px; padding-bottom: 44px; }
.site-footer-grid > * { min-width: 0; }
.site-footer .site-brand { display: inline-block; color: var(--surface); margin-bottom: 18px; }
.site-footer h2 { color: var(--surface); font-size: 0.9375rem; font-weight: 600; letter-spacing: 0; line-height: 1.5; margin: 0 0 16px; }
.site-footer p, .site-footer a, .site-footer address { font-size: 0.875rem; line-height: 1.75; }
.site-footer a { color: #c5d2dd; text-decoration: none; overflow-wrap: anywhere; }
.site-footer a:hover { color: var(--surface); text-decoration: underline; text-underline-offset: 4px; }
.site-footer .site-brand { font-size: 1.75rem; text-decoration: none; }
.site-footer-tagline { color: var(--surface); margin-bottom: 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li a { display: inline-block; padding-block: 7px; }
.site-footer address { display: flex; flex-direction: column; gap: 10px; font-style: normal; }
.site-footer address a { padding-block: 4px; }
.site-footer .site-footer-whatsapp { display: inline-flex; align-items: center; min-height: 44px; margin-top: 18px; padding: 8px 14px; color: var(--surface); border: 1px solid #617080; border-radius: var(--radius-sm); }
.site-footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid #304356; padding: 20px 0; }
.site-footer-bottom p { margin: 0; }
.site-footer-bottom a { padding-block: 8px; }
.site-whatsapp {
    position: fixed;
    bottom: max(20px, env(safe-area-inset-bottom));
    right: max(20px, env(safe-area-inset-right));
    z-index: 9000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid var(--green-700);
    border-radius: var(--radius-lg);
    background: var(--green-600);
    color: var(--surface);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    transition: background-color var(--transition-ui);
}
.site-whatsapp:hover { background: var(--green-700); }
/* Keep floating chrome away from open navigation and assessment controls. */
body:has(.is-menu-open) .site-whatsapp,
body:has(.assessment-modal[style*="flex"]) .site-whatsapp,
body:has(.assessment-popup[style*="block"]) .site-whatsapp { display: none; }
#contactForm { scroll-margin-top: 100px; }
@media (max-width: 1200px) {
    .site-navigation { gap: 20px; }
    .site-nav-links { gap: 18px; }
    .site-footer-grid { gap: 24px; }
}
@media (max-width: 1100px) {
    .site-nav { min-height: 72px; flex-wrap: wrap; gap: 0; padding-block: 12px; }
    .site-navigation { width: 100%; flex-direction: column; align-items: stretch; gap: 20px; padding: 16px 0 8px; }
    .site-nav-links { flex-direction: column; align-items: stretch; gap: 4px; }
    .site-nav-links a { padding: 10px 14px; border-radius: var(--radius-sm); font-size: 1rem; }
    .site-nav-links a.active { background: var(--green-100); }
    .site-nav-links a.active::after { top: 12px; bottom: 12px; left: 0; right: auto; width: 3px; height: auto; }
    .is-menu-open .site-navigation {
        position: fixed;
        inset: 72px 0 0;
        height: calc(100vh - 72px);
        height: calc(100dvh - 72px);
        width: 100%;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 20px var(--page-gutter) max(28px, env(safe-area-inset-bottom));
        background: var(--surface);
    }
    .site-assessment { flex-shrink: 0; }
}
@media (max-width: 1024px) {
    .site-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; }
}
@media (max-width: 768px) {
    .site-footer { padding-top: 44px; }
    .site-footer-grid { gap: 28px; }
    .site-footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
    .site-footer-grid { grid-template-columns: minmax(0, 1fr); }
    .site-whatsapp { right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); width: 48px; height: 48px; }
}

/* STEP 4A ? Homepage hero and support choices only. */
.home-hero { padding: 64px 0 56px; background: var(--surface-soft); }
.home-hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.home-hero-copy { min-width: 0; }
.home-hero-eyebrow { color: var(--green-700); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.035em; margin-bottom: 20px; }
.home-hero h1 { font-size: clamp(2.25rem, 4.25vw, 3.75rem); line-height: 1.14; letter-spacing: -0.045em; font-weight: 600; margin: 0 0 24px; color: var(--navy-950); }
.home-hero h1 span { color: var(--green-700); }
.home-hero-description { max-width: 55ch; font-size: 1.0625rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 28px; }
.home-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.home-hero-actions .btn { width: auto; min-height: 52px; padding: 13px 20px; font-size: 0.9375rem; }
.home-hero-actions .btn-secondary { background: var(--surface); color: var(--navy-900); border: 1px solid var(--border-strong); box-shadow: var(--shadow-sm); }
.home-hero-actions .btn-secondary:hover { background: var(--surface-muted); border-color: var(--navy-700); }
.home-hero-actions svg { width: 18px; height: 18px; flex-shrink: 0; }
.home-trust-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 18px; list-style: none; padding: 24px 0 0; margin: 24px 0 0; border-top: 1px solid var(--border); }
.home-trust-row li { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 0.75rem; font-weight: 500; line-height: 1.5; }
.home-trust-row svg { width: 19px; height: 19px; color: var(--green-700); flex-shrink: 0; }
.home-hero-visual { position: relative; isolation: isolate; aspect-ratio: 1 / 1.08; display: flex; align-items: center; justify-content: center; min-width: 0; border: 1px solid var(--border); border-radius: var(--radius-xl); background: #e9efec; padding: 48px 30px; }
/* Image-ready slot: add a local img here when supplied, retaining HTML overlays. */
.home-hero-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; z-index: -1; }
.home-visual-lines { position: absolute; inset: 22px; border: 1px solid #cbd8d1; border-radius: var(--radius-lg); z-index: -1; }
.home-visual-lines::after { content: ''; position: absolute; inset: 24px; border: 1px solid #d6e1db; border-radius: var(--radius-md); }
.home-plan-card { width: 100%; max-width: 340px; padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.home-visual-icon, .home-concern-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--green-100); color: var(--green-700); }
.home-plan-card h2 { font-size: 1.25rem; line-height: 1.4; letter-spacing: -0.02em; margin: 18px 0 10px; }
.home-plan-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }
.home-plan-card ul { list-style: none; margin: 20px 0 0; padding: 16px 0 0; border-top: 1px solid var(--border); }
.home-plan-card li { font-size: 0.8125rem; color: var(--text-secondary); padding: 6px 0 6px 16px; position: relative; }
.home-plan-card li::before { content: ''; position: absolute; left: 0; top: 14px; width: 5px; height: 5px; background: var(--green-600); border-radius: 50%; }
.home-assistance-card, .home-recovery-card { position: absolute; display: flex; align-items: center; gap: 10px; max-width: calc(100% - 32px); padding: 12px 16px; font-size: 0.75rem; font-weight: 500; line-height: 1.5; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.home-assistance-card { top: 18px; right: 16px; background: var(--navy-900); color: var(--surface); }
.home-recovery-card { bottom: 18px; left: 16px; background: var(--surface); color: var(--navy-900); border: 1px solid var(--border); }
.home-assistance-card svg, .home-recovery-card svg { width: 20px; height: 20px; flex-shrink: 0; }
.home-concerns { padding: 56px 0 64px; background: var(--surface); border-block: 1px solid var(--border); }
.home-concerns-heading { max-width: 760px; margin-bottom: 32px; }
.home-concerns-heading h2 { font-size: clamp(1.875rem, 3.2vw, 2.625rem); line-height: 1.2; margin-bottom: 16px; }
.home-concerns-heading > p:last-child { font-size: 1rem; color: var(--text-secondary); }
.home-concern-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.home-concern-card { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface-soft); color: var(--navy-950); text-decoration: none; transition: border-color var(--transition-ui), box-shadow var(--transition-ui), background-color var(--transition-ui); }
.home-concern-card:hover { background: var(--surface); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.home-concern-card h3 { font-size: 1.0625rem; line-height: 1.5; margin: 20px 0 12px; letter-spacing: -0.015em; }
.home-concern-card p { font-size: 0.875rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: 24px; }
.home-concern-arrow { display: inline-flex; margin-top: auto; color: var(--green-700); }
@media (max-width: 1200px) {
    .home-hero-grid { gap: 32px; }
    .home-concern-card { padding: 20px; }
}
@media (max-width: 1024px) {
    .home-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
    .home-hero-copy { max-width: 760px; }
    .home-hero h1 { font-size: clamp(2.25rem, 5.5vw, 3.75rem); }
    .home-hero-visual { width: 100%; max-width: 600px; justify-self: center; aspect-ratio: 1.35; }
    .home-trust-row { max-width: 600px; }
    .home-concern-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .home-hero { padding: 40px 0; }
    .home-concerns { padding: 40px 0 48px; }
    .home-hero-visual { aspect-ratio: 1.15; }
}
@media (max-width: 480px) {
    .home-hero h1 { font-size: clamp(2rem, 8.5vw, 2.55rem); }
    .home-hero-description { font-size: 1rem; }
    .home-hero-actions { flex-direction: column; }
    .home-hero-actions .btn { width: 100%; }
    .home-trust-row { gap: 14px 10px; }
    .home-hero-visual { aspect-ratio: auto; padding: 78px 18px; }
    .home-plan-card { padding: 22px; }
    .home-concern-grid { grid-template-columns: minmax(0, 1fr); }
}

/* STEP 4B - Homepage services, reasons to choose Relnova, and process.
   Scoped selectors preserve the hero and all other page layouts. */
.home-services, .home-process { padding: 64px 0; background: var(--surface-soft); }
.home-process { background: var(--surface); }
.home-services .home-section-intro, .home-why .home-section-intro,
.home-process .home-section-intro { max-width: 780px; margin-bottom: 36px; }
.home-section-intro h2 { font-size: clamp(1.875rem, 3.2vw, 2.75rem); line-height: 1.22; letter-spacing: -0.03em; margin: 0 0 18px; }
.home-section-intro > p:last-child:not(.section-eyebrow) { max-width: 65ch; color: var(--text-secondary); font-size: 1rem; line-height: 1.8; }
.home-services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.home-service-card { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); text-decoration: none; color: var(--navy-950); transition: border-color var(--transition-ui), box-shadow var(--transition-ui); }
.home-service-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.home-service-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface-soft); color: var(--green-700); }
.home-service-card h3 { font-size: 1.125rem; line-height: 1.45; margin: 20px 0 12px; letter-spacing: -0.015em; }
.home-service-card p { font-size: 0.9375rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: 22px; }
.home-service-more { display: inline-flex; align-items: center; gap: 10px; margin-top: auto; min-height: 28px; color: var(--green-700); font-size: 0.875rem; font-weight: 600; }
.home-service-more svg { width: 18px; height: 18px; flex-shrink: 0; }
.home-service-card:hover .home-service-more { text-decoration: underline; text-underline-offset: 4px; }
.home-why { padding: 64px 0; background: var(--navy-950); color: var(--surface); }
.home-why .section-eyebrow { color: #99d4b8; }
.home-why-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; padding-top: 32px; border-top: 1px solid var(--navy-700); }
.home-why-feature { min-width: 0; }
.home-why-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--navy-800); color: #99d4b8; border-radius: var(--radius-md); }
.home-why-feature h3 { font-size: 1.125rem; line-height: 1.5; margin: 18px 0 10px; }
.home-why-feature p { color: #c5d2dd; font-size: 0.9375rem; line-height: 1.8; }
.home-process-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); list-style: none; margin: 0; padding: 0; }
.home-process-step { position: relative; min-width: 0; padding-right: 28px; }
.home-process-step:last-child { padding-right: 0; }
.home-process-step:not(:last-child)::before { content: ''; position: absolute; top: 25px; left: 52px; right: 0; height: 1px; background: var(--border-strong); }
.home-process-number { position: relative; display: inline-flex; justify-content: center; align-items: center; width: 52px; height: 52px; margin-bottom: 24px; border: 1px solid var(--border-strong); border-radius: var(--radius-md); background: var(--surface); color: var(--green-700); font-size: 1rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.home-process-step h3 { font-size: 1.125rem; line-height: 1.5; margin: 0 0 12px; }
.home-process-step p { font-size: 0.9375rem; line-height: 1.8; color: var(--text-secondary); }
@media (max-width: 1200px) {
    .home-service-card { padding: 24px; }
    .home-services-grid { gap: 18px; }
    .home-why-grid { gap: 24px; }
}
@media (max-width: 1024px) {
    .home-services-grid, .home-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-why-grid { row-gap: 32px; }
    .home-process-step { padding-right: 18px; }
}
@media (max-width: 768px) {
    .home-services, .home-why, .home-process { padding: 48px 0; }
    .home-services .home-section-intro, .home-why .home-section-intro,
    .home-process .home-section-intro { margin-bottom: 28px; }
    .home-process-steps { grid-template-columns: minmax(0, 1fr); }
    .home-process-step, .home-process-step:last-child { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 20px; padding: 0 0 30px; }
    .home-process-step:last-child { padding-bottom: 0; }
    .home-process-number { margin: 0; }
    .home-process-step:not(:last-child)::before { left: 25px; top: 52px; bottom: 0; right: auto; height: auto; width: 1px; }
    .home-process-step h3 { margin-top: 10px; }
}
@media (max-width: 480px) {
    .home-services-grid, .home-why-grid { grid-template-columns: minmax(0, 1fr); }
    .home-service-card { padding: 22px; }
    .home-process-step, .home-process-step:last-child { gap: 16px; }
}

/* STEP 4C - Remaining homepage sections; no shared page overrides. */
.home-pricing, .home-testimonials, .home-faq, .home-contact { padding: 64px 0; }
.home-pricing, .home-contact { background: var(--surface-soft); }
.home-testimonials, .home-faq { background: var(--surface); }
.home-pricing { scroll-margin-top: 100px; }
.home-pricing .home-section-intro, .home-testimonials .home-section-intro { max-width: 780px; margin-bottom: 36px; }
.home-pricing-grid, .home-testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.home-plan { display: flex; flex-direction: column; min-width: 0; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.home-plan-popular { border: 2px solid var(--green-600); padding: 27px; box-shadow: var(--shadow-md); }
.home-plan-heading { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; min-height: 32px; }
.home-plan-heading h3 { font-size: 1.25rem; margin: 0; }
.home-plan-badge { padding: 5px 8px; background: var(--green-100); color: var(--green-700); border-radius: var(--radius-sm); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.025em; }
.home-plan-popular .home-plan-badge { background: var(--green-600); color: var(--surface); }
.home-plan-description { font-size: 0.875rem; color: var(--text-secondary); margin: 16px 0 20px; }
.home-plan-price { color: var(--navy-950); font-size: clamp(1.875rem, 2.7vw, 2.5rem); font-weight: 600; line-height: 1.25; letter-spacing: -0.035em; }
.home-plan-price span { display: block; margin-top: 8px; font-size: 0.875rem; font-weight: 400; letter-spacing: 0; color: var(--text-secondary); }
.home-plan-effective { color: var(--green-700); font-size: 0.875rem; margin-top: 16px; }
.home-plan-features { list-style: none; margin: 24px 0; padding: 20px 0 0; border-top: 1px solid var(--border); }
.home-plan-features li { position: relative; padding: 6px 0 6px 18px; font-size: 0.9375rem; color: var(--text-secondary); }
.home-plan-features li::before { content: ''; position: absolute; left: 0; top: 17px; width: 5px; height: 5px; border-radius: 50%; background: var(--green-600); }
.home-plan-saving { margin-top: auto; margin-bottom: 20px; font-size: 0.8125rem; line-height: 1.7; color: var(--text-secondary); }
.home-plan .btn { width: 100%; min-height: 48px; }
.home-pricing-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; list-style: none; margin: 28px 0 0; padding: 0; color: var(--text-secondary); font-size: 0.875rem; }
.home-testimonial { margin: 0; display: flex; flex-direction: column; min-width: 0; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface-soft); box-shadow: var(--shadow-sm); }
.home-testimonial > svg { color: var(--green-700); margin-bottom: 20px; }
.home-testimonial blockquote { margin: 0 0 24px; }
.home-testimonial p { color: var(--text-secondary); font-size: 1rem; line-height: 1.85; }
.home-testimonial figcaption { margin-top: auto; font-size: 0.875rem; font-weight: 600; color: var(--navy-950); }
.home-faq { border-top: 1px solid var(--border); }
.home-faq-layout { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 56px; }
.home-faq-list { min-width: 0; border-top: 1px solid var(--border); }
.home-faq-item { border-bottom: 1px solid var(--border); }
.home-faq-item h3 { margin: 0; font-size: 1rem; }
.home-faq-question { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; min-height: 64px; padding: 20px 4px; border: 0; background: transparent; color: var(--navy-950); font: 500 1rem/1.6 var(--font-body); text-align: left; cursor: pointer; }
.home-faq-question:hover { color: var(--green-700); }
.home-faq-question svg { flex-shrink: 0; color: var(--green-700); }
.home-faq-question[aria-expanded="true"] .home-faq-plus { display: none; }
.home-faq-answer { padding: 0 32px 22px 4px; }
.home-faq-answer[hidden] { display: none; }
.home-faq-answer p { color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.8; }
.home-final-cta { padding: 56px 0; background: var(--navy-950); color: var(--surface); }
.home-final-cta-inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); align-items: center; gap: 40px; }
.home-final-cta h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); line-height: 1.25; margin: 0 0 16px; }
.home-final-cta p { font-size: 1rem; line-height: 1.8; color: #c5d2dd; }
.home-final-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.home-final-actions .btn { font-size: 0.9375rem; padding-inline: 20px; }
.home-contact-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); align-items: start; gap: 64px; }
.home-contact-copy h2 { font-size: clamp(1.875rem, 3.2vw, 2.75rem); line-height: 1.25; }
.home-contact-copy > p:not(.section-eyebrow) { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; }
.home-contact-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin: 32px 0; }
.home-contact-details dt { color: var(--navy-950); font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; }
.home-contact-details dd { margin: 0; font-size: 0.9375rem; color: var(--text-secondary); overflow-wrap: anywhere; }
.home-contact-details a { color: var(--text-secondary); text-decoration: underline; text-underline-offset: 4px; }
.home-contact-details a:hover { color: var(--green-700); }
.home-contact-note { border-top: 1px solid var(--border); padding-top: 20px; }
.home-contact-form { min-width: 0; padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.home-contact-form .input-box { margin-bottom: 18px; }
.home-contact-form label { display: block; margin-bottom: 7px; font-size: 0.875rem; font-weight: 500; color: var(--navy-950); }
.home-contact-form input, .home-contact-form select, .home-contact-form textarea { display: block; width: 100%; max-width: 100%; min-width: 0; min-height: 48px; margin: 0; padding: 12px 14px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); background: var(--surface); color: var(--text-primary); font: 400 1rem/1.5 var(--font-body); }
.home-contact-form textarea { min-height: 128px; resize: vertical; }
.home-contact-form .contact-btn { min-height: 48px; padding: 12px 18px; border: 1px solid var(--green-600); border-radius: var(--radius-md); background: var(--green-600); color: var(--surface); font: 600 0.9375rem/1.5 var(--font-body); }
.home-contact-form .contact-btn:hover { background: var(--green-700); transform: none; }
@media (max-width: 1200px) {
    .home-pricing-grid, .home-testimonial-grid { gap: 18px; }
    .home-plan, .home-testimonial { padding: 24px; }
    .home-plan-popular { padding: 23px; }
    .home-contact-layout { gap: 40px; }
}
@media (max-width: 1024px) {
    .home-faq-layout, .home-final-cta-inner { grid-template-columns: minmax(0, 1fr); gap: 28px; }
    .home-final-actions { justify-content: flex-start; }
    .home-contact-layout { gap: 28px; }
    .home-contact-details { grid-template-columns: minmax(0, 1fr); gap: 18px; }
}
@media (max-width: 768px) {
    .home-pricing, .home-testimonials, .home-faq, .home-contact, .home-final-cta { padding: 48px 0; }
    .home-pricing-grid, .home-testimonial-grid, .home-contact-layout { grid-template-columns: minmax(0, 1fr); }
    .home-plan-price { font-size: 2.25rem; }
    .home-plan-heading { min-height: 0; }
    .home-final-actions .btn { width: auto; }
    .home-contact-form { padding: 24px; }
}
@media (max-width: 480px) {
    .home-plan, .home-testimonial { padding: 22px; }
    .home-plan-popular { padding: 21px; }
    .home-final-actions { flex-direction: column; }
    .home-final-actions .btn { width: 100%; }
    .home-contact-form { padding: 20px; }
    .home-pricing-trust { flex-direction: column; align-items: center; gap: 8px; }
    .home-faq-answer { padding-right: 4px; }
}

/* STEP 5 - Pricing page only; preserve shared homepage and form rules. */
.plans-intro { padding: 64px 0 36px; background: var(--surface-soft); }
.plans-intro h1 { max-width: 930px; color: var(--navy-950); font-size: clamp(2rem, 4.1vw, 3.5rem); line-height: 1.15; letter-spacing: -0.035em; margin: 0 0 24px; }
.plans-lead { max-width: 68ch; color: var(--text-secondary); font-size: 1.0625rem; line-height: 1.8; }
.plans-options { padding: 24px 0 64px; background: var(--surface-soft); }
.plans-options h2 { font-size: 1.25rem; line-height: 1.5; margin-bottom: 28px; }
.plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.plans-card { display: flex; flex-direction: column; min-width: 0; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.plans-card-featured { border: 2px solid var(--green-600); padding: 27px; box-shadow: var(--shadow-md); }
.plans-card-heading { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; min-height: 32px; }
.plans-card-heading h3 { margin: 0; font-size: 1.25rem; }
.plans-badge { padding: 5px 8px; border-radius: var(--radius-sm); background: var(--green-100); color: var(--green-700); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.025em; }
.plans-card-featured .plans-badge { color: var(--surface); background: var(--green-600); }
.plans-description { margin: 18px 0 24px; color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.75; }
.plans-price { font-size: clamp(2rem, 3vw, 2.75rem); line-height: 1.2; font-weight: 600; letter-spacing: -0.035em; }
.plans-price span { display: block; color: var(--text-secondary); margin-top: 8px; font-size: 0.9375rem; font-weight: 400; letter-spacing: 0; }
.plans-effective { margin-top: 20px; color: var(--green-700); font-size: 0.875rem; }
.plans-comparison { margin: 24px 0; padding-top: 20px; border-top: 1px solid var(--border); }
.plans-comparison p { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.75; }
.plans-comparison .plans-comparison-detail { margin-top: 10px; font-size: 0.8125rem; color: var(--text-muted); }
.plans-card .btn { width: 100%; margin-top: auto; min-height: 48px; }
.plans-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; list-style: none; padding: 0; margin: 28px 0 12px; color: var(--green-700); font-size: 0.875rem; font-weight: 500; }
.plans-contact-note { text-align: center; color: var(--text-secondary); font-size: 0.875rem; }
.plans-questions { padding: 64px 0; background: var(--surface); }
.plans-questions-layout { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 64px; }
.plans-questions h2, .plans-help h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); line-height: 1.25; }
.plans-question-list { min-width: 0; }
.plans-question { border-top: 1px solid var(--border); padding: 22px 0; }
.plans-question:first-child { padding-top: 0; border-top: 0; }
.plans-question h3 { font-size: 1.0625rem; line-height: 1.5; margin: 0 0 12px; }
.plans-question p { font-size: 0.9375rem; line-height: 1.8; color: var(--text-secondary); }
.plans-help { padding: 48px 0; background: var(--navy-900); color: var(--surface); }
.plans-help-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.plans-help-inner > div { max-width: 760px; }
.plans-help p { font-size: 1rem; color: #c5d2dd; }
.plans-help .btn { flex-shrink: 0; }
/* Keep the existing WhatsApp shortcut accessible without covering plan CTAs. */
body:has(.plans-page) .site-whatsapp { position: static; display: flex; margin: 20px max(20px, calc((100% - var(--container-width)) / 2)) 20px auto; }
body:has(.plans-page) .site-whatsapp[hidden] { display: none; }
@media (max-width: 1200px) {
    .plans-grid { gap: 18px; }
    .plans-card { padding: 24px; }
    .plans-card-featured { padding: 23px; }
}
@media (max-width: 1024px) {
    .plans-questions-layout { gap: 36px; }
    .plans-help-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
    .plans-grid, .plans-questions-layout { grid-template-columns: minmax(0, 1fr); }
    .plans-intro { padding: 40px 0 28px; }
    .plans-options { padding: 20px 0 48px; }
    .plans-questions { padding: 48px 0; }
    .plans-price { font-size: 2.5rem; }
}
@media (max-width: 480px) {
    .plans-card { padding: 22px; }
    .plans-card-featured { padding: 21px; }
    .plans-trust { flex-direction: column; align-items: center; gap: 8px; }
    .plans-help .btn { width: 100%; }
}

/* STEP 6A - Main Services directory only. */
.directory-intro { padding: 64px 0 48px; background: var(--surface-soft); }
.directory-intro-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); align-items: center; gap: 64px; }
.directory-intro h1 { font-size: clamp(2rem, 3.6vw, 3.25rem); line-height: 1.18; letter-spacing: -0.035em; margin: 0; }
.directory-intro-copy > p { font-size: 1rem; line-height: 1.85; color: var(--text-secondary); margin-bottom: 24px; }
.directory-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.directory-actions .btn { font-size: 0.9375rem; padding-inline: 20px; }
.directory-situations { background: var(--surface-soft); padding: 0 0 56px; }
.directory-situations h2 { font-size: 1.375rem; line-height: 1.4; margin-bottom: 22px; }
.directory-situation-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.directory-situation { display: flex; align-items: center; gap: 16px; justify-content: space-between; min-width: 0; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); text-decoration: none; color: var(--navy-950); transition: border-color var(--transition-ui), box-shadow var(--transition-ui); }
.directory-situation:hover { border-color: var(--green-600); box-shadow: var(--shadow-sm); }
.directory-situation h3 { font-size: 0.9375rem; line-height: 1.5; margin: 0 0 8px; }
.directory-situation p { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.7; }
.directory-situation > svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--green-700); }
.directory-services, .directory-process, .directory-knowledge { padding: 64px 0; background: var(--surface); }
.directory-services { scroll-margin-top: 100px; }
.directory-section-heading { max-width: 760px; margin-bottom: 32px; }
.directory-section-heading h2, .directory-why h2, .directory-cta h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); line-height: 1.25; margin-bottom: 18px; }
.directory-section-heading > p:last-child { color: var(--text-secondary); font-size: 1rem; }
.directory-services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.directory-service { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; padding: 30px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.directory-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--green-100); color: var(--green-700); }
.directory-service h3 { font-size: 1.25rem; line-height: 1.5; margin: 20px 0 12px; }
.directory-service p { font-size: 0.9375rem; line-height: 1.8; color: var(--text-secondary); }
.directory-service .directory-who { padding-top: 16px; margin: 18px 0; border-top: 1px solid var(--border); font-size: 0.875rem; }
.directory-learn { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; margin-top: auto; color: var(--green-700); font-size: 0.9375rem; font-weight: 600; text-decoration: none; }
.directory-learn:hover { text-decoration: underline; text-underline-offset: 4px; }
.directory-learn svg { width: 18px; height: 18px; }
.directory-why { padding: 56px 0; background: var(--navy-950); color: var(--surface); }
.directory-why-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 64px; }
.directory-why .section-eyebrow { color: #99d4b8; }
.directory-why-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.directory-why-grid > div { border-top: 1px solid var(--navy-700); padding-top: 18px; }
.directory-why h3 { font-size: 1.0625rem; line-height: 1.5; margin-bottom: 10px; }
.directory-why p:not(.section-eyebrow) { color: #c5d2dd; font-size: 0.9375rem; line-height: 1.8; }
.directory-step-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; list-style: none; padding: 0; margin: 0; }
.directory-step-grid li { display: flex; align-items: flex-start; gap: 20px; min-width: 0; padding: 26px; background: var(--surface-soft); border: 1px solid var(--border); border-radius: var(--radius-md); }
.directory-step-number { font-size: 1.5rem; line-height: 1.4; color: var(--green-700); font-weight: 500; font-variant-numeric: tabular-nums; }
.directory-step-grid h3 { font-size: 1.0625rem; line-height: 1.5; margin: 0 0 12px; }
.directory-step-grid p { font-size: 0.9375rem; line-height: 1.8; color: var(--text-secondary); }
.directory-knowledge { background: var(--surface-soft); border-top: 1px solid var(--border); }
.directory-topics { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; padding: 0; margin: 0; }
.directory-topics li { padding: 16px 20px; border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius-sm); font-size: 0.9375rem; color: var(--text-secondary); }
.directory-cta { padding: 56px 0; background: var(--navy-900); color: var(--surface); }
.directory-cta-inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); align-items: center; gap: 40px; }
.directory-cta p { color: #c5d2dd; font-size: 1rem; }
@media (max-width: 1200px) {
    .directory-intro-grid, .directory-why-layout { gap: 36px; }
    .directory-service { padding: 26px; }
}
@media (max-width: 1024px) {
    .directory-intro-grid, .directory-why-layout, .directory-cta-inner { grid-template-columns: minmax(0, 1fr); gap: 28px; }
    .directory-intro h1 { max-width: 780px; }
    .directory-situation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .directory-intro { padding: 40px 0 32px; }
    .directory-situations { padding-bottom: 40px; }
    .directory-services, .directory-why, .directory-process, .directory-knowledge, .directory-cta { padding: 48px 0; }
    .directory-services-grid, .directory-step-grid { grid-template-columns: minmax(0, 1fr); }
    .directory-actions .btn { width: auto; }
}
@media (max-width: 480px) {
    .directory-situation-grid, .directory-why-grid { grid-template-columns: minmax(0, 1fr); }
    .directory-service { padding: 22px; }
    .directory-step-grid li { padding: 20px; gap: 16px; }
    .directory-actions { flex-direction: column; }
    .directory-actions .btn { width: 100%; }
    .directory-topics { flex-direction: column; }
}

/* STEP 6B - About editorial layout; shared chrome stays unchanged. */
.entity-intro { padding: 64px 0 48px; background: var(--surface-soft); }
.entity-intro h1 { max-width: 1000px; font-size: clamp(2rem, 4.2vw, 3.75rem); line-height: 1.16; letter-spacing: -0.04em; margin: 0 0 32px; }
.entity-intro-bottom { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); align-items: center; gap: 48px; padding-top: 28px; border-top: 1px solid var(--border-strong); }
.entity-intro-bottom > p { max-width: 65ch; color: var(--text-secondary); font-size: 1.0625rem; line-height: 1.85; }
.entity-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.entity-actions .btn { font-size: 0.9375rem; padding-inline: 20px; }
.entity-people, .entity-services, .entity-approach, .entity-values, .entity-limits, .entity-reasons { padding: 64px 0; background: var(--surface); }
.entity-editorial { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 80px; }
.entity-page h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); line-height: 1.25; margin: 0 0 20px; }
.entity-page h3 { font-size: 1.125rem; line-height: 1.5; margin: 0 0 10px; }
.entity-editorial p { font-size: 1rem; line-height: 1.85; color: var(--text-secondary); }
.entity-situations { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--border); }
.entity-situations li { position: relative; padding: 14px 0 14px 22px; border-bottom: 1px solid var(--border); font-size: 1rem; color: var(--text-secondary); }
.entity-situations li::before { content: ''; position: absolute; top: 25px; left: 0; width: 6px; height: 6px; background: var(--green-600); border-radius: 50%; }
.entity-services { background: var(--surface-soft); }
.entity-heading { max-width: 780px; margin-bottom: 32px; }
.entity-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; }
.entity-service { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-width: 0; padding: 24px 0; border-top: 1px solid var(--border-strong); text-decoration: none; color: var(--navy-950); }
.entity-service p { color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.8; }
.entity-service > svg { flex-shrink: 0; color: var(--green-700); }
.entity-service:hover h3 { text-decoration: underline; text-underline-offset: 4px; color: var(--green-700); }
.entity-mission { padding: 56px 0; background: var(--navy-950); color: var(--surface); }
.entity-mission .section-eyebrow { color: #99d4b8; }
.entity-mission .entity-mission-statement > p:first-child { color: var(--surface); font-size: clamp(1.25rem, 2vw, 1.625rem); line-height: 1.65; margin-bottom: 22px; }
.entity-mission .entity-mission-statement > p:last-child { color: #c5d2dd; font-size: 0.9375rem; }
.entity-approach-list { list-style: none; padding: 0; margin: 0; }
.entity-approach-list li { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 18px; padding: 24px 0; border-top: 1px solid var(--border); }
.entity-approach-list li:first-child { padding-top: 0; border-top: 0; }
.entity-approach-list li:last-child { padding-bottom: 0; }
.entity-approach-list span { color: var(--green-700); font-size: 0.875rem; font-weight: 600; padding-top: 5px; font-variant-numeric: tabular-nums; }
.entity-approach-list p { font-size: 0.9375rem; }
.entity-values { background: var(--surface-soft); }
.entity-value-list { margin: 0; }
.entity-value-list > div { display: grid; grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr); gap: 36px; padding: 22px 0; border-top: 1px solid var(--border); }
.entity-value-list dt { font-size: 1.0625rem; font-weight: 600; color: var(--navy-950); }
.entity-value-list dd { margin: 0; font-size: 1rem; line-height: 1.8; color: var(--text-secondary); }
.entity-limits { padding-bottom: 0; }
.entity-limits-panel { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 48px; padding: 36px; border: 1px solid var(--border-strong); border-left: 4px solid var(--green-700); border-radius: var(--radius-md); background: var(--surface-soft); }
.entity-limits p, .entity-limits li { color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.85; }
.entity-limits ul { padding-left: 20px; margin: 0 0 20px; }
.entity-limits li { margin-bottom: 12px; }
.entity-reason-list { padding-left: 20px; margin: 22px 0 0; }
.entity-reason-list li { padding-left: 4px; margin-bottom: 12px; color: var(--text-secondary); font-size: 0.9375rem; }
.entity-cta { padding: 56px 0; background: var(--navy-900); color: var(--surface); }
.entity-cta h2 { max-width: 800px; }
.entity-cta p { max-width: 65ch; margin-bottom: 28px; font-size: 1rem; color: #c5d2dd; }
@media (max-width: 1200px) {
    .entity-editorial { gap: 48px; }
    .entity-intro-bottom { gap: 32px; }
}
@media (max-width: 1024px) {
    .entity-intro-bottom { grid-template-columns: minmax(0, 1fr); gap: 24px; }
    .entity-editorial { gap: 32px; }
    .entity-limits-panel { grid-template-columns: minmax(0, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
    .entity-intro { padding: 40px 0; }
    .entity-people, .entity-services, .entity-mission, .entity-approach, .entity-values, .entity-reasons, .entity-cta { padding: 48px 0; }
    .entity-limits { padding-top: 48px; }
    .entity-editorial, .entity-service-grid { grid-template-columns: minmax(0, 1fr); }
    .entity-actions .btn { width: auto; }
    .entity-value-list > div { grid-template-columns: minmax(0, 1fr); gap: 10px; }
    .entity-limits-panel { padding: 24px; }
}
@media (max-width: 480px) {
    .entity-actions { flex-direction: column; }
    .entity-actions .btn { width: 100%; }
    .entity-limits-panel { padding: 20px; }
    .entity-approach-list li { grid-template-columns: 28px minmax(0, 1fr); gap: 12px; }
}

/* STEP 6C - Contact page only. */
.reach-intro { padding: 56px 0 40px; background: var(--surface-soft); }
.reach-intro h1 { max-width: 900px; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.18; margin: 0 0 24px; }
.reach-intro .container > p:last-child { max-width: 70ch; font-size: 1.0625rem; line-height: 1.8; color: var(--text-secondary); }
.reach-content { padding: 16px 0 64px; background: var(--surface-soft); }
.reach-layout { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); align-items: start; gap: 56px; }
.reach-page h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.3; margin: 0 0 18px; }
.reach-support > p:not(.section-eyebrow), .reach-form-card > p { font-size: 0.9375rem; line-height: 1.8; color: var(--text-secondary); }
.reach-methods { display: grid; gap: 12px; margin: 24px 0; }
.reach-methods a { display: flex; flex-direction: column; align-items: flex-start; padding: 16px 20px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); text-decoration: none; overflow-wrap: anywhere; }
.reach-methods a:hover { border-color: var(--green-700); }
.reach-methods span { font-size: 0.8125rem; color: var(--text-secondary); margin-bottom: 4px; }
.reach-methods strong { font-size: 1rem; font-weight: 500; color: var(--green-700); }
.reach-details { display: grid; gap: 20px; margin: 0 0 28px; }
.reach-details dt { font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; }
.reach-details dd { margin: 0; font-size: 0.9375rem; line-height: 1.8; color: var(--text-secondary); }
.reach-privacy { border-top: 1px solid var(--border); padding-top: 20px; }
.reach-privacy h3 { font-size: 1rem; margin-bottom: 10px; }
.reach-privacy p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.8; }
.reach-privacy a { display: inline-block; padding: 10px 0; color: var(--green-700); font-size: 0.875rem; text-underline-offset: 4px; }
.reach-form-card { min-width: 0; padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.reach-form-card > p { margin-bottom: 24px; }
.reach-form-card form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.reach-field { min-width: 0; }
.reach-field-full, .reach-form-card form > button { grid-column: 1 / -1; }
.reach-field label { display: block; margin-bottom: 7px; font-size: 0.875rem; font-weight: 500; }
.reach-field label span { color: var(--green-700); }
.reach-field input, .reach-field select, .reach-field textarea { display: block; width: 100%; min-width: 0; max-width: 100%; min-height: 48px; padding: 12px 13px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); color: var(--text-primary); background: var(--surface); font: 400 1rem/1.5 var(--font-body); }
.reach-field textarea { resize: vertical; min-height: 128px; }
.reach-form-card form > button { width: 100%; }
.reach-next { padding: 64px 0; background: var(--surface); }
.reach-next ol { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; counter-reset: reach-step; list-style: none; padding: 12px 0 0; margin: 0; }
.reach-next li { min-width: 0; border-top: 1px solid var(--border); padding-top: 20px; counter-increment: reach-step; }
.reach-next li::before { content: counter(reach-step, decimal-leading-zero); display: block; color: var(--green-700); font-weight: 600; font-size: 0.875rem; margin-bottom: 14px; }
.reach-next h3 { font-size: 1.125rem; line-height: 1.5; }
.reach-next p { color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.8; }
.reach-assessment { padding: 48px 0; color: var(--surface); background: var(--navy-900); }
.reach-assessment > .container { display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.reach-assessment p { color: #c5d2dd; font-size: 1rem; }
.reach-assessment .btn { flex-shrink: 0; }
@media (max-width: 1200px) { .reach-layout { gap: 32px; } }
@media (max-width: 1024px) { .reach-layout { grid-template-columns: minmax(0, 1fr); } .reach-methods { grid-template-columns: repeat(3, minmax(0, 1fr)); } .reach-details { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 768px) { .reach-intro { padding: 40px 0 32px; } .reach-content { padding-bottom: 48px; } .reach-next { padding: 48px 0; } .reach-methods, .reach-next ol { grid-template-columns: minmax(0, 1fr); } .reach-assessment > .container { flex-direction: column; align-items: flex-start; } .reach-form-card { padding: 24px; } }
@media (max-width: 480px) { .reach-form-card form, .reach-details { grid-template-columns: minmax(0, 1fr); } .reach-form-card { padding: 20px; } .reach-assessment .btn { width: 100%; } }

/* STEP 6D - FAQ and Privacy, isolated from existing page styles. */
.answers-intro { padding: 56px 0 44px; background: var(--surface-soft); }
.answers-intro h1 { max-width: 950px; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.18; margin: 0 0 24px; }
.answers-intro .container > p:last-child { max-width: 65ch; font-size: 1rem; line-height: 1.8; color: var(--text-secondary); }
.answers-layout { display: grid; grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.65fr); gap: 64px; padding-block: 56px; }
.answers-topics { align-self: start; position: sticky; top: 104px; }
.answers-topics p { margin-bottom: 12px; font-size: 0.8125rem; font-weight: 600; color: var(--text-secondary); }
.answers-topics a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--green-700); font-size: 0.9375rem; text-decoration: none; }
.answers-topics a:hover { text-decoration: underline; text-underline-offset: 4px; }
.answers-group { padding: 0; margin-bottom: 40px; scroll-margin-top: 100px; }
.answers-group:last-child { margin-bottom: 0; }
.answers-group h2 { font-size: 1.5rem; line-height: 1.4; margin: 0 0 20px; }
.answers-item { border-bottom: 1px solid var(--border); }
.answers-item h3 { margin: 0; }
.answers-question { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 64px; width: 100%; padding: 18px 4px; border: 0; background: transparent; font: 500 1rem/1.6 var(--font-body); color: var(--navy-950); text-align: left; cursor: pointer; }
.answers-question:hover { color: var(--green-700); }
.answers-question svg { flex-shrink: 0; color: var(--green-700); }
.answers-question[aria-expanded="true"] .answers-plus { display: none; }
.answers-answer { padding: 0 32px 22px 4px; }
.answers-answer[hidden] { display: none; }
.answers-answer p { font-size: 0.9375rem; line-height: 1.85; color: var(--text-secondary); }
.answers-answer a { color: var(--green-700); text-underline-offset: 4px; }
.answers-cta { padding: 48px 0; background: var(--navy-900); color: var(--surface); }
.answers-cta h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.3; margin-bottom: 24px; }
.answers-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.privacy-document { background: var(--surface); }
.privacy-document .privacy-hero { width: calc(100% - var(--page-gutter) * 2); max-width: 840px; margin-inline: auto; padding: 56px 0 32px; border-bottom: 1px solid var(--border-strong); }
.privacy-document .privacy-hero h1 { font-size: clamp(2rem, 3.8vw, 3rem); line-height: 1.2; margin-bottom: 18px; }
.privacy-document .privacy-hero > p:last-child { color: var(--text-secondary); font-size: 1rem; }
.privacy-document .privacy-wrapper { width: calc(100% - var(--page-gutter) * 2); max-width: 840px; padding: 28px 0 56px; margin-inline: auto; }
.privacy-document .privacy-updated { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 32px; }
.privacy-document .privacy-section { padding: 28px 0; border-top: 1px solid var(--border); }
.privacy-document .privacy-section h2 { font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.4; margin: 0 0 18px; color: var(--navy-950); }
.privacy-document .privacy-section h3 { font-size: 1.125rem; line-height: 1.5; margin: 24px 0 12px; }
.privacy-document .privacy-section p, .privacy-document .privacy-section li { color: var(--text-secondary); font-size: 1rem; line-height: 1.85; overflow-wrap: anywhere; }
.privacy-document .privacy-section p + p { margin-top: 16px; }
.privacy-document .privacy-section ul, .privacy-document .privacy-section ol { margin: 16px 0; padding-left: 24px; }
.privacy-document .privacy-section li { padding-left: 4px; margin-bottom: 10px; }
.privacy-document .privacy-section a { color: var(--green-700); text-underline-offset: 4px; }
.privacy-document .privacy-contact { padding: 22px; background: var(--surface-soft); border-left: 3px solid var(--green-700); border-radius: var(--radius-sm); }
@media (max-width: 1200px) { .answers-layout { gap: 40px; } }
@media (max-width: 1024px) { .answers-layout { grid-template-columns: minmax(0, 1fr); gap: 32px; } .answers-topics { position: static; } }
@media (max-width: 768px) { .answers-intro { padding: 40px 0 32px; } .answers-layout { padding-block: 40px; } .answers-actions .btn { width: auto; } .privacy-document .privacy-hero { padding-top: 40px; } }
@media (max-width: 480px) { .answers-actions { flex-direction: column; } .answers-actions .btn { width: 100%; } .answers-answer { padding-right: 4px; } .privacy-document .privacy-contact { padding: 18px; } }

/* STEP 7A - Loan Settlement Assistance: isolated editorial composition. */
.settlement-page { color: var(--navy-950); background: var(--surface); }
.settlement-page h2 { font-size: clamp(1.6rem, 2.7vw, 2.25rem); line-height: 1.3; margin: 0 0 20px; }
.settlement-page h3 { font-size: 1.125rem; line-height: 1.5; margin: 0 0 10px; }
.settlement-page p, .settlement-page li { font-size: 1rem; line-height: 1.85; color: var(--text-secondary); }
.settlement-page .section-eyebrow { font-size: 0.75rem; line-height: 1.6; color: var(--green-700); margin-bottom: 16px; }
.settlement-intro { padding: 24px 0 44px; background: var(--surface-soft); }
.settlement-breadcrumb { margin-bottom: 36px; }
.settlement-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px 12px; list-style: none; margin: 0; padding: 0; }
.settlement-breadcrumb li { font-size: 0.8125rem; }
.settlement-breadcrumb li + li::before { content: '/'; margin-right: 12px; color: var(--text-muted); }
.settlement-breadcrumb a, .settlement-copy a { color: var(--green-700); text-underline-offset: 4px; }
.settlement-intro h1 { max-width: 950px; font-size: clamp(2.25rem, 4.5vw, 4rem); line-height: 1.15; letter-spacing: -0.035em; margin: 0 0 28px; }
.settlement-intro-bottom { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); align-items: end; gap: 48px; }
.settlement-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.settlement-actions .btn { width: auto; }
.settlement-banner { position: relative; width: 100%; aspect-ratio: 4 / 1; max-height: 360px; min-height: 180px; overflow: hidden; background: linear-gradient(115deg, var(--navy-950), var(--navy-800) 65%, #385e59); }
.settlement-banner::before, .settlement-banner::after { content: ''; position: absolute; width: 46%; height: 160%; top: -30%; transform: rotate(24deg); border-left: 1px solid #ffffff20; border-right: 1px solid #ffffff18; background: #ffffff03; }
.settlement-banner::before { left: 8%; }
.settlement-banner::after { left: 64%; }
.settlement-banner-frame { position: absolute; inset: 14% 12%; border: 1px solid #ffffff25; }
.settlement-banner-plane { position: absolute; width: 45%; height: 160%; right: 8%; top: 12%; transform: rotate(-28deg); background: #b9d6c610; border: 1px solid #b9d6c625; }
.settlement-section { padding: 64px 0; }
.settlement-editorial { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 72px; align-items: start; }
.settlement-editorial > *, .settlement-situations > *, .settlement-related > * { min-width: 0; }
.settlement-copy p + p { margin-top: 18px; }
.settlement-copy .settlement-lead { font-size: 1.25rem; line-height: 1.7; color: var(--navy-950); }
.settlement-soft { background: var(--surface-soft); }
.settlement-heading { max-width: 790px; margin-bottom: 32px; }
.settlement-lines { list-style: none; padding: 0; margin: 20px 0; border-top: 1px solid var(--border-strong); }
.settlement-lines li { padding: 12px 0; border-bottom: 1px solid var(--border); }
.settlement-situations { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; }
.settlement-situations article { grid-column: span 2; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.settlement-situations article:nth-child(n+4) { grid-column: span 3; background: var(--surface-soft); }
.settlement-index { display: block; color: var(--green-700); font-size: 0.8125rem; font-weight: 600; margin-bottom: 24px; }
.settlement-situations p, .settlement-assist-list p, .settlement-step-panel p, .settlement-consider-grid p, .settlement-related p { font-size: 0.9375rem; }
.settlement-assist { background: var(--navy-950); }
.settlement-assist h2, .settlement-assist h3, .settlement-cta h2 { color: var(--surface); }
.settlement-assist p, .settlement-cta p { color: #c5d2dd; }
.settlement-assist .section-eyebrow, .settlement-cta .section-eyebrow { color: #99d4b8; }
.settlement-assist-list { display: grid; gap: 24px; }
.settlement-assist-list > div { border-left: 2px solid #669b84; padding-left: 24px; }
.settlement-process { position: relative; list-style: none; margin: 0; padding: 0; }
.settlement-process::before { content: ''; position: absolute; top: 24px; bottom: 24px; left: 50%; width: 1px; background: var(--border-strong); }
.settlement-process li { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr); gap: 24px; align-items: start; margin-bottom: 16px; }
.settlement-process li:last-child { margin-bottom: 0; }
.settlement-step-number { grid-column: 2; grid-row: 1; justify-self: center; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--border-strong); background: var(--surface); border-radius: 50%; color: var(--green-700); font-size: 0.875rem; font-weight: 600; }
.settlement-step-panel { grid-column: 1; grid-row: 1; padding: 24px; background: var(--surface-soft); border-top: 2px solid var(--green-700); }
.settlement-process li:nth-child(even) .settlement-step-panel { grid-column: 3; }
.settlement-consider { background: #edf2eb; border-block: 1px solid var(--border); }
.settlement-consider-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.settlement-consider-grid article { border-top: 1px solid var(--border-strong); padding-top: 20px; }
.settlement-limits { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 40px; padding: 28px; margin-top: 44px; border: 1px solid var(--border-strong); border-left: 3px solid var(--green-700); border-radius: var(--radius-sm); }
.settlement-limits h2 { font-size: 1.25rem; margin-bottom: 0; }
.settlement-limits ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 28px; padding-left: 20px; margin: 0; }
.settlement-limits li { font-size: 0.875rem; }
.settlement-page .answers-item h3 { margin: 0; }
.settlement-page .answers-answer p { font-size: 0.9375rem; }
.settlement-related { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.settlement-related > a { display: block; padding: 24px 0; color: var(--navy-950); text-decoration: none; border-top: 2px solid var(--green-700); border-bottom: 1px solid var(--border); }
.settlement-related > a > span { display: block; font-size: 0.6875rem; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 14px; }
.settlement-related h3 { display: flex; justify-content: space-between; gap: 12px; }
.settlement-related a:hover h3 { color: var(--green-700); text-decoration: underline; text-underline-offset: 4px; }
.settlement-knowledge { background: var(--surface-soft); }
.settlement-knowledge ul { list-style: none; padding: 0; margin: 0; }
.settlement-knowledge li { padding: 18px 0; border-top: 1px solid var(--border-strong); }
.settlement-knowledge li:last-child { border-bottom: 1px solid var(--border-strong); }
.settlement-knowledge li span { font-size: 0.75rem; color: var(--text-muted); }
.settlement-knowledge h3 { font-size: 1rem; margin-bottom: 4px; }
.settlement-cta { background: var(--navy-900); }
.settlement-cta h2 { max-width: 820px; font-size: clamp(1.75rem, 3.4vw, 2.75rem); }
.settlement-cta .container > p:not(.section-eyebrow) { max-width: 70ch; margin-bottom: 28px; }
@media (max-width: 1200px) { .settlement-editorial { gap: 40px; } .settlement-intro-bottom { grid-template-columns: minmax(0, 1fr); gap: 24px; } .settlement-intro-bottom > p { max-width: 75ch; } }
@media (max-width: 1024px) { .settlement-consider-grid { gap: 20px; } .settlement-limits { grid-template-columns: minmax(0, 1fr); gap: 20px; } }
@media (max-width: 768px) {
    .settlement-section { padding: 44px 0; }
    .settlement-intro { padding-bottom: 32px; }
    .settlement-breadcrumb { margin-bottom: 28px; }
    .settlement-editorial, .settlement-related, .settlement-consider-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
    .settlement-situations { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .settlement-situations article, .settlement-situations article:nth-child(n+4) { grid-column: auto; }
    .settlement-situations article:last-child { grid-column: 1 / -1; }
    .settlement-process::before { left: 23px; }
    .settlement-process li { grid-template-columns: 48px minmax(0, 1fr); gap: 16px; }
    .settlement-step-number { grid-column: 1; }
    .settlement-step-panel, .settlement-process li:nth-child(even) .settlement-step-panel { grid-column: 2; }
    .settlement-related { gap: 12px; }
}
@media (max-width: 480px) {
    .settlement-actions { flex-direction: column; }
    .settlement-actions .btn { width: 100%; }
    .settlement-situations, .settlement-limits ul { grid-template-columns: minmax(0, 1fr); }
    .settlement-step-panel { padding: 18px; }
    .settlement-limits { padding: 20px; }
    .settlement-banner { min-height: 150px; }
}

/* STEP 7B - Recovery communication page only. */
.recovery-page { background: var(--surface); color: var(--navy-950); }
.recovery-page h2 { font-size: clamp(1.6rem, 2.7vw, 2.25rem); line-height: 1.3; margin: 0 0 18px; }
.recovery-page h3 { font-size: 1.125rem; line-height: 1.5; margin: 0 0 10px; }
.recovery-page p, .recovery-page li { font-size: 1rem; line-height: 1.85; color: var(--text-secondary); }
.recovery-page .section-eyebrow { font-size: 0.75rem; line-height: 1.6; color: var(--green-700); margin-bottom: 16px; }
.recovery-page a:not(.btn) { color: var(--green-700); text-underline-offset: 4px; }
.recovery-hero { background: var(--surface-soft); padding: 24px 0 0; }
.recovery-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px 12px; list-style: none; margin: 0; padding: 0; }
.recovery-breadcrumb li { font-size: 0.8125rem; }
.recovery-breadcrumb li + li::before { content: '/'; margin-right: 12px; color: var(--text-muted); }
.recovery-hero-copy { max-width: 960px; text-align: center; margin: 40px auto 36px; }
.recovery-hero h1 { font-size: clamp(2.125rem, 4.2vw, 3.75rem); line-height: 1.18; letter-spacing: -0.03em; margin: 0 0 24px; }
.recovery-hero-copy > p:not(.section-eyebrow) { max-width: 72ch; margin: 0 auto 28px; }
.recovery-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.recovery-hero .recovery-actions { justify-content: center; }
.recovery-actions .btn { width: auto; }
.recovery-pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 20px 0; border-top: 1px solid var(--border-strong); text-align: center; font-size: 0.8125rem; color: var(--text-secondary); }
.recovery-pillars span + span { border-left: 1px solid var(--border-strong); }
.recovery-banner { position: relative; width: 100%; aspect-ratio: 4.5 / 1; min-height: 150px; max-height: 320px; overflow: hidden; background: linear-gradient(100deg, #132d36, #264c49); }
.recovery-banner::before, .recovery-banner::after { content: ''; position: absolute; width: 62%; height: 220%; top: -62%; border: 1px solid #cde2d733; border-radius: 50%; }
.recovery-banner::before { left: -15%; }
.recovery-banner::after { right: -15%; }
.recovery-banner > div { position: absolute; inset: 18% 22%; border: 1px solid #cde2d733; border-radius: 100px; background: #ffffff04; }
.recovery-banner > span { position: absolute; inset: 30% 30%; border-block: 1px solid #cde2d724; }
.recovery-section { padding: 60px 0; }
.recovery-soft { background: var(--surface-soft); }
.recovery-heading { max-width: 800px; margin-bottom: 30px; }
.recovery-definition { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 64px; }
.recovery-definition .recovery-lead { font-size: 1.25rem; color: var(--navy-950); margin-bottom: 18px; }
.recovery-situations { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.recovery-situations article { padding: 24px; background: var(--surface); border: 1px solid var(--border); border-top: 3px solid var(--green-700); border-radius: var(--radius-sm); }
.recovery-situations article:first-child { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; background: var(--green-100); }
.recovery-situations p, .recovery-call-list p, .recovery-visit-grid p, .recovery-support p, .recovery-process p, .recovery-related p { font-size: 0.9375rem; }
.recovery-call-panel { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.recovery-call-intro { padding: 36px; background: var(--navy-950); }
.recovery-call-intro h2 { color: var(--surface); }
.recovery-call-intro p { color: #c5d2dd; }
.recovery-call-intro .section-eyebrow { color: #99d4b8; }
.recovery-call-intro .recovery-call-note { margin-top: 28px; border-top: 1px solid #ffffff30; padding-top: 20px; font-size: 0.875rem; }
.recovery-call-list { padding: 12px 32px; }
.recovery-call-list article { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 16px; padding: 22px 0; }
.recovery-call-list article + article { border-top: 1px solid var(--border); }
.recovery-call-list article > span { font-size: 0.8125rem; color: var(--green-700); padding-top: 4px; font-weight: 600; }
.recovery-visit { background: #edf2eb; }
.recovery-visit-grid, .recovery-support, .recovery-related { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.recovery-visit-grid article { padding-left: 22px; border-left: 2px solid var(--green-700); }
.recovery-label { display: block; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; color: var(--green-700); margin-bottom: 14px; }
.recovery-documentation { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: start; }
.recovery-checklist { background: var(--surface-soft); padding: 28px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); box-shadow: 8px 8px 0 var(--surface-muted); }
.recovery-checklist > p { font-weight: 600; color: var(--navy-950); padding-bottom: 18px; }
.recovery-checklist ul { list-style: none; margin: 0; padding: 0; }
.recovery-checklist li { display: flex; align-items: start; gap: 12px; font-size: 0.9375rem; padding: 12px 0; border-top: 1px solid var(--border); }
.recovery-checklist svg { flex-shrink: 0; margin-top: 5px; color: var(--green-700); }
.recovery-support article { padding-top: 20px; border-top: 1px solid var(--border-strong); }
.recovery-process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; list-style: none; padding: 0; margin: 0; }
.recovery-process li { position: relative; padding: 24px; border: 1px solid var(--border-strong); background: var(--surface-soft); border-radius: var(--radius-sm); }
.recovery-process li:not(:last-child)::after { content: ''; position: absolute; left: 100%; top: 45px; width: 21px; height: 2px; background: var(--green-700); }
.recovery-process-number { display: block; color: var(--green-700); font-size: 0.875rem; font-weight: 600; margin-bottom: 22px; }
.recovery-process h3 { font-size: 1rem; }
.recovery-consider { background: var(--surface-soft); }
.recovery-consider-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.recovery-consider-grid p { font-size: 0.9375rem; }
.recovery-limits { margin-top: 32px; padding: 28px; background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-sm); }
.recovery-limits ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 32px; margin: 18px 0 0; padding-left: 20px; }
.recovery-limits li { font-size: 0.875rem; }
.recovery-faq { max-width: 920px; }
.recovery-page .answers-item h3 { margin: 0; }
.recovery-page .answers-answer p { font-size: 0.9375rem; }
.recovery-related > a { display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); text-decoration: none; }
.recovery-related h3 { color: var(--navy-950); }
.recovery-related > a > span { display: block; padding-top: 22px; margin-top: auto; font-size: 0.8125rem; font-weight: 500; }
.recovery-related a:hover { border-color: var(--green-700); }
.recovery-related a:hover > span { text-decoration: underline; text-underline-offset: 4px; }
.recovery-knowledge { list-style: none; padding: 0; margin: 0; }
.recovery-knowledge li { display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--border); padding: 20px 0; }
.recovery-knowledge li:last-child { border-bottom: 1px solid var(--border); }
.recovery-knowledge h3 { margin: 0; font-size: 1rem; }
.recovery-knowledge span { font-size: 0.75rem; color: var(--text-muted); flex-shrink: 0; }
.recovery-cta { background: var(--navy-900); }
.recovery-cta > .container { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); align-items: center; gap: 40px; }
.recovery-cta h2 { color: var(--surface); }
.recovery-cta p { color: #c5d2dd; }
.recovery-cta .section-eyebrow { color: #99d4b8; }
.recovery-cta .btn-outline { color: var(--surface); border-color: #91a6b5; background: transparent; }
.recovery-cta .btn-outline:hover { color: var(--navy-950); background: var(--surface); }
@media (max-width: 1200px) { .recovery-process { gap: 16px; } .recovery-process li { padding: 20px; } .recovery-process li:not(:last-child)::after { width: 17px; } .recovery-definition, .recovery-documentation { gap: 40px; } }
@media (max-width: 1024px) { .recovery-process { grid-template-columns: repeat(2, minmax(0, 1fr)); } .recovery-process li:nth-child(2)::after { display: none; } .recovery-cta > .container { grid-template-columns: minmax(0, 1fr); gap: 24px; } .recovery-call-intro { padding: 28px; } .recovery-call-list { padding-inline: 24px; } }
@media (max-width: 768px) {
    .recovery-section { padding: 44px 0; }
    .recovery-hero-copy { text-align: left; margin-top: 32px; }
    .recovery-hero .recovery-actions { justify-content: flex-start; }
    .recovery-definition, .recovery-documentation, .recovery-call-panel, .recovery-visit-grid, .recovery-support, .recovery-related, .recovery-consider-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
    .recovery-call-panel { gap: 0; }
    .recovery-situations { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .recovery-situations article:first-child { grid-row: auto; grid-column: 1 / -1; }
    .recovery-process { grid-template-columns: minmax(0, 1fr); }
    .recovery-process li:not(:last-child)::after { display: block; left: 32px; top: 100%; width: 2px; height: 17px; }
    .recovery-process-number { margin-bottom: 12px; }
}
@media (max-width: 480px) {
    .recovery-actions { flex-direction: column; }
    .recovery-actions .btn { width: 100%; }
    .recovery-pillars { grid-template-columns: minmax(0, 1fr); gap: 8px; text-align: left; }
    .recovery-pillars span + span { border-left: 0; }
    .recovery-situations, .recovery-limits ul { grid-template-columns: minmax(0, 1fr); }
    .recovery-call-intro, .recovery-limits, .recovery-checklist { padding: 22px; }
    .recovery-call-list { padding-inline: 20px; }
    .recovery-knowledge li { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* STEP 7C - Legal Support: formal document-focused layout. */
.legal-page { background: var(--surface); color: var(--navy-950); }
.legal-page h2 { font-size: clamp(1.6rem, 2.7vw, 2.25rem); line-height: 1.3; margin: 0 0 18px; }
.legal-page h3 { font-size: 1.125rem; line-height: 1.5; margin: 0 0 10px; }
.legal-page p, .legal-page li, .legal-page dd { font-size: 1rem; line-height: 1.85; color: var(--text-secondary); }
.legal-page .section-eyebrow { font-size: 0.75rem; line-height: 1.6; color: var(--green-700); margin-bottom: 16px; }
.legal-page a:not(.btn) { color: var(--green-700); text-underline-offset: 4px; }
.legal-hero { padding: 24px 0 44px; background: var(--surface-soft); }
.legal-breadcrumb { margin-bottom: 40px; }
.legal-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px 12px; list-style: none; margin: 0; padding: 0; }
.legal-breadcrumb li { font-size: 0.8125rem; }
.legal-breadcrumb li + li::before { content: '/'; margin-right: 12px; color: var(--text-muted); }
.legal-hero-layout { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 0.7fr); gap: 56px; align-items: end; }
.legal-hero h1 { font-size: clamp(2.125rem, 4vw, 3.625rem); line-height: 1.18; letter-spacing: -0.03em; margin: 0 0 24px; }
.legal-hero-layout > div > p:not(.section-eyebrow) { max-width: 65ch; margin-bottom: 28px; }
.legal-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.legal-actions .btn { width: auto; }
.legal-hero-note { border-top: 3px solid var(--green-700); border-bottom: 1px solid var(--border-strong); padding: 24px 0; }
.legal-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; color: var(--green-700); }
.legal-hero-note > p { font-size: 1.375rem; line-height: 1.5; color: var(--navy-950); font-weight: 500; margin: 18px 0; }
.legal-hero-note > div { font-size: 0.9375rem; line-height: 1.8; color: var(--text-secondary); }
.legal-hero-note a { display: inline-block; padding-top: 20px; font-size: 0.8125rem; }
.legal-banner { position: relative; width: 100%; aspect-ratio: 4.5 / 1; min-height: 150px; max-height: 320px; overflow: hidden; background: linear-gradient(110deg, var(--navy-950), #29414c); }
.legal-banner::before { content: ''; position: absolute; inset: 0 16%; border-inline: 1px solid #ffffff22; background: #ffffff03; transform: skewX(-12deg); }
.legal-banner::after { content: ''; position: absolute; inset: 18% 8%; border-block: 1px solid #ffffff24; }
.legal-banner > div { position: absolute; inset: 0 37%; border-inline: 1px solid #ffffff1a; background: #ffffff03; }
.legal-banner > span { position: absolute; width: 1px; height: 100%; right: 25%; background: #bcd8ca38; }
.legal-section { padding: 60px 0; }
.legal-soft { background: var(--surface-soft); }
.legal-heading { max-width: 850px; margin-bottom: 32px; }
.legal-situations { margin: 0; border-top: 1px solid var(--border-strong); }
.legal-situations > div { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 40px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.legal-situations dt { font-weight: 500; font-size: 1.0625rem; }
.legal-situations dd { margin: 0; font-size: 0.9375rem; }
.legal-notice .legal-lead { font-size: 1.1875rem; color: var(--navy-950); }
.legal-notice-panels { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--border-strong); background: var(--surface); }
.legal-notice-panels article { padding: 28px; }
.legal-notice-panels article + article { border-left: 1px solid var(--border); }
.legal-notice-panels p { font-size: 0.9375rem; }
.legal-index { display: block; font-size: 0.8125rem; color: var(--green-700); font-weight: 600; margin-bottom: 24px; }
.legal-doc-layout, .legal-lawyer { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 64px; align-items: start; }
.legal-page .legal-small { font-size: 0.875rem; margin-top: 18px; }
.legal-document-list { border: 1px solid var(--border-strong); border-top: 3px solid var(--green-700); padding: 24px 28px; }
.legal-document-list > p { color: var(--navy-950); font-weight: 600; margin-bottom: 18px; }
.legal-document-list ul { list-style: none; margin: 0; padding: 0; }
.legal-document-list li { display: flex; align-items: start; gap: 14px; font-size: 0.9375rem; padding: 12px 0; border-top: 1px solid var(--border); }
.legal-document-list svg { flex-shrink: 0; margin-top: 5px; color: var(--green-700); }
.legal-scope { background: var(--navy-950); scroll-margin-top: 90px; }
.legal-scope h2, .legal-scope h3 { color: var(--surface); }
.legal-scope .section-eyebrow, .legal-cta .section-eyebrow { color: #99d4b8; }
.legal-scope .legal-scope-statement { color: var(--surface); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; padding: 20px 0 28px; margin-bottom: 28px; border-bottom: 1px solid #ffffff30; }
.legal-scope-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; }
.legal-scope-grid > div + div { border-left: 1px solid #ffffff30; padding-left: 40px; }
.legal-scope-grid p, .legal-scope-grid li { color: #c5d2dd; font-size: 0.9375rem; }
.legal-scope-grid p + p { margin-top: 20px; }
.legal-scope-grid strong { color: var(--surface); font-weight: 500; }
.legal-scope-grid ul { margin: 20px 0 0; padding-left: 20px; }
.legal-scope-grid li { margin-bottom: 8px; }
.legal-lawyer > ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--border-strong); }
.legal-lawyer > ul > li { padding: 16px 0; border-bottom: 1px solid var(--border); }
.legal-workflow { list-style: none; margin: 0; padding: 0; border: 1px solid var(--border-strong); background: var(--surface); }
.legal-workflow li { display: grid; grid-template-columns: 52px minmax(0, 0.85fr) minmax(0, 1.15fr); align-items: start; gap: 28px; padding: 24px 28px; }
.legal-workflow li + li { border-top: 1px solid var(--border); }
.legal-workflow-number { font-size: 0.875rem; color: var(--green-700); font-weight: 600; padding-top: 4px; }
.legal-workflow h3 { font-size: 1rem; margin: 0; }
.legal-workflow p { font-size: 0.9375rem; }
.legal-limits { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 40px; padding: 32px; background: #edf2eb; border-left: 3px solid var(--green-700); }
.legal-limits h2 { font-size: 1.5rem; }
.legal-limits ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 28px; align-content: start; margin: 0; padding-left: 20px; }
.legal-limits li { font-size: 0.9375rem; }
.legal-faq-section { padding-top: 0; }
.legal-faq-layout { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 56px; }
.legal-page .answers-item h3 { margin: 0; }
.legal-page .answers-answer p { font-size: 0.9375rem; }
.legal-related { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.legal-related > a { display: flex; flex-direction: column; border-top: 2px solid var(--green-700); border-bottom: 1px solid var(--border); padding: 22px 0; text-decoration: none; }
.legal-related h3 { color: var(--navy-950); }
.legal-related p { font-size: 0.9375rem; }
.legal-related > a > span { padding-top: 18px; margin-top: auto; font-size: 0.8125rem; font-weight: 500; }
.legal-related > a:hover > span { text-decoration: underline; text-underline-offset: 4px; }
.legal-knowledge { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; list-style: none; padding: 0; margin: 0; }
.legal-knowledge li { border-top: 1px solid var(--border-strong); padding-top: 18px; }
.legal-knowledge span { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 10px; }
.legal-knowledge h3 { font-size: 1rem; }
.legal-cta { background: var(--navy-900); }
.legal-cta h2 { max-width: 800px; color: var(--surface); }
.legal-cta .container > p:not(.section-eyebrow) { max-width: 70ch; color: #c5d2dd; margin-bottom: 28px; }
.legal-cta .btn-outline { background: transparent; color: var(--surface); border-color: #91a6b5; }
.legal-cta .btn-outline:hover { background: var(--surface); color: var(--navy-950); }
@media (max-width: 1200px) { .legal-hero-layout { gap: 36px; } .legal-doc-layout, .legal-lawyer, .legal-faq-layout { gap: 40px; } }
@media (max-width: 1024px) { .legal-hero-layout { grid-template-columns: minmax(0, 1fr); gap: 28px; } .legal-hero-note { max-width: 700px; } .legal-hero-note > p br { display: none; } .legal-hero-note > p { margin-block: 12px; } .legal-scope-grid { gap: 28px; } .legal-scope-grid > div + div { padding-left: 28px; } .legal-notice-panels article { padding: 22px; } .legal-limits { grid-template-columns: minmax(0, 1fr); gap: 24px; } }
@media (max-width: 768px) {
    .legal-section { padding: 44px 0; }
    .legal-faq-section { padding-top: 0; }
    .legal-breadcrumb { margin-bottom: 32px; }
    .legal-hero { padding-bottom: 32px; }
    .legal-doc-layout, .legal-lawyer, .legal-scope-grid, .legal-faq-layout, .legal-related, .legal-knowledge, .legal-notice-panels { grid-template-columns: minmax(0, 1fr); gap: 28px; }
    .legal-notice-panels { gap: 0; }
    .legal-notice-panels article + article { border-left: 0; border-top: 1px solid var(--border); }
    .legal-scope-grid > div + div { border-left: 0; border-top: 1px solid #ffffff30; padding: 28px 0 0; }
    .legal-situations > div { grid-template-columns: minmax(0, 1fr); gap: 10px; }
    .legal-workflow li { grid-template-columns: 32px minmax(0, 1fr); gap: 12px 18px; padding: 22px; }
    .legal-workflow p { grid-column: 2; }
    .legal-related { gap: 18px; }
}
@media (max-width: 480px) { .legal-actions { flex-direction: column; } .legal-actions .btn { width: 100%; } .legal-limits { padding: 24px; } .legal-limits ul { grid-template-columns: minmax(0, 1fr); } .legal-document-list { padding: 22px; } }

/* STEP 7D - CIBIL Improvement: credit awareness and habit milestones. */
.credit-page { background: var(--surface); color: var(--navy-950); }
.credit-page h2 { font-size: clamp(1.6rem, 2.7vw, 2.25rem); line-height: 1.3; margin: 0 0 18px; }
.credit-page h3 { font-size: 1.125rem; line-height: 1.5; margin: 0 0 10px; }
.credit-page p, .credit-page li, .credit-page dd { font-size: 1rem; line-height: 1.85; color: var(--text-secondary); }
.credit-page .section-eyebrow { font-size: 0.75rem; line-height: 1.6; color: var(--green-700); margin-bottom: 16px; }
.credit-page a:not(.btn) { color: var(--green-700); text-underline-offset: 4px; }
.credit-hero { padding: 24px 0 44px; background: var(--surface-soft); }
.credit-breadcrumb { margin-bottom: 40px; }
.credit-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px 12px; list-style: none; margin: 0; padding: 0; }
.credit-breadcrumb li { font-size: 0.8125rem; }
.credit-breadcrumb li + li::before { content: '/'; margin-right: 12px; color: var(--text-muted); }
.credit-hero-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr); gap: 48px; align-items: center; }
.credit-hero h1 { font-size: clamp(2.125rem, 3.8vw, 3.5rem); line-height: 1.18; letter-spacing: -0.03em; margin: 0 0 24px; }
.credit-hero-layout > div > p:not(.section-eyebrow) { margin-bottom: 28px; }
.credit-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.credit-actions .btn { width: auto; }
.credit-focus { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); }
.credit-focus h2 { font-size: 1.375rem; }
.credit-focus ul { list-style: none; padding: 0; margin: 0; }
.credit-focus li { padding: 14px 0; border-top: 1px solid var(--border); }
.credit-focus li > span { color: var(--green-700); font-size: 0.8125rem; font-weight: 600; }
.credit-focus li p, .credit-focus .credit-focus-note { font-size: 0.875rem; }
.credit-focus .credit-focus-note { padding-top: 16px; border-top: 1px solid var(--border); }
.credit-banner { position: relative; width: 100%; aspect-ratio: 4.5 / 1; min-height: 150px; max-height: 320px; overflow: hidden; background: linear-gradient(110deg, #102e32, #285346); }
.credit-banner::before, .credit-banner::after { content: ''; position: absolute; width: 62%; aspect-ratio: 1; border-radius: 50%; border: 1px solid #d5e9de30; top: -125%; }
.credit-banner::before { left: -8%; }
.credit-banner::after { right: -8%; }
.credit-banner > div { position: absolute; inset: 16% 18%; border: 1px solid #d5e9de24; border-radius: 16px; background: #ffffff03; }
.credit-banner > span { position: absolute; inset: 30% 30%; border: 1px solid #d5e9de1c; border-radius: 10px; }
.credit-section { padding: 60px 0; }
.credit-soft { background: var(--surface-soft); }
.credit-heading { max-width: 800px; margin-bottom: 32px; }
.credit-explainer { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 64px; }
.credit-page .credit-lead { font-size: 1.1875rem; color: var(--navy-950); margin-bottom: 18px; }
.credit-factor-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.credit-factor-grid article { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); }
.credit-factor-grid article::before { content: ''; display: block; width: 28px; height: 3px; background: var(--green-700); margin-bottom: 22px; }
.credit-factor-grid p, .credit-support p { font-size: 0.9375rem; }
.credit-impact { max-width: 980px; margin-inline: auto; border-left: 3px solid var(--green-700); padding: 8px 0 8px 32px; }
.credit-review-section { background: var(--navy-950); }
.credit-review-layout { display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr); gap: 48px; }
.credit-review-section h2 { color: var(--surface); }
.credit-review-section p { color: #c5d2dd; }
.credit-review-section .section-eyebrow { color: #99d4b8; }
.credit-review-layout .credit-review-note { font-size: 0.875rem; margin-top: 24px; padding-top: 20px; border-top: 1px solid #ffffff30; }
.credit-review { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 0; }
.credit-review > div { padding: 20px; border: 1px solid #ffffff28; background: #ffffff05; border-radius: var(--radius-sm); }
.credit-review dt { color: var(--surface); font-size: 0.9375rem; font-weight: 500; margin-bottom: 8px; }
.credit-review dd { margin: 0; color: #c5d2dd; font-size: 0.875rem; }
.credit-roadmap { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; list-style: none; margin: 0; padding: 0; }
.credit-roadmap li { position: relative; padding: 0 22px 0 0; }
.credit-roadmap li:last-child { padding-right: 0; }
.credit-roadmap li:not(:last-child)::before { content: ''; position: absolute; left: 22px; right: 0; top: 22px; height: 2px; background: var(--border-strong); }
.credit-milestone { position: relative; display: grid; place-items: center; width: 46px; height: 46px; border: 2px solid var(--green-700); border-radius: 50%; background: var(--surface); color: var(--green-700); font-size: 0.875rem; font-weight: 600; margin-bottom: 24px; }
.credit-roadmap h3 { font-size: 1rem; }
.credit-roadmap p { font-size: 0.875rem; }
.credit-habits { background: #edf2eb; }
.credit-habits-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; align-items: start; }
.credit-habits-layout ul { padding-left: 20px; margin: 22px 0 0; }
.credit-habits-layout li { padding-left: 4px; margin-bottom: 12px; font-size: 0.9375rem; }
.credit-monitor { padding: 30px; border: 1px solid var(--border-strong); border-radius: var(--radius-md); background: var(--surface); }
.credit-monitor h2 { font-size: 1.5rem; }
.credit-monitor p { font-size: 0.9375rem; }
.credit-monitor p + p { margin-top: 18px; }
.credit-review-cycle { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 20px; margin-top: 22px; border-top: 1px solid var(--border); color: var(--green-700); font-size: 0.8125rem; font-weight: 500; }
.credit-support { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.credit-support article { padding-top: 20px; border-top: 1px solid var(--border-strong); }
.credit-limits { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 40px; padding: 28px; margin-top: 36px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); background: var(--surface-soft); }
.credit-limits h2 { font-size: 1.5rem; }
.credit-limits p, .credit-limits li { font-size: 0.875rem; }
.credit-limits ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; align-content: start; padding-left: 20px; margin: 0; }
.credit-faq { max-width: 920px; }
.credit-page .answers-item h3 { margin: 0; }
.credit-page .answers-answer p { font-size: 0.9375rem; }
.credit-related { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.credit-related > a { display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-md); text-decoration: none; }
.credit-related h3 { color: var(--navy-950); }
.credit-related p { font-size: 0.9375rem; }
.credit-related > a > span { padding-top: 20px; margin-top: auto; font-size: 0.8125rem; font-weight: 500; }
.credit-related > a:hover { border-color: var(--green-700); }
.credit-related > a:hover > span { text-decoration: underline; text-underline-offset: 4px; }
.credit-knowledge { list-style: none; padding: 0; margin: 0; }
.credit-knowledge li { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0; border-top: 1px solid var(--border); }
.credit-knowledge li:last-child { border-bottom: 1px solid var(--border); }
.credit-knowledge h3 { font-size: 1rem; margin: 0; }
.credit-knowledge span { font-size: 0.75rem; color: var(--text-muted); flex-shrink: 0; }
.credit-cta { background: var(--navy-900); }
.credit-cta h2 { color: var(--surface); max-width: 820px; }
.credit-cta .section-eyebrow { color: #99d4b8; }
.credit-cta .container > p:not(.section-eyebrow) { color: #c5d2dd; max-width: 70ch; margin-bottom: 28px; }
.credit-cta .btn-outline { color: var(--surface); border-color: #91a6b5; background: transparent; }
.credit-cta .btn-outline:hover { background: var(--surface); color: var(--navy-950); }
@media (max-width: 1200px) { .credit-hero-layout { gap: 32px; } .credit-explainer, .credit-habits-layout, .credit-review-layout { gap: 36px; } .credit-roadmap li { padding-right: 16px; } }
@media (max-width: 1024px) { .credit-hero-layout { grid-template-columns: minmax(0, 1fr); } .credit-focus ul { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } .credit-factor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .credit-review-layout, .credit-limits { grid-template-columns: minmax(0, 1fr); gap: 28px; } .credit-roadmap { grid-template-columns: minmax(0, 1fr); } .credit-roadmap li { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 8px 22px; padding: 0 0 26px; } .credit-milestone { grid-row: 1 / 3; margin: 0; } .credit-roadmap p { grid-column: 2; } .credit-roadmap h3 { margin: 0; } .credit-roadmap li:not(:last-child)::before { top: 22px; bottom: 0; left: 22px; right: auto; width: 2px; height: auto; } .credit-roadmap li:last-child { padding-bottom: 0; } }
@media (max-width: 768px) {
    .credit-section { padding: 44px 0; }
    .credit-hero { padding-bottom: 32px; }
    .credit-breadcrumb { margin-bottom: 32px; }
    .credit-explainer, .credit-habits-layout, .credit-support, .credit-related { grid-template-columns: minmax(0, 1fr); gap: 28px; }
    .credit-focus ul { grid-template-columns: minmax(0, 1fr); gap: 0; }
    .credit-impact { padding-left: 24px; }
}
@media (max-width: 480px) { .credit-actions { flex-direction: column; } .credit-actions .btn { width: 100%; } .credit-factor-grid, .credit-review, .credit-limits ul { grid-template-columns: minmax(0, 1fr); } .credit-focus, .credit-monitor, .credit-limits { padding: 22px; } .credit-knowledge li { flex-direction: column; align-items: flex-start; gap: 8px; } }

/* STEP 7E - Debt Planning: obligation review and grouped planning board. */
.debt-page { background: var(--surface); color: var(--navy-950); }
.debt-page h2 { font-size: clamp(1.6rem, 2.7vw, 2.25rem); line-height: 1.3; margin: 0 0 18px; }
.debt-page h3 { font-size: 1.125rem; line-height: 1.5; margin: 0 0 10px; }
.debt-page p, .debt-page li, .debt-page dd { font-size: 1rem; line-height: 1.85; color: var(--text-secondary); }
.debt-page .section-eyebrow { font-size: 0.75rem; line-height: 1.6; color: var(--green-700); margin-bottom: 16px; }
.debt-page a:not(.btn) { color: var(--green-700); text-underline-offset: 4px; }
.debt-hero { padding: 24px 0 0; background: var(--surface-soft); }
.debt-breadcrumb { margin-bottom: 40px; }
.debt-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px 12px; list-style: none; padding: 0; margin: 0; }
.debt-breadcrumb li { font-size: 0.8125rem; }
.debt-breadcrumb li + li::before { content: '/'; margin-right: 12px; color: var(--text-muted); }
.debt-hero h1 { max-width: 920px; font-size: clamp(2.125rem, 4.2vw, 3.75rem); line-height: 1.18; letter-spacing: -0.03em; margin: 0 0 28px; }
.debt-hero-bottom { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.debt-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.debt-actions .btn { width: auto; }
.debt-hero-topics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; padding: 20px 0; margin-top: 36px; border-top: 1px solid var(--border-strong); font-size: 0.8125rem; color: var(--text-secondary); }
.debt-banner { position: relative; width: 100%; aspect-ratio: 4.5 / 1; min-height: 150px; max-height: 320px; overflow: hidden; background: linear-gradient(110deg, #102a32, #304d47); }
.debt-banner::before { content: ''; position: absolute; inset: 18% 10%; border: 1px solid #cfe0d530; }
.debt-banner::after { content: ''; position: absolute; inset: 0 36%; border-inline: 1px solid #cfe0d524; background: #ffffff03; transform: skewX(-15deg); }
.debt-banner > div { position: absolute; inset: 30% 22%; border: 1px solid #cfe0d526; }
.debt-banner > span { position: absolute; inset: 0 16%; border-inline: 1px solid #cfe0d518; }
.debt-section { padding: 60px 0; }
.debt-soft { background: var(--surface-soft); }
.debt-heading { max-width: 820px; margin-bottom: 32px; }
.debt-overview { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 64px; }
.debt-page .debt-lead { font-size: 1.1875rem; color: var(--navy-950); margin-bottom: 18px; }
.debt-obligations { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 0; }
.debt-obligations > div { padding: 24px; border: 1px solid var(--border); border-left: 3px solid var(--green-700); background: var(--surface); border-radius: var(--radius-sm); }
.debt-obligations dt { font-weight: 500; font-size: 1rem; margin-bottom: 10px; }
.debt-obligations dd { font-size: 0.9375rem; margin: 0; }
.debt-cashflow { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); border: 1px solid var(--border-strong); }
.debt-cashflow article { padding: 28px; }
.debt-income { background: var(--navy-950); }
.debt-income h3 { color: var(--surface); }
.debt-income p { color: #c5d2dd; }
.debt-label { display: block; font-size: 0.6875rem; letter-spacing: 0.1em; font-weight: 600; color: var(--green-700); margin-bottom: 16px; }
.debt-income .debt-label { color: #99d4b8; }
.debt-expenses { background: var(--surface-soft); }
.debt-expenses ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 24px; padding-left: 20px; margin: 16px 0 0; }
.debt-expenses li { font-size: 0.9375rem; }
.debt-commitments { grid-column: 1 / -1; border-top: 1px solid var(--border); }
.debt-cashflow p { font-size: 0.9375rem; }
.debt-priorities { background: #edf2eb; }
.debt-priority-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 64px; align-items: start; }
.debt-priority-layout ul { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--border-strong); }
.debt-priority-layout li { padding: 14px 0; border-bottom: 1px solid var(--border-strong); }
.debt-board { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; padding: 24px; background: var(--surface-muted); border: 1px solid var(--border); border-radius: var(--radius-md); }
.debt-board-column { padding: 0; min-width: 0; }
.debt-board-column > h3 { font-size: 0.875rem; color: var(--green-700); border-bottom: 1px solid var(--border-strong); padding-bottom: 14px; margin-bottom: 18px; }
.debt-board-column ol { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.debt-board-column li { padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); }
.debt-step { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--green-700); margin-bottom: 16px; }
.debt-board h4 { font-size: 1rem; line-height: 1.5; margin: 0 0 12px; color: var(--navy-950); }
.debt-board li p { font-size: 0.9375rem; }
.debt-board-review li { border-top: 3px solid var(--green-700); }
.debt-board .debt-board-note { padding: 20px 4px 0; font-size: 0.875rem; }
.debt-tracking { background: var(--navy-950); }
.debt-tracking h2 { color: var(--surface); }
.debt-tracking p, .debt-tracking dd { color: #c5d2dd; }
.debt-tracking .section-eyebrow { color: #99d4b8; }
.debt-tracking-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; }
.debt-tracking dl { margin: 0; }
.debt-tracking dl > div { border-top: 1px solid #ffffff30; padding: 18px 0; }
.debt-tracking dt { color: var(--surface); font-weight: 500; margin-bottom: 8px; }
.debt-tracking dd { font-size: 0.9375rem; margin: 0; }
.debt-support { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.debt-support article { padding-top: 20px; border-top: 1px solid var(--border-strong); }
.debt-support p { font-size: 0.9375rem; }
.debt-limits { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 40px; margin-top: 36px; padding: 28px; background: var(--surface-soft); border: 1px solid var(--border-strong); border-radius: var(--radius-sm); }
.debt-limits h2 { font-size: 1.5rem; }
.debt-limits ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; align-content: start; padding-left: 20px; margin: 0; }
.debt-limits li { font-size: 0.875rem; }
.debt-faq { max-width: 920px; }
.debt-page .answers-item h3 { margin: 0; }
.debt-page .answers-answer p { font-size: 0.9375rem; }
.debt-related { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.debt-related > a { display: flex; flex-direction: column; padding: 22px 0; border-top: 2px solid var(--green-700); border-bottom: 1px solid var(--border); text-decoration: none; }
.debt-related h3 { color: var(--navy-950); }
.debt-related p { font-size: 0.9375rem; }
.debt-related > a > span { padding-top: 18px; margin-top: auto; font-size: 0.8125rem; font-weight: 500; }
.debt-related a:hover > span { text-decoration: underline; text-underline-offset: 4px; }
.debt-knowledge { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; list-style: none; padding: 0; margin: 0; }
.debt-knowledge li { padding-top: 20px; border-top: 1px solid var(--border-strong); }
.debt-knowledge span { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 10px; }
.debt-knowledge h3 { font-size: 1rem; }
.debt-cta { background: var(--navy-900); }
.debt-cta h2 { max-width: 820px; color: var(--surface); }
.debt-cta .section-eyebrow { color: #99d4b8; }
.debt-cta .container > p:not(.section-eyebrow) { max-width: 70ch; margin-bottom: 28px; color: #c5d2dd; }
.debt-cta .btn-outline { background: transparent; color: var(--surface); border-color: #91a6b5; }
.debt-cta .btn-outline:hover { background: var(--surface); color: var(--navy-950); }
@media (max-width: 1200px) { .debt-hero-bottom { grid-template-columns: minmax(0, 1fr); gap: 24px; } .debt-hero-bottom > p { max-width: 75ch; } .debt-overview, .debt-priority-layout, .debt-tracking-layout { gap: 40px; } .debt-board { padding: 20px; gap: 14px; } .debt-board-column li { padding: 18px; } }
@media (max-width: 1024px) { .debt-obligations { grid-template-columns: repeat(2, minmax(0, 1fr)); } .debt-limits { grid-template-columns: minmax(0, 1fr); gap: 24px; } }
@media (max-width: 768px) {
    .debt-section { padding: 44px 0; }
    .debt-breadcrumb { margin-bottom: 32px; }
    .debt-overview, .debt-cashflow, .debt-priority-layout, .debt-board, .debt-tracking-layout, .debt-support, .debt-related, .debt-knowledge { grid-template-columns: minmax(0, 1fr); gap: 28px; }
    .debt-cashflow { gap: 0; }
    .debt-board { gap: 32px; }
    .debt-hero-topics { grid-template-columns: minmax(0, 1fr); gap: 8px; }
}
@media (max-width: 480px) { .debt-actions { flex-direction: column; } .debt-actions .btn { width: 100%; } .debt-obligations, .debt-expenses ul, .debt-limits ul { grid-template-columns: minmax(0, 1fr); } .debt-cashflow article, .debt-limits { padding: 22px; } .debt-board { padding: 18px; } }

/* STEP 7F - Financial Guidance: cash-flow categories and editorial stages. */
.guidance-page { background: var(--surface); color: var(--navy-950); }
.guidance-page h2 { font-size: clamp(1.6rem, 2.7vw, 2.25rem); line-height: 1.3; margin: 0 0 18px; }
.guidance-page h3 { font-size: 1.125rem; line-height: 1.5; margin: 0 0 10px; }
.guidance-page p, .guidance-page li { font-size: 1rem; line-height: 1.85; color: var(--text-secondary); }
.guidance-page .section-eyebrow { font-size: 0.75rem; line-height: 1.6; color: var(--green-700); margin-bottom: 16px; }
.guidance-page a:not(.btn) { color: var(--green-700); text-underline-offset: 4px; }
.guidance-hero { padding: 24px 0 0; background: #f3f6f1; }
.guidance-breadcrumb { margin-bottom: 40px; }
.guidance-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px 12px; list-style: none; margin: 0; padding: 0; }
.guidance-breadcrumb li { font-size: 0.8125rem; }
.guidance-breadcrumb li + li::before { content: '/'; margin-right: 12px; color: var(--text-muted); }
.guidance-hero-copy { max-width: 980px; margin-inline: auto; text-align: center; }
.guidance-hero h1 { font-size: clamp(2.125rem, 4.2vw, 3.75rem); line-height: 1.18; letter-spacing: -0.03em; margin: 0 0 24px; }
.guidance-hero-copy > p:not(.section-eyebrow) { max-width: 72ch; margin: 0 auto 28px; }
.guidance-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.guidance-hero .guidance-actions { justify-content: center; }
.guidance-actions .btn { width: auto; }
.guidance-hero .guidance-hero-note { border-top: 1px solid var(--border-strong); padding: 20px 0; margin-top: 36px; text-align: center; font-size: 0.8125rem; }
.guidance-banner { position: relative; width: 100%; aspect-ratio: 4.5 / 1; min-height: 150px; max-height: 320px; overflow: hidden; background: linear-gradient(105deg, #183533, #466452); }
.guidance-banner::before, .guidance-banner::after { content: ''; position: absolute; width: 65%; height: 220%; top: -80%; border: 1px solid #e1edde28; border-radius: 50%; }
.guidance-banner::before { left: -10%; transform: rotate(-20deg); }
.guidance-banner::after { right: -10%; transform: rotate(20deg); }
.guidance-banner > div { position: absolute; inset: 15% 20%; border: 1px solid #e1edde25; border-radius: 50%; background: #ffffff03; }
.guidance-banner > span { position: absolute; inset: 30% 30%; border-block: 1px solid #e1edde20; }
.guidance-section { padding: 60px 0; }
.guidance-soft { background: var(--surface-soft); }
.guidance-heading { max-width: 830px; margin-bottom: 32px; }
.guidance-position, .guidance-future { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 64px; align-items: start; }
.guidance-position p + p { margin-top: 18px; }
.guidance-position ul, .guidance-future ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; margin: 0; padding: 0; list-style: none; }
.guidance-position li, .guidance-future li { padding: 14px 0; border-top: 1px solid var(--border-strong); font-size: 0.9375rem; }
.guidance-budget { background: var(--navy-950); }
.guidance-budget .container { max-width: 940px; }
.guidance-budget h2 { color: var(--surface); }
.guidance-budget .section-eyebrow { color: #99d4b8; }
.guidance-budget p { color: #c5d2dd; }
.guidance-budget .guidance-lead { font-size: 1.25rem; color: var(--surface); margin-bottom: 20px; }
.guidance-cashflow { display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.5fr) minmax(0, 0.75fr); border: 1px solid var(--border-strong); border-radius: var(--radius-md); overflow: hidden; }
.guidance-inflow, .guidance-flexibility { display: grid; place-items: center; padding: 28px; font-size: 1.0625rem; line-height: 1.6; font-weight: 500; text-align: center; background: var(--green-100); }
.guidance-outflow { display: grid; background: var(--surface-soft); border-inline: 1px solid var(--border-strong); }
.guidance-outflow span { padding: 22px 28px; text-align: center; font-size: 0.9375rem; color: var(--text-secondary); }
.guidance-outflow span + span { border-top: 1px solid var(--border); }
.guidance-flexibility { background: var(--surface); }
.guidance-priorities { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; }
.guidance-priorities p + p { margin-top: 18px; }
.guidance-priority-panels { display: grid; gap: 16px; }
.guidance-priority-panels article { border-left: 3px solid var(--green-700); padding: 18px 22px; background: var(--surface); }
.guidance-priority-panels p { font-size: 0.9375rem; }
.guidance-page .guidance-small { font-size: 0.875rem; margin-top: 20px; }
.guidance-journey { background: #edf2eb; }
.guidance-stage { display: grid; grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr); gap: 40px; border-top: 1px solid var(--border-strong); padding: 30px 0; }
.guidance-stage:last-child { padding-bottom: 0; }
.guidance-stage > h3 { color: var(--green-700); font-size: 1.25rem; }
.guidance-stage ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; list-style: none; padding: 0; margin: 0; }
.guidance-stage li { display: flex; align-items: start; gap: 16px; }
.guidance-step { color: var(--green-700); font-weight: 600; font-size: 0.8125rem; flex-shrink: 0; padding-top: 3px; }
.guidance-stage h4 { font-size: 1rem; line-height: 1.5; color: var(--navy-950); margin: 0 0 12px; }
.guidance-stage p { font-size: 0.9375rem; }
.guidance-support { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.guidance-support article { border-top: 1px solid var(--border-strong); padding-top: 20px; }
.guidance-support p { font-size: 0.9375rem; }
.guidance-limits { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 40px; margin-top: 36px; padding: 28px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); background: var(--surface-soft); }
.guidance-limits h2 { font-size: 1.5rem; }
.guidance-limits ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; align-content: start; padding-left: 20px; margin: 0; }
.guidance-limits li { font-size: 0.875rem; }
.guidance-faq { max-width: 920px; }
.guidance-page .answers-item h3 { margin: 0; }
.guidance-page .answers-answer p { font-size: 0.9375rem; }
.guidance-related { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.guidance-related > a { display: flex; flex-direction: column; padding: 22px 0; border-top: 2px solid var(--green-700); border-bottom: 1px solid var(--border); text-decoration: none; }
.guidance-related h3 { color: var(--navy-950); }
.guidance-related p { font-size: 0.9375rem; }
.guidance-related > a > span { padding-top: 18px; margin-top: auto; font-size: 0.8125rem; font-weight: 500; }
.guidance-related a:hover > span { text-decoration: underline; text-underline-offset: 4px; }
.guidance-knowledge { list-style: none; padding: 0; margin: 0; }
.guidance-knowledge li { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0; border-top: 1px solid var(--border); }
.guidance-knowledge li:last-child { border-bottom: 1px solid var(--border); }
.guidance-knowledge h3 { font-size: 1rem; margin: 0; }
.guidance-knowledge span { font-size: 0.75rem; color: var(--text-muted); flex-shrink: 0; }
.guidance-cta { background: var(--navy-900); }
.guidance-cta h2 { max-width: 820px; color: var(--surface); }
.guidance-cta .section-eyebrow { color: #99d4b8; }
.guidance-cta .container > p:not(.section-eyebrow) { max-width: 70ch; color: #c5d2dd; margin-bottom: 28px; }
.guidance-cta .btn-outline { background: transparent; color: var(--surface); border-color: #91a6b5; }
.guidance-cta .btn-outline:hover { background: var(--surface); color: var(--navy-950); }
@media (max-width: 1200px) { .guidance-position, .guidance-future, .guidance-priorities { gap: 40px; } .guidance-stage { gap: 28px; } .guidance-stage ol { gap: 22px; } }
@media (max-width: 1024px) { .guidance-stage { grid-template-columns: minmax(0, 1fr); gap: 24px; } .guidance-limits { grid-template-columns: minmax(0, 1fr); gap: 24px; } }
@media (max-width: 768px) {
    .guidance-section { padding: 44px 0; }
    .guidance-breadcrumb { margin-bottom: 32px; }
    .guidance-hero-copy { text-align: left; }
    .guidance-hero .guidance-actions { justify-content: flex-start; }
    .guidance-hero .guidance-hero-note { text-align: left; }
    .guidance-position, .guidance-future, .guidance-priorities, .guidance-support, .guidance-related, .guidance-cashflow { grid-template-columns: minmax(0, 1fr); gap: 28px; }
    .guidance-cashflow { gap: 0; }
    .guidance-outflow { border-inline: 0; border-block: 1px solid var(--border-strong); }
    .guidance-stage ol { grid-template-columns: minmax(0, 1fr); gap: 24px; }
}
@media (max-width: 480px) { .guidance-actions { flex-direction: column; } .guidance-actions .btn { width: 100%; } .guidance-position ul, .guidance-future ul, .guidance-limits ul { grid-template-columns: minmax(0, 1fr); } .guidance-limits { padding: 22px; } .guidance-knowledge li { flex-direction: column; align-items: flex-start; gap: 8px; } }

/* STEP 8A - Blog index and reusable future article presentation. */
.blog-page { background: var(--surface); color: var(--navy-950); }
.blog-page h2 { font-size: clamp(1.6rem, 2.7vw, 2.25rem); line-height: 1.3; margin: 0 0 18px; }
.blog-page h3 { font-size: 1.125rem; line-height: 1.5; margin: 0 0 10px; }
.blog-page p, .blog-page li { font-size: 1rem; line-height: 1.85; color: var(--text-secondary); }
.blog-page .section-eyebrow { font-size: 0.75rem; line-height: 1.6; color: var(--green-700); margin-bottom: 16px; }
.blog-hero { padding: 24px 0 52px; background: var(--surface-soft); border-bottom: 1px solid var(--border); }
.blog-breadcrumb { margin-bottom: 40px; }
.blog-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px 12px; list-style: none; padding: 0; margin: 0; }
.blog-breadcrumb li { font-size: 0.8125rem; }
.blog-breadcrumb li + li::before { content: '/'; margin-right: 12px; color: var(--text-muted); }
.blog-breadcrumb a { color: var(--green-700); text-underline-offset: 4px; }
.blog-hero-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.8fr); gap: 64px; align-items: end; }
.blog-hero h1 { font-size: clamp(2.25rem, 4.6vw, 4rem); line-height: 1.14; letter-spacing: -0.035em; margin: 0 0 24px; }
.blog-hero .blog-intro { font-size: 1.125rem; max-width: 62ch; }
.blog-hero-note { padding-left: 28px; border-left: 2px solid var(--green-700); }
.blog-hero-note p { font-size: 0.9375rem; }
.blog-hero-note span { display: block; margin-top: 20px; color: var(--green-700); font-size: 0.8125rem; }
.blog-section { padding: 56px 0; }
.blog-heading { max-width: 800px; margin-bottom: 28px; }
.blog-category-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 24px; }
.blog-category-grid article { border-top: 1px solid var(--border-strong); padding-top: 20px; }
.blog-category-grid svg { color: var(--green-700); margin-bottom: 18px; }
.blog-category-grid h3 { font-size: 1rem; }
.blog-category-grid p { font-size: 0.875rem; }
.blog-posts-section { background: var(--surface-soft); }
.blog-posts-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 32px; }
.blog-posts-heading h2 { margin-bottom: 0; }
.blog-posts-heading > p { max-width: 32ch; font-size: 0.875rem; }
.blog-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.blog-card { min-width: 0; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.blog-card-visual, .blog-card-image { position: relative; display: block; width: 100%; aspect-ratio: 16 / 7; object-fit: cover; overflow: hidden; background: var(--navy-900); }
.blog-card-visual::before, .blog-card-visual::after { content: ''; position: absolute; border: 1px solid #ffffff25; }
.blog-card-visual::before { inset: 18% 14%; }
.blog-card-visual::after { inset: -35% 38%; transform: rotate(30deg); }
.blog-card-visual > span { position: absolute; inset: 30% 25%; border: 1px solid #ffffff15; }
.blog-card-visual-1 { background: #214b41; }
.blog-card-visual-1::before { border-radius: 50%; inset: -20% 10%; }
.blog-card-visual-2 { background: #405764; }
.blog-card-visual-2::after { transform: rotate(-30deg); }
.blog-card-content { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.blog-page .blog-card-category, .blog-article-category { color: var(--green-700); font-size: 0.6875rem; line-height: 1.6; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.blog-card h3 { font-size: 1.125rem; line-height: 1.5; }
.blog-page .blog-card-description { font-size: 0.875rem; margin-bottom: 20px; }
.blog-coming-soon { align-self: flex-start; margin-top: auto; padding: 5px 10px; border-radius: var(--radius-sm); background: var(--surface-muted); color: var(--text-secondary); font-size: 0.75rem; }
.blog-card-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 0.75rem; line-height: 1.7; color: var(--text-muted); margin-block: 16px; }
.blog-card-byline, .blog-card-reading-time { font-size: 0.75rem; line-height: 1.7; color: var(--text-muted); }
.blog-card-link { display: inline-block; align-self: flex-start; margin-top: auto; padding-block: 10px; color: var(--green-700); font-weight: 500; text-underline-offset: 4px; }
.blog-editorial { background: var(--navy-950); }
.blog-editorial-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; }
.blog-editorial h2 { color: var(--surface); }
.blog-editorial p, .blog-editorial li { color: #c5d2dd; }
.blog-editorial .section-eyebrow { color: #99d4b8; }
.blog-editorial ul { margin: 0; padding-left: 20px; }
.blog-editorial li { font-size: 0.9375rem; margin-bottom: 14px; padding-left: 4px; }
.blog-disclaimer { border-left: 3px solid var(--green-700); background: var(--surface-soft); padding: 26px 28px; }
.blog-disclaimer h2 { font-size: 1.25rem; }
.blog-disclaimer p { font-size: 0.9375rem; }
.blog-services { margin-top: 48px; }
.blog-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; }
.blog-service-grid a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border-top: 1px solid var(--border); color: var(--green-700); text-decoration: none; font-size: 1rem; }
.blog-service-grid svg { flex-shrink: 0; }
.blog-service-grid a:hover span { text-decoration: underline; text-underline-offset: 4px; }
.blog-cta { background: var(--navy-900); }
.blog-cta > .container { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 40px; align-items: center; }
.blog-cta h2 { color: var(--surface); }
.blog-cta p { color: #c5d2dd; }
.blog-cta .section-eyebrow { color: #99d4b8; }
.blog-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.blog-actions .btn { width: auto; }
.blog-cta .btn-outline { color: var(--surface); border-color: #91a6b5; background: transparent; }
.blog-cta .btn-outline:hover { color: var(--navy-950); background: var(--surface); }

/* Future Blog article components. No article pages or publication metadata yet. */
.blog-article { color: var(--navy-950); background: var(--surface); }
.blog-article-header { max-width: 960px; margin-inline: auto; padding-block: 48px 32px; }
.blog-article-header h1 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.2; margin-bottom: 24px; }
.blog-article-summary { font-size: 1.1875rem; line-height: 1.8; color: var(--text-secondary); }
.blog-article-meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-block: 24px; font-size: 0.875rem; line-height: 1.7; color: var(--text-muted); }
.blog-article-meta dt { font-weight: 500; color: var(--text-secondary); }
.blog-article-meta dd { margin: 0; }
.blog-article-image { display: block; width: 100%; height: auto; border-radius: var(--radius-md); }
.blog-article-layout { display: grid; grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1.8fr); gap: 56px; align-items: start; padding-block: 40px 56px; }
.blog-article-toc { position: sticky; top: 100px; border-top: 2px solid var(--green-700); padding-top: 20px; }
.blog-article-toc h2 { font-size: 1rem; margin-bottom: 16px; }
.blog-article-toc ol { margin: 0; padding-left: 20px; }
.blog-article-toc a { display: inline-block; padding-block: 8px; font-size: 0.875rem; line-height: 1.6; }
.blog-article-body { min-width: 0; max-width: 76ch; overflow-wrap: anywhere; }
.blog-article-body h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.4; margin: 36px 0 18px; scroll-margin-top: 110px; }
.blog-article-body h3 { font-size: 1.25rem; line-height: 1.5; margin: 28px 0 14px; }
.blog-article-body p, .blog-article-body li { font-size: 1rem; line-height: 1.85; color: var(--text-secondary); }
.blog-article-body p + p { margin-top: 18px; }
.blog-article-body ul, .blog-article-body ol { padding-left: 24px; margin-block: 18px; }
.blog-article a { color: var(--green-700); text-underline-offset: 4px; }
.blog-article-takeaways { padding: 24px; background: var(--green-100); border-left: 3px solid var(--green-700); margin-block: 28px; }
.blog-article-takeaways h2 { margin-top: 0; }
.blog-article-faq { margin-block: 36px; }
.blog-article-faq .answers-item h3 { margin: 0; }
.blog-article-faq [hidden] { display: none; }
.blog-article-references { border-top: 1px solid var(--border-strong); margin-top: 36px; padding-top: 20px; overflow-wrap: anywhere; }
.blog-article-references li { font-size: 0.875rem; margin-bottom: 12px; }
.blog-article-related-services, .blog-article-related-posts { margin-block: 40px; }
.blog-article-related-services ul { display: grid; gap: 12px; padding-left: 20px; }
.blog-article-related-posts .blog-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.blog-article-cta { padding: 28px; background: var(--surface-soft); border: 1px solid var(--border); margin-block: 36px; }
.blog-article-cta h2 { margin-top: 0; }
.blog-article-cta .blog-actions { margin-top: 20px; }
.blog-article-cta a.btn-primary { color: var(--surface); }
@media (max-width: 1200px) { .blog-hero-layout, .blog-editorial-layout { gap: 40px; } .blog-category-grid { gap: 18px; } .blog-card-content { padding: 20px; } }
@media (max-width: 1024px) { .blog-hero-layout, .blog-cta > .container { grid-template-columns: minmax(0, 1fr); gap: 28px; } .blog-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; } .blog-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .blog-article-layout { grid-template-columns: minmax(0, 1fr); gap: 32px; } .blog-article-toc { position: static; } }
@media (max-width: 768px) { .blog-section { padding: 44px 0; } .blog-hero { padding-bottom: 36px; } .blog-breadcrumb { margin-bottom: 32px; } .blog-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .blog-editorial-layout, .blog-service-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; } .blog-service-grid { gap: 0; } .blog-posts-heading { flex-direction: column; align-items: flex-start; gap: 18px; } .blog-posts-heading > p { max-width: none; } .blog-article-header { padding-top: 32px; } }
@media (max-width: 480px) { .blog-category-grid, .blog-post-grid, .blog-article-related-posts .blog-post-grid { grid-template-columns: minmax(0, 1fr); } .blog-category-grid article { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 0 16px; } .blog-category-grid p { grid-column: 2; } .blog-category-grid svg { grid-row: 1 / 3; } .blog-actions { flex-direction: column; } .blog-actions .btn { width: 100%; } .blog-disclaimer, .blog-article-takeaways, .blog-article-cta { padding: 22px; } }

/* STEP 8C - Additional reusable article components; existing layouts reused. */
.article-template-notice { margin-top: 24px; padding: 14px 18px; border: 1px dashed var(--border-strong); background: var(--surface-soft); font-size: 0.875rem; line-height: 1.7; color: var(--text-secondary); }
.blog-article-body section[id], .blog-article-body details { scroll-margin-top: 110px; }
.article-quick-answer { padding: 26px; background: var(--surface-soft); border-top: 3px solid var(--green-700); border-radius: var(--radius-sm); }
.article-quick-answer h2 { margin-top: 0; }
.article-definition { border-left: 3px solid var(--green-700); padding: 18px 22px; margin: 22px 0; background: var(--surface-soft); }
.article-definition dt { font-weight: 600; margin-bottom: 8px; }
.article-definition dd { margin: 0; font-size: 1rem; line-height: 1.85; color: var(--text-secondary); }
.article-callout, .article-example, .article-caution { padding: 22px; margin-block: 24px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); }
.article-callout { border-left: 3px solid var(--green-700); }
.article-example { background: var(--surface-soft); }
.article-caution { background: #f4f2ea; border-left: 3px solid #827449; }
.article-callout h3, .article-example h3, .article-caution h3 { margin-top: 0; }
.article-table-scroll { max-width: 100%; overflow-x: auto; margin-block: 24px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); }
.article-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 0.9375rem; line-height: 1.7; text-align: left; }
.article-table caption { text-align: left; font-weight: 500; padding: 16px; background: var(--surface-soft); color: var(--navy-950); }
.article-table th, .article-table td { padding: 16px; vertical-align: top; border-top: 1px solid var(--border); }
.article-table th { font-weight: 500; color: var(--navy-950); }
.article-table thead { background: var(--green-100); }
.article-table td { color: var(--text-secondary); }
.article-faq-item { border-bottom: 1px solid var(--border); }
.article-faq-item summary { padding: 20px 4px; font-size: 1rem; font-weight: 500; line-height: 1.7; color: var(--navy-950); cursor: pointer; }
.article-faq-item summary::marker { color: var(--green-700); }
.article-faq-item > div { padding: 0 20px 22px; }
.article-placeholder { padding: 20px; border: 1px dashed var(--border-strong); color: var(--text-muted); font-size: 0.9375rem; line-height: 1.8; }
.article-disclaimer { padding-top: 24px; border-top: 1px solid var(--border-strong); margin-top: 36px; }
.article-disclaimer h2 { margin-top: 0; font-size: 1.25rem; }
.article-disclaimer p { font-size: 0.875rem; }
@media (max-width: 480px) { .article-quick-answer, .article-callout, .article-example, .article-caution, .article-definition { padding: 20px; } }
