/* ============================================
   GLOBAL RESET & BASE
   ============================================ */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Inter',sans-serif; background:#ffffff; color:#1e1e1e; line-height:1.6; padding-bottom:70px; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
img { max-width:100%; display:block; }
.container { max-width:1200px; margin:0 auto; padding:0 2rem; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement { background:#d4af37; color:#1e3a5f; text-align:center; padding:0.6rem 1rem; font-size:0.85rem; font-weight:600; letter-spacing:0.3px; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.main-header { background:white; box-shadow:0 2px 20px rgba(0,0,0,0.06); position:sticky; top:0; z-index:1000; padding:0.6rem 0; }
.header-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; }
.logo img { height:50px; width:auto; }
.desktop-nav .nav-list { display:flex; gap:2rem; align-items:center; }
.nav-link { font-weight:500; color:#1e1e1e; transition:color 0.2s; font-size:0.95rem; position:relative; }
.nav-link:hover, .nav-link.active { color:#d4af37; }
.nav-link.active::after { content:''; position:absolute; bottom:-4px; left:0; width:100%; height:2px; background:#d4af37; border-radius:2px; }
.header-actions { display:flex; align-items:center; gap:1.2rem; }
.phone-link { display:flex; align-items:center; gap:0.4rem; font-weight:600; color:#1e3a5f; font-size:0.9rem; }
.phone-link i { color:#d4af37; }
.btn { display:inline-block; padding:0.6rem 1.6rem; border-radius:40px; font-weight:600; font-size:0.9rem; transition:all 0.25s ease; border:none; cursor:pointer; text-align:center; }
.btn-primary { background:#1e3a5f; color:white; }
.btn-primary:hover { background:#152d4a; transform:translateY(-2px); box-shadow:0 8px 20px rgba(30,58,95,0.25); }
.btn-secondary { background:transparent; color:#1e3a5f; border:2px solid #1e3a5f; }
.btn-secondary:hover { background:#1e3a5f; color:white; transform:translateY(-2px); }
.btn-gold { background:#d4af37; color:#1e3a5f; }
.btn-gold:hover { background:#c49a2e; transform:translateY(-2px); box-shadow:0 8px 20px rgba(212,175,55,0.3); }
.mobile-toggle { display:none; flex-direction:column; gap:5px; background:transparent; border:none; cursor:pointer; padding:4px; }
.mobile-toggle .bar { width:26px; height:2.5px; background:#1e3a5f; border-radius:4px; transition:0.3s; }
.mobile-nav { display:none; position:fixed; top:0; left:0; width:100%; height:100vh; background:white; z-index:2000; flex-direction:column; padding:2rem 1.5rem; overflow-y:auto; }
.mobile-nav.open { display:flex; }
.mobile-nav-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:2rem; }
.mobile-close { background:transparent; border:none; font-size:2rem; color:#1e3a5f; cursor:pointer; }
.mobile-nav-menu ul { display:flex; flex-direction:column; gap:1.2rem; }
.mobile-nav-link { font-size:1.3rem; font-weight:600; color:#1e1e1e; padding:0.5rem 0; border-bottom:1px solid #f0ebe4; display:block; }
.mobile-nav-link.active { color:#d4af37; }
.mobile-nav-footer { margin-top:2rem; }
.mobile-nav-footer .btn { width:100%; display:block; }

/* ============================================
   HERO
   ============================================ */
.hero { position:relative; width:100%; min-height:85vh; display:flex; align-items:center; background:linear-gradient(135deg, #f9f7f4 0%, #ece7e0 100%); overflow:hidden; padding:4rem 0; }
.hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.hero-badge { display:inline-block; background:#d4af37; color:#1e3a5f; padding:0.3rem 1.2rem; border-radius:40px; font-size:0.8rem; font-weight:600; letter-spacing:0.5px; text-transform:uppercase; margin-bottom:1.2rem; }
.hero h1 { font-family:'Poppins',sans-serif; font-size:3.4rem; font-weight:700; line-height:1.15; color:#1e3a5f; margin-bottom:1.2rem; }
.hero h1 span { color:#d4af37; }
.hero p { font-size:1.1rem; color:#4a4a4a; max-width:500px; margin-bottom:2rem; }
.hero-buttons { display:flex; gap:1rem; flex-wrap:wrap; }
.hero-image img { width:100%; max-width:550px; border-radius:24px; box-shadow:0 30px 60px rgba(0,0,0,0.12); object-fit:cover; }
.hero-stats { display:flex; gap:3rem; margin-top:2.5rem; }
.hero-stats .stat h3 { font-size:2rem; font-weight:700; color:#1e3a5f; }
.hero-stats .stat p { font-size:0.85rem; color:#666; margin:0; }

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title { text-align:center; margin-bottom:3rem; }
.section-title h2 { font-family:'Poppins',sans-serif; font-size:2.4rem; font-weight:700; color:#1e3a5f; }
.section-title h2 span { color:#d4af37; }
.section-title p { color:#666; max-width:600px; margin:0.5rem auto 0; font-size:1rem; }

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid-home, .products-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(260px,1fr)); gap:2rem; padding:2rem 0 4rem; }
.product-card-home, .product-card { background:white; border-radius:20px; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,0.05); transition:transform 0.25s ease, box-shadow 0.25s ease; border:1px solid #f0ebe4; position:relative; }
.product-card-home:hover, .product-card:hover { transform:translateY(-6px); box-shadow:0 12px 40px rgba(0,0,0,0.08); }
.product-badge { position:absolute; top:12px; right:12px; background:#d4af37; color:#1e3a5f; padding:0.2rem 0.8rem; border-radius:40px; font-size:0.65rem; font-weight:700; text-transform:uppercase; z-index:2; }
.product-image { height:200px; background:#f0ebe4; display:flex; align-items:center; justify-content:center; font-size:3rem; color:#1e3a5f; }
.product-content, .product-body { padding:1.4rem 1.2rem 1.6rem; }
.product-content h3, .product-body h4 { font-size:1.2rem; color:#1e3a5f; margin-bottom:0.1rem; }
.product-content h4 { font-size:0.9rem; color:#d4af37; font-weight:500; margin-bottom:0.5rem; }
.product-description { font-size:0.85rem; color:#666; margin-bottom:0.8rem; }
.product-features { display:flex; flex-wrap:wrap; gap:0.5rem; margin-bottom:0.8rem; }
.product-features span { background:#f0ebe4; padding:0.2rem 0.6rem; border-radius:40px; font-size:0.7rem; font-weight:500; color:#1e3a5f; }
.product-features span i { color:#d4af37; margin-right:0.3rem; }
.product-price { display:flex; align-items:center; gap:1rem; margin-bottom:1rem; }
.product-price .old-price { text-decoration:line-through; color:#999; font-size:0.85rem; }
.product-price .new-price { font-size:1.2rem; font-weight:700; color:#1e3a5f; }
.product-price .save-badge { background:#e8f5e9; color:#2e7d32; padding:0.1rem 0.6rem; border-radius:40px; font-size:0.7rem; font-weight:600; }
.get-quote-btn { display:inline-block; background:#25D366; color:white; padding:0.5rem 1.2rem; border-radius:40px; font-weight:600; font-size:0.85rem; transition:0.2s; border:none; cursor:pointer; }
.get-quote-btn i { margin-right:0.4rem; }
.get-quote-btn:hover { background:#128C7E; transform:translateY(-2px); }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid, .services-full-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(220px,1fr)); gap:2rem; }
.service-item, .service-full-card { text-align:center; padding:2rem 1.5rem; border-radius:20px; background:#f9f7f4; transition:0.25s ease; border:1px solid transparent; }
.service-item:hover, .service-full-card:hover { border-color:#d4af37; transform:translateY(-4px); box-shadow:0 8px 30px rgba(0,0,0,0.05); }
.service-item .icon, .service-full-card .icon { font-size:2.6rem; color:#d4af37; margin-bottom:1rem; }
.service-item h4, .service-full-card h4 { font-size:1.1rem; color:#1e3a5f; margin-bottom:0.3rem; }
.service-item p, .service-full-card p { font-size:0.85rem; color:#666; }

/* ============================================
   ABOUT / PROJECTS / BLOG
   ============================================ */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.about-grid h2 { font-family:'Poppins',sans-serif; font-size:2.2rem; color:#1e3a5f; margin-bottom:1rem; }
.about-grid h2 span { color:#d4af37; }
.about-grid p { color:#4a4a4a; margin-bottom:1rem; }
.about-image { background:#f0ebe4; border-radius:24px; display:flex; align-items:center; justify-content:center; min-height:300px; font-size:4rem; color:#1e3a5f; position:relative; }
.projects-grid, .blog-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px,1fr)); gap:2rem; }
.project-card, .blog-card { border-radius:20px; overflow:hidden; background:white; box-shadow:0 4px 20px rgba(0,0,0,0.05); border:1px solid #f0ebe4; transition:0.25s ease; }
.project-card:hover, .blog-card:hover { transform:translateY(-6px); box-shadow:0 12px 40px rgba(0,0,0,0.08); }
.project-img, .blog-img { height:200px; background:#f0ebe4; display:flex; align-items:center; justify-content:center; font-size:3rem; color:#1e3a5f; }
.project-body, .blog-body { padding:1.4rem 1.2rem 1.6rem; }
.tag { display:inline-block; background:#d4af37; color:#1e3a5f; padding:0.2rem 0.8rem; border-radius:40px; font-size:0.7rem; font-weight:700; text-transform:uppercase; margin-bottom:0.5rem; }
.meta { font-size:0.75rem; color:#999; margin-bottom:0.3rem; }
.meta i { color:#d4af37; }
.read-more { display:inline-block; margin-top:0.8rem; font-weight:600; color:#d4af37; font-size:0.85rem; }
.read-more:hover { color:#c49a2e; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; }
.contact-info-item { display:flex; gap:1.2rem; margin-bottom:1.8rem; }
.contact-info-item .icon { width:50px; height:50px; background:#f0ebe4; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#d4af37; font-size:1.2rem; flex-shrink:0; }
.contact-info-item h4 { color:#1e3a5f; font-weight:600; margin-bottom:0.2rem; }
.contact-info-item p, .contact-info-item a { color:#4a4a4a; font-size:0.95rem; }
.contact-info-item a:hover { color:#d4af37; }
.contact-form label { display:block; font-weight:600; color:#1e3a5f; margin-bottom:0.3rem; font-size:0.9rem; }
.contact-form input, .contact-form textarea, .contact-form select { width:100%; padding:0.8rem 1rem; border:1px solid #d4cbbc; border-radius:12px; font-family:'Inter',sans-serif; font-size:0.95rem; background:#fcfaf8; transition:border-color 0.2s; margin-bottom:1.2rem; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline:none; border-color:#d4af37; box-shadow:0 0 0 3px rgba(212,175,55,0.15); }
.contact-form textarea { resize:vertical; min-height:140px; }
.contact-form .btn { width:100%; padding:0.9rem; font-size:1rem; }

/* ============================================
   CTA & FOOTER
   ============================================ */
.footer-cta { padding:4rem 0; background:linear-gradient(135deg,#1e3a5f 0%,#152d4a 100%); color:white; text-align:center; }
.footer-cta .cta-badge { display:inline-block; background:rgba(212,175,55,0.2); color:#d4af37; padding:0.3rem 1.2rem; border-radius:40px; font-size:0.8rem; font-weight:600; margin-bottom:1.2rem; }
.footer-cta h2 { font-family:'Poppins',sans-serif; font-size:2.2rem; margin-bottom:0.8rem; }
.footer-cta p { color:rgba(255,255,255,0.8); max-width:600px; margin:0 auto 2rem; }
.footer-cta-buttons { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.footer-cta .btn-primary { background:#d4af37; color:#1e3a5f; }
.footer-cta .btn-primary:hover { background:#c49a2e; box-shadow:0 8px 25px rgba(212,175,55,0.3); }
.footer-cta .btn-secondary { border-color:white; color:white; }
.footer-cta .btn-secondary:hover { background:white; color:#1e3a5f; }
.main-footer { background:#0f1f33; color:rgba(255,255,255,0.8); padding:4rem 0 2rem; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:3rem; }
.footer-title { color:white; font-size:1.1rem; font-weight:600; margin-bottom:1.2rem; }
.footer-description { font-size:0.9rem; line-height:1.7; margin-bottom:1.2rem; }
.footer-badges { display:flex; flex-direction:column; gap:0.4rem; }
.footer-badges span { font-size:0.85rem; display:flex; align-items:center; gap:0.5rem; }
.footer-badges i { color:#d4af37; }
.footer-links li { margin-bottom:0.5rem; }
.footer-links a { font-size:0.9rem; transition:color 0.2s; }
.footer-links a:hover { color:#d4af37; }
.footer-contact li { display:flex; gap:0.8rem; margin-bottom:0.8rem; font-size:0.9rem; }
.footer-contact i { color:#d4af37; width:1.2rem; margin-top:0.2rem; }
.footer-contact a { color:rgba(255,255,255,0.8); }
.footer-contact a:hover { color:#d4af37; }
.footer-connect { background:#0a1628; padding:2rem 0; border-top:1px solid rgba(255,255,255,0.06); }
.footer-connect-content { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1.5rem; }
.connect-text h2 { color:white; font-size:1.2rem; font-weight:600; }
.connect-text p { color:rgba(255,255,255,0.6); font-size:0.9rem; }
.social-links { display:flex; gap:1rem; }
.social-link { width:44px; height:44px; border-radius:44px; background:rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; color:white; transition:0.2s; font-size:1.1rem; }
.social-link:hover { background:#d4af37; color:#1e3a5f; transform:translateY(-3px); }
.footer-bottom-links { background:#070f1c; padding:1.2rem 0; border-top:1px solid rgba(255,255,255,0.04); }
.footer-bottom-content { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; font-size:0.85rem; color:rgba(255,255,255,0.5); }
.footer-bottom-content .footer-links { display:flex; gap:1.2rem; align-items:center; }
.footer-bottom-content .footer-links a { color:rgba(255,255,255,0.5); transition:color 0.2s; }
.footer-bottom-content .footer-links a:hover { color:#d4af37; }

/* Legal pages */
.legal-page { background:#f9f7f4; padding:4rem 0 5rem; }
.legal-layout { display:grid; grid-template-columns:minmax(0, 1fr); gap:1.5rem; max-width:920px; margin:0 auto; }
.legal-notice { background:#fff8e1; border-left:4px solid #d4af37; padding:1rem 1.2rem; border-radius:10px; color:#4c432b; }
.legal-card { background:#fff; border:1px solid #ece7e0; border-radius:18px; padding:clamp(1.25rem, 3vw, 2.25rem); box-shadow:0 8px 28px rgba(30,58,95,0.06); }
.legal-card h2 { color:#1e3a5f; font-family:'Poppins',sans-serif; font-size:1.35rem; margin:2rem 0 0.65rem; }
.legal-card h2:first-child { margin-top:0; }
.legal-card h3 { color:#1e3a5f; font-size:1rem; margin:1.25rem 0 0.45rem; }
.legal-card p, .legal-card li { color:#4f5560; line-height:1.75; }
.legal-card ul { padding-left:1.25rem; margin:0.6rem 0 1rem; }
.legal-card a { color:#1e3a5f; font-weight:600; text-decoration:underline; text-underline-offset:2px; }
.legal-meta { color:#6c7280; font-size:0.9rem; margin-top:0.6rem; }

/* ============================================
   STICKY BOTTOM BAR
   ============================================ */
#stickyBar { display:none; position:fixed; bottom:0; left:0; right:0; background:#1e3a5f; color:white; padding:12px 16px; text-align:center; z-index:9999; border-top:3px solid #d4af37; font-weight:600; font-size:0.9rem; box-shadow:0 -4px 20px rgba(0,0,0,0.15); }
#stickyBar a { color:#d4af37; margin:0 5px; font-weight:700; }
#stickyBar a:hover { text-decoration:underline; }

/* ============================================
   WHATSAPP FLOATING
   ============================================ */
.whatsapp-float { position:fixed; bottom:80px; left:2rem; z-index:999; background:#25D366; color:white; width:60px; height:60px; border-radius:60px; display:flex; align-items:center; justify-content:center; font-size:2.2rem; box-shadow:0 8px 25px rgba(37,211,102,0.35); transition:0.25s ease; }
.whatsapp-float:hover { transform:scale(1.08); box-shadow:0 12px 35px rgba(37,211,102,0.45); }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header { background:#f9f7f4; padding:4rem 0 3rem; border-bottom:1px solid #ece7e0; }
.page-header h1 { font-family:'Poppins',sans-serif; font-size:2.6rem; color:#1e3a5f; }
.page-header p { color:#666; max-width:600px; margin-top:0.5rem; }
.page-content { padding:4rem 0 5rem; background:#fcfaf8; }
.text-center { text-align:center; }
.mt-4 { margin-top:2.5rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width:1024px) {
    .hero-grid { grid-template-columns:1fr; gap:2rem; text-align:center; }
    .hero p { margin-left:auto; margin-right:auto; }
    .hero-buttons { justify-content:center; }
    .hero-stats { justify-content:center; }
    .hero-image img { max-width:400px; margin:0 auto; }
    .footer-top { grid-template-columns:1fr 1fr; gap:2rem; }
    .contact-grid { grid-template-columns:1fr; gap:2rem; }
    .about-grid { grid-template-columns:1fr; gap:2rem; text-align:center; }
}
@media (max-width:768px) {
    .desktop-nav { display:none; }
    .mobile-toggle { display:flex; }
    .phone-link span { display:none; }
    .header-actions .btn { padding:0.5rem 1.2rem; font-size:0.8rem; }
    .hero h1 { font-size:2.2rem; }
    .hero { min-height:70vh; padding:2.5rem 0; }
    .hero-stats { gap:1.5rem; flex-wrap:wrap; }
    .hero-stats .stat h3 { font-size:1.5rem; }
    .section-title h2 { font-size:1.8rem; }
    .page-header h1 { font-size:2rem; }
    .footer-top { grid-template-columns:1fr; gap:2rem; }
    .footer-connect-content { flex-direction:column; text-align:center; }
    .footer-bottom-content { flex-direction:column; text-align:center; }
    .whatsapp-float { width:50px; height:50px; font-size:1.8rem; bottom:75px; left:1.2rem; }
    #stickyBar { display:block !important; }
}
@media (max-width:480px) {
    .container { padding:0 1.2rem; }
    .hero h1 { font-size:1.8rem; }
    .hero-buttons .btn { width:100%; }
    .products-grid-home, .products-grid { grid-template-columns:1fr; }
}


/* ============================================
   2026 MEDIA & POLISH PASS
   ============================================ */
:root {
    --brand-navy:#1e3a5f;
    --brand-gold:#d4af37;
    --surface:#f9f7f4;
    --line:#e9e2d9;
}
html { scroll-behavior:smooth; }
body { overflow-x:hidden; }
.logo img,
.mobile-nav-header img { width:64px; height:64px; object-fit:contain; border-radius:12px; }
.mobile-nav-header img { width:74px; height:74px; }
.hero { min-height:auto; padding:5rem 0; }
.hero-image { position:relative; }
.hero-image::before {
    content:""; position:absolute; inset:8% -5% -8% 8%;
    background:rgba(212,175,55,.14); border-radius:32px; z-index:0;
}
.hero-image img {
    position:relative; z-index:1; aspect-ratio:16/9; object-fit:cover;
    border:1px solid rgba(30,58,95,.08);
}
.product-photo { background:linear-gradient(180deg,#fff 0%,#faf8f4 100%); overflow:hidden; }
.product-photo img {
    width:100%; height:100%; object-fit:contain; padding:1.25rem;
    transition:transform .3s ease;
}
.product-card:hover .product-photo img,
.product-card-home:hover .product-photo img { transform:scale(1.04); }
.product-card .product-image { height:260px; }
.product-card-home .product-img { height:230px; }
.product-card-home .product-img img { width:100%; height:100%; object-fit:contain; padding:1.2rem; }
.product-card .get-quote-btn { width:100%; }
.projects-grid { grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); }
.project-card { display:flex; flex-direction:column; }
.project-photo { height:260px; display:block; overflow:hidden; background:#eee; }
.project-photo img {
    width:100%; height:100%; object-fit:cover; transition:transform .35s ease;
}
.project-card:hover .project-photo img { transform:scale(1.045); }
.project-body { flex:1; }
.project-body .tag {
    display:inline-flex; align-items:center; padding:.25rem .65rem; border-radius:999px;
    background:#f3ead0; color:var(--brand-navy); font-size:.72rem; font-weight:700;
    margin-bottom:.55rem;
}
.main-footer { border-top:1px solid rgba(255,255,255,.08); }
.main-footer a:focus-visible,
.main-header a:focus-visible,
button:focus-visible {
    outline:3px solid var(--brand-gold); outline-offset:3px;
}
.announcement { font-size:.83rem; }
.page-header { background:linear-gradient(135deg,#1e3a5f,#274e7d); color:white; }
.page-header h1 { color:white; }
.page-header p { color:rgba(255,255,255,.84); }
@media (max-width:900px) {
    .hero { padding:3.5rem 0; }
    .hero-grid { grid-template-columns:1fr; gap:2.5rem; }
    .hero-content { text-align:center; }
    .hero p { margin-left:auto; margin-right:auto; }
    .hero-buttons,.hero-stats { justify-content:center; }
    .hero h1 { font-size:2.65rem; }
}
@media (max-width:640px) {
    .container { padding:0 1rem; }
    .hero { padding:2.6rem 0 3.2rem; }
    .hero h1 { font-size:2.15rem; }
    .hero p { font-size:1rem; }
    .hero-stats { gap:1.25rem; flex-wrap:wrap; }
    .hero-stats .stat h3 { font-size:1.5rem; }
    .product-card .product-image { height:230px; }
    .product-card-home .product-img { height:210px; }
    .project-photo { height:230px; }
    .section-title h2 { font-size:2rem; }
}

/* ============================================
   BLOG LEAD-GENERATION HUB
   ============================================ */
.blog-hero { padding:4.8rem 0; background:linear-gradient(135deg,#0f2b47 0%,#1e3a5f 62%,#274e7d 100%); color:#fff; overflow:hidden; }
.blog-hero-grid { display:grid; grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr); gap:3rem; align-items:center; }
.blog-eyebrow { display:inline-flex; align-items:center; gap:.5rem; padding:.45rem .9rem; border:1px solid rgba(212,175,55,.45); background:rgba(212,175,55,.12); color:#f2cf65; border-radius:999px; font-size:.82rem; font-weight:700; margin-bottom:1rem; }
.blog-hero h1 { font-family:'Poppins',sans-serif; font-size:clamp(2.3rem,5vw,4.1rem); line-height:1.08; margin:0 0 1.1rem; max-width:850px; }
.blog-hero h1 span { color:#d4af37; }
.blog-hero-copy { font-size:1.08rem; color:rgba(255,255,255,.84); max-width:720px; margin-bottom:1.5rem; }
.blog-hero-points { display:flex; flex-wrap:wrap; gap:.7rem 1.1rem; margin-bottom:1.7rem; }
.blog-hero-points span { display:inline-flex; align-items:center; gap:.45rem; color:#f7f7f7; font-size:.9rem; }
.blog-hero-points i { color:#d4af37; }
.blog-hero-actions { display:flex; gap:.8rem; flex-wrap:wrap; }
.blog-hero-card { background:#fff; color:#1e3a5f; border-radius:24px; padding:1.65rem; box-shadow:0 22px 55px rgba(0,0,0,.22); }
.blog-hero-card .mini-label { font-size:.76rem; font-weight:800; text-transform:uppercase; letter-spacing:.08em; color:#916f11; }
.blog-hero-card h2 { font-family:'Poppins',sans-serif; font-size:1.45rem; margin:.35rem 0 .55rem; }
.blog-hero-card p { color:#64707d; font-size:.93rem; margin-bottom:1rem; }
.blog-lead-form { display:grid; gap:.75rem; }
.blog-lead-form input, .blog-lead-form select { width:100%; border:1px solid #dfe4ea; border-radius:12px; padding:.85rem .95rem; font:inherit; background:#fff; color:#1e3a5f; }
.blog-lead-form input:focus, .blog-lead-form select:focus { outline:2px solid rgba(212,175,55,.35); border-color:#d4af37; }
.blog-lead-form button { width:100%; justify-content:center; }
.form-note { font-size:.72rem; color:#7a838d; text-align:center; margin:0; }

.blog-value-strip { background:#fff; border-bottom:1px solid #ece7e0; }
.blog-value-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.blog-value-item { padding:1.2rem; text-align:center; border-right:1px solid #ece7e0; }
.blog-value-item:last-child { border-right:none; }
.blog-value-item i { color:#d4af37; margin-right:.35rem; }
.blog-value-item strong { color:#1e3a5f; font-size:.92rem; }

.blog-hub { padding:4.5rem 0; background:#fbfaf8; }
.blog-section-heading { text-align:center; max-width:760px; margin:0 auto 2.3rem; }
.blog-section-heading .kicker { color:#9a781b; font-weight:800; font-size:.8rem; text-transform:uppercase; letter-spacing:.12em; }
.blog-section-heading h2 { font-family:'Poppins',sans-serif; color:#1e3a5f; font-size:clamp(1.9rem,4vw,2.7rem); margin:.35rem 0 .6rem; }
.blog-section-heading p { color:#67717b; }
.blog-guide-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1.4rem; }
.blog-guide-card { background:#fff; border:1px solid #eee7df; border-radius:20px; overflow:hidden; box-shadow:0 7px 24px rgba(25,48,74,.06); transition:.22s ease; display:flex; flex-direction:column; }
.blog-guide-card:hover { transform:translateY(-5px); box-shadow:0 14px 34px rgba(25,48,74,.11); }
.blog-guide-image { height:190px; overflow:hidden; background:#ece7e0; }
.blog-guide-image img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s ease; }
.blog-guide-card:hover .blog-guide-image img { transform:scale(1.04); }
.blog-guide-body { padding:1.25rem; display:flex; flex-direction:column; flex:1; }
.blog-topic { display:inline-flex; align-self:flex-start; padding:.3rem .65rem; background:#f7f1dd; color:#856712; border-radius:999px; font-size:.72rem; font-weight:800; margin-bottom:.7rem; }
.blog-guide-body h3 { color:#1e3a5f; font-family:'Poppins',sans-serif; font-size:1.12rem; line-height:1.35; margin:0 0 .55rem; }
.blog-guide-body p { color:#68727c; font-size:.9rem; flex:1; }
.blog-guide-actions { display:flex; align-items:center; justify-content:space-between; gap:.6rem; margin-top:1rem; border-top:1px solid #eee; padding-top:.9rem; }
.blog-guide-link { color:#1e3a5f; font-weight:800; text-decoration:none; font-size:.86rem; }
.blog-guide-link:hover { color:#9a781b; }
.blog-intent-link { color:#168943; font-weight:800; text-decoration:none; font-size:.82rem; }

.blog-conversion { padding:4.5rem 0; background:#fff; }
.blog-conversion-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.blog-conversion-card { border-radius:20px; padding:1.6rem; border:1px solid #e7e2dc; background:linear-gradient(180deg,#fff,#fbfaf8); }
.blog-conversion-icon { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; background:#1e3a5f; color:#d4af37; font-size:1.15rem; margin-bottom:1rem; }
.blog-conversion-card h3 { color:#1e3a5f; font-family:'Poppins',sans-serif; font-size:1.15rem; }
.blog-conversion-card p { color:#68727c; font-size:.9rem; margin:.45rem 0 1rem; }

.blog-proof { padding:4rem 0; background:#f3f5f7; }
.blog-proof-grid { display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:center; }
.blog-proof-image img { width:100%; border-radius:24px; height:420px; object-fit:cover; box-shadow:0 18px 45px rgba(30,58,95,.15); }
.blog-proof-copy h2 { font-family:'Poppins',sans-serif; color:#1e3a5f; font-size:2.2rem; line-height:1.18; }
.blog-proof-copy p { color:#66717c; margin:.8rem 0 1rem; }
.blog-proof-list { list-style:none; padding:0; margin:1rem 0 1.5rem; display:grid; gap:.65rem; }
.blog-proof-list li { display:flex; gap:.65rem; color:#34495e; }
.blog-proof-list i { color:#20a153; margin-top:.22rem; }

.blog-faq { padding:4.5rem 0; background:#fff; }
.blog-faq-list { max-width:900px; margin:0 auto; display:grid; gap:.8rem; }
.blog-faq details { border:1px solid #e7e2dc; border-radius:14px; padding:1rem 1.1rem; background:#fcfbfa; }
.blog-faq summary { cursor:pointer; color:#1e3a5f; font-weight:800; }
.blog-faq details p { color:#66717c; padding-top:.65rem; margin:0; }

@media (max-width:900px) {
  .blog-hero-grid, .blog-proof-grid { grid-template-columns:1fr; }
  .blog-guide-grid, .blog-conversion-grid { grid-template-columns:repeat(2,1fr); }
  .blog-value-grid { grid-template-columns:repeat(2,1fr); }
  .blog-value-item:nth-child(2) { border-right:none; }
  .blog-value-item:nth-child(-n+2) { border-bottom:1px solid #ece7e0; }
}
@media (max-width:620px) {
  .blog-hero { padding:3.4rem 0; }
  .blog-guide-grid, .blog-conversion-grid { grid-template-columns:1fr; }
  .blog-hero-card { padding:1.2rem; }
  .blog-proof-image img { height:300px; }
  .blog-proof-copy h2 { font-size:1.8rem; }
}


/* BLOG ARTICLE PAGES */
.blog-card-title{color:#1e3a5f;text-decoration:none}.blog-card-title:hover{color:#9a781b}.article-hero{padding:4.2rem 0;background:linear-gradient(135deg,#f7f3ea,#fff)}.article-hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:2.5rem;align-items:center}.article-back{display:inline-block;color:#1e3a5f;font-weight:800;text-decoration:none;margin-bottom:1rem}.article-hero h1{font-family:'Poppins',sans-serif;color:#1e3a5f;font-size:clamp(2.15rem,4.7vw,3.7rem);line-height:1.08;margin:.65rem 0 1rem}.article-hero p{font-size:1.06rem;color:#66717c;max-width:720px}.article-actions{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:1.4rem}.article-hero-image img{width:100%;height:420px;object-fit:cover;border-radius:24px;box-shadow:0 18px 45px rgba(30,58,95,.14)}.article-layout{padding:4rem 0;background:#fff}.article-grid{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:2.5rem;align-items:start}.article-content{max-width:800px}.article-intro{font-size:1.1rem;line-height:1.8;color:#44515d;padding:1.2rem 1.3rem;border-left:4px solid #d4af37;background:#fbfaf8;border-radius:0 14px 14px 0}.article-section{padding:1.2rem 0;border-bottom:1px solid #eee7df}.article-section h2,.article-summary h2{font-family:'Poppins',sans-serif;color:#1e3a5f;font-size:1.45rem;margin-bottom:.55rem}.article-section p,.article-summary p{color:#5f6b76;line-height:1.8}.article-summary{margin-top:2rem;padding:1.5rem;border-radius:18px;background:linear-gradient(135deg,#eef4f9,#f9f4e5);border:1px solid #e5e2da}.article-sidebar{display:grid;gap:1rem;position:sticky;top:110px}.article-side-card{border:1px solid #e7e2dc;border-radius:18px;padding:1.3rem;background:#fbfaf8}.article-side-card h3{font-family:'Poppins',sans-serif;color:#1e3a5f;margin-bottom:.55rem}.article-side-card p{color:#66717c;font-size:.92rem;margin-bottom:1rem}.article-side-card>a:not(.btn){display:block;padding:.55rem 0;color:#1e3a5f;font-weight:700;text-decoration:none;border-bottom:1px solid #ece7e0}@media(max-width:900px){.article-hero-grid,.article-grid{grid-template-columns:1fr}.article-sidebar{position:static}.article-hero-image img{height:340px}}@media(max-width:620px){.article-hero{padding:3rem 0}.article-hero-image img{height:260px}.article-layout{padding:2.8rem 0}}


/* ============================================
   CLIENT ACQUISITION UPGRADE — 2026-08-30
   ============================================ */
:root{--fp-blue:#1e3a5f;--fp-gold:#d4af37;--fp-ink:#1f2937;--fp-soft:#f7f4ef;--fp-green:#14804a}
.eyebrow{display:inline-block;font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;font-weight:800;color:var(--fp-gold);margin-bottom:.6rem}
.btn-ghost-header{background:transparent;border:1px solid rgba(30,58,95,.25);color:var(--fp-blue);padding:.7rem .9rem}
.trust-strip{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:1.25rem}.trust-strip span{background:#fff;border:1px solid #e8e3db;border-radius:999px;padding:.5rem .75rem;font-size:.86rem;color:var(--fp-blue);font-weight:600}
.conversion-paths,.buyer-routes,.proof-section,.case-study-note{padding:4.5rem 0}.conversion-paths{background:#fff}.path-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}.path-card{padding:1.5rem;border:1px solid #e9e3da;border-radius:20px;background:#fff;box-shadow:0 8px 26px rgba(30,58,95,.06)}.path-card>i{font-size:1.6rem;color:var(--fp-gold);margin-bottom:1rem}.path-card h3{color:var(--fp-blue);margin-bottom:.5rem}.path-card p{min-height:4.5em;color:#667085}.path-card .btn{width:100%;justify-content:center}
.route-bar{display:grid;grid-template-columns:auto auto auto auto auto auto;align-items:center;gap:1rem;padding:1rem 1.25rem;background:var(--fp-soft);border-radius:18px;border:1px solid #ebe5dc}.route-bar div{display:flex;flex-direction:column}.route-bar strong{color:var(--fp-blue)}.route-bar span{font-size:.78rem;color:#6b7280}.route-bar a{font-size:.86rem;font-weight:800;color:var(--fp-blue);text-decoration:underline;text-underline-offset:3px}
.product-detail-link,.project-enquiry,.text-link{display:inline-block;margin-top:.8rem;color:var(--fp-blue);font-weight:800;text-decoration:none}.product-detail-link:hover,.project-enquiry:hover,.text-link:hover{text-decoration:underline;text-underline-offset:4px}
.service-sales-card{display:flex;flex-direction:column;align-items:flex-start}.service-sales-card p{flex:1}.service-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:2rem}.service-steps>div{padding:1.25rem;border-radius:18px;background:var(--fp-soft);display:flex;flex-direction:column;gap:.35rem}.service-steps strong{color:var(--fp-blue)}.service-steps span{font-size:.9rem;color:#667085}
.case-study-box{display:flex;align-items:center;justify-content:space-between;gap:2rem;padding:2rem;border-radius:24px;background:var(--fp-blue);color:#fff}.case-study-box h2{color:#fff}.case-study-box p{max-width:760px;color:#d9e3ee}.case-study-box .btn{white-space:nowrap}
.proof-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}.proof-card{display:grid;grid-template-columns:180px 1fr;gap:1.25rem;align-items:center;border:1px solid #e8e3db;border-radius:22px;overflow:hidden;text-decoration:none;color:inherit;background:white}.proof-card img{width:100%;height:150px;object-fit:cover}.proof-card h3{color:var(--fp-blue);margin-bottom:.4rem}.small-note,.form-note{font-size:.82rem;color:#667085;margin-top:1rem}.proof-note{margin-top:1.5rem;padding:1rem 1.2rem;border-left:4px solid var(--fp-gold);background:var(--fp-soft);color:#4b5563}
.quote-page .contact-grid{align-items:start}.qualified-form{background:#fff;border:1px solid #e8e3db;border-radius:20px;padding:1.35rem;box-shadow:0 10px 35px rgba(30,58,95,.07)}.qualified-form label{font-weight:700;color:var(--fp-blue);margin-top:.75rem}.qualified-form input,.qualified-form select,.qualified-form textarea{width:100%;margin-top:.35rem}.consent-row{display:flex!important;align-items:flex-start;gap:.55rem;font-weight:400!important;font-size:.85rem;color:#4b5563!important}.consent-row input{width:auto!important;margin-top:.2rem!important}.photo-tips{margin-top:1.25rem;padding:1rem;background:var(--fp-soft);border-radius:16px}.photo-tips ul{margin:.6rem 0 0 1.15rem}
.thank-you-section{padding:5rem 0;background:var(--fp-soft);min-height:65vh}.thank-you-card{max-width:760px;margin:auto;background:#fff;padding:2rem;border-radius:28px;text-align:center;box-shadow:0 15px 45px rgba(30,58,95,.09)}.success-icon{width:64px;height:64px;border-radius:50%;display:grid;place-items:center;background:#e8f7ef;color:var(--fp-green);font-size:1.6rem;margin:0 auto 1rem}.enquiry-summary{display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem;margin:1.5rem 0}.enquiry-summary>div{padding:1rem;border-radius:14px;background:var(--fp-soft);display:flex;flex-direction:column}.enquiry-summary strong{font-size:.75rem;text-transform:uppercase;color:#667085}.photo-reminder{margin-top:1rem}.next-links{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-top:1.5rem}.next-links a{color:var(--fp-blue);font-weight:700}
.error-page{padding:5rem 0;background:var(--fp-soft);text-align:center}.error-code{font-size:6rem;font-weight:900;color:var(--fp-gold);line-height:1}.error-routes{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin:2rem 0}.error-routes a{padding:1.25rem;background:#fff;border:1px solid #e8e3db;border-radius:18px;text-decoration:none;display:flex;flex-direction:column;gap:.35rem}.error-routes i{font-size:1.5rem;color:var(--fp-gold)}.error-routes strong{color:var(--fp-blue)}.error-routes span{font-size:.85rem;color:#667085}
.product-detail,.service-detail,.contractor-page,.location-page,.calculator-page{padding:4rem 0}.product-detail-grid{display:grid;grid-template-columns:minmax(320px,.9fr) 1.1fr;gap:3rem;align-items:center}.product-detail-image{position:relative;background:var(--fp-soft);border-radius:28px;padding:2rem;text-align:center}.product-detail-image img{max-width:100%;max-height:560px;object-fit:contain}.product-detail-content h2{color:var(--fp-blue);margin-top:1.25rem}.detail-price{display:flex;flex-wrap:wrap;align-items:baseline;gap:.75rem;padding-bottom:1.2rem;border-bottom:1px solid #e8e3db}.detail-price strong{font-size:2rem;color:var(--fp-blue)}.detail-price small{flex-basis:100%;color:#667085}.check-list{list-style:none;padding:0;margin:1rem 0}.check-list li{margin:.65rem 0}.check-list i{color:var(--fp-green);margin-right:.6rem}.detail-actions{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:1.5rem}.detail-info,.detail-two-col,.location-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;margin-top:3rem}.detail-info>div,.detail-two-col>section,.location-grid>section{padding:1.5rem;background:var(--fp-soft);border-radius:20px}.faq-block,.local-faq{margin-top:3rem}.faq-block details,.local-faq details{border-top:1px solid #e8e3db;padding:1rem 0}.faq-block summary,.local-faq summary{font-weight:800;color:var(--fp-blue);cursor:pointer}.problem-list{padding-left:1.1rem}.problem-list li{margin:.65rem 0}.process-list{list-style:none;padding:0}.process-list li{display:grid;grid-template-columns:34px 1fr;gap:.7rem;align-items:start;margin:.75rem 0}.process-list li span{width:30px;height:30px;border-radius:50%;display:grid;place-items:center;background:var(--fp-blue);color:#fff;font-weight:800}.scope-box{margin-top:2rem;padding:1.5rem;border:1px solid #e8e3db;border-radius:20px}.scope-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem;margin:1rem 0}.scope-grid span{padding:.85rem;background:var(--fp-soft);border-radius:12px}.detail-cta{margin-top:2rem;padding:2rem;border-radius:24px;background:var(--fp-blue);color:#fff}.detail-cta h2{color:#fff}.detail-cta p{color:#d9e3ee}.benefit-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}.benefit-grid article{padding:1.35rem;border:1px solid #e8e3db;border-radius:18px}.benefit-grid i{font-size:1.5rem;color:var(--fp-gold)}.benefit-grid h3{color:var(--fp-blue)}.contractor-form-wrap{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin-top:3rem;align-items:start}.contractor-cta{padding:2rem;border-radius:22px;background:var(--fp-soft)}
.calculator-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:start}.calculator-card,.calculator-result{border:1px solid #e8e3db;border-radius:24px;padding:1.5rem;background:#fff;box-shadow:0 10px 30px rgba(30,58,95,.06)}.calculator-card label{display:block;margin:.8rem 0;font-weight:700;color:var(--fp-blue)}.calculator-card input,.calculator-card select{width:100%;margin-top:.35rem}.calculator-result{min-height:520px;display:flex;flex-direction:column;justify-content:center}.result-empty{text-align:center;color:#667085}.result-empty i{font-size:3rem;color:var(--fp-gold)}.result-number{font-size:3rem;font-weight:900;color:var(--fp-blue)}.result-number small{font-size:1rem}.result-breakdown{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem;margin:1.25rem 0}.result-breakdown span{padding:.75rem;background:var(--fp-soft);border-radius:12px;display:flex;flex-direction:column}.warning-note{padding:1rem;background:#fff7e6;border-left:4px solid var(--fp-gold);font-size:.9rem}.calculator-safety{margin-top:2rem;padding:1.5rem;border-radius:20px;background:var(--fp-soft)}
@media(max-width:1000px){.path-grid,.benefit-grid{grid-template-columns:repeat(2,1fr)}.route-bar{grid-template-columns:1fr 1fr}.btn-ghost-header{display:none}.error-routes{grid-template-columns:repeat(2,1fr)}}
@media(max-width:760px){.conversion-paths,.buyer-routes,.proof-section,.case-study-note{padding:3rem 0}.path-grid,.service-steps,.proof-grid,.detail-info,.detail-two-col,.scope-grid,.benefit-grid,.contractor-form-wrap,.location-grid,.calculator-grid,.enquiry-summary{grid-template-columns:1fr}.route-bar{grid-template-columns:1fr}.route-bar a{margin-bottom:.5rem}.case-study-box{flex-direction:column;align-items:flex-start}.case-study-box .btn{white-space:normal;width:100%}.proof-card{grid-template-columns:110px 1fr}.proof-card img{height:130px}.product-detail-grid{grid-template-columns:1fr;gap:1.5rem}.error-routes{grid-template-columns:1fr 1fr}.calculator-result{min-height:360px}.result-breakdown{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.error-routes,.result-breakdown{grid-template-columns:1fr}.detail-actions{flex-direction:column}.detail-actions .btn{width:100%;justify-content:center}}
