/* PIC Automotive Refinish SRL — styles.css */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--bg:#141414;--bg-deep:#0a0a0a;--bg-card:#1e1e1e;--bg-secondary:#262626;--fg:#f5f5f7;--fg-muted:#a0a0a8;--fg-faint:#7a7a82;--primary:#dc2626;--primary-hover:#b91c1c;--primary-light:rgba(220,38,38,.15);--border:#333;--border-soft:rgba(255,255,255,.08);--radius:.75rem;--font:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;--shadow:0 4px 24px rgba(0,0,0,.25);--shadow-sm:0 2px 8px rgba(0,0,0,.15);--header-h:80px}
html{scroll-behavior:smooth;overflow-x:clip;-webkit-text-size-adjust:100%}
body{font-family:var(--font);background:var(--bg);color:var(--fg);line-height:1.6;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:clip;min-width:320px}
img,svg{display:block;max-width:100%}
img{height:auto}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font-family:inherit}
::-webkit-scrollbar{width:10px;height:10px}
::-webkit-scrollbar-track{background:var(--bg-card)}
::-webkit-scrollbar-thumb{background:#444;border-radius:5px}
::-webkit-scrollbar-thumb:hover{background:var(--primary)}

/* skip link & focus */
.skip-link{position:absolute;left:-9999px;top:0;background:var(--primary);color:#fff;padding:.75rem 1rem;z-index:300;border-radius:0 0 .5rem 0;font-weight:600}
.skip-link:focus{left:0}
:focus-visible{outline:2px solid var(--primary);outline-offset:2px;border-radius:4px}

/* utilities */
.container{width:100%;max-width:1280px;margin:0 auto;padding:0 1.25rem}
@media(min-width:640px){.container{padding:0 1.5rem}}
@media(min-width:1024px){.container{padding:0 2rem}}
.section-header{text-align:center;margin-bottom:3rem;max-width:720px;margin-left:auto;margin-right:auto}
.section-header h2{font-size:clamp(1.75rem,4vw,2.25rem);font-weight:800;margin-bottom:1rem;letter-spacing:-.01em}
.section-divider{width:5rem;height:4px;background:var(--primary);margin:0 auto;border-radius:2px}
.section-lead{color:var(--fg-muted);max-width:640px;margin:1.25rem auto 0;font-size:1rem}
@media(min-width:768px){.section-header{margin-bottom:4rem}}

/* HEADER */
.site-header{position:fixed;inset:0 0 auto 0;z-index:100;transition:background .3s,box-shadow .3s,backdrop-filter .3s}
.site-header.scrolled{background:rgba(20,20,20,.95);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);box-shadow:0 2px 20px rgba(0,0,0,.3)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;height:var(--header-h)}
.logo-link{flex-shrink:0;display:inline-flex}
.logo-img{height:42px;width:auto;filter:brightness(0) invert(1)}
@media(min-width:640px){.logo-img{height:48px}}
.desktop-nav{display:none;align-items:center;gap:.25rem}
@media(min-width:1024px){.desktop-nav{display:flex}}
.nav-link{padding:.5rem 1rem;font-size:.875rem;font-weight:500;color:rgba(245,245,247,.8);transition:color .2s;position:relative}
.nav-link:hover,.nav-link.active{color:var(--primary)}
.header-contact{display:none;text-align:right}
@media(min-width:1024px){.header-contact{display:block}}
.header-phone{display:flex;align-items:center;gap:.5rem;font-weight:700;font-size:1.125rem;transition:color .2s}
.header-phone:hover{color:var(--primary)}
.header-phone svg{color:var(--primary)}
.header-location{display:flex;align-items:center;gap:.25rem;font-size:.875rem;color:var(--fg-muted);justify-content:flex-end}
.mobile-toggle{display:flex;align-items:center;justify-content:center;background:none;border:none;color:var(--fg);cursor:pointer;padding:.5rem;width:44px;height:44px}
@media(min-width:1024px){.mobile-toggle{display:none}}
.mobile-menu{display:none;position:absolute;top:var(--header-h);left:0;right:0;background:rgba(15,15,15,.97);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-top:1px solid var(--border);box-shadow:0 12px 30px rgba(0,0,0,.4)}
.mobile-menu.open{display:block}
@media(min-width:1024px){.mobile-menu{display:none!important}}
.mobile-menu nav{display:flex;flex-direction:column;padding:.5rem 0}
.mobile-menu .nav-link{padding:.9rem 1.5rem;font-size:1rem;border-bottom:1px solid rgba(51,51,51,.3)}
.mobile-menu .nav-link:hover{background:var(--bg-secondary)}
.mobile-menu-phone{display:flex;align-items:center;justify-content:center;gap:.5rem;padding:1rem 1.5rem;color:var(--primary);font-weight:700;border-top:1px solid var(--border)}

/* HERO */
.hero{position:relative;min-height:calc(100vh - 0px);display:flex;flex-direction:column;padding-top:var(--header-h)}
.hero-main{position:relative;flex:1;display:flex;align-items:center;min-height:480px}
.hero-bg{position:absolute;inset:0;background:var(--bg)}
.hero-image-wrap{position:absolute;inset:0;width:100%;overflow:hidden}
@media(min-width:1024px){.hero-image-wrap{width:60%;left:auto;right:0}}
.hero-image{width:100%;height:100%;object-fit:cover;object-position:center}
.hero-gradient{position:absolute;inset:0;background:linear-gradient(to right,var(--bg) 0%,rgba(20,20,20,.85) 40%,transparent 100%)}
@media(min-width:1024px){.hero-gradient{background:linear-gradient(to right,var(--bg) 0%,rgba(20,20,20,.6) 50%,transparent 100%)}}
.hero-content{position:relative;width:100%;padding:3rem 0}
@media(min-width:768px){.hero-content{padding:4rem 0}}
.hero-inner{max-width:640px}
.hero-subtitle{color:var(--primary);font-weight:600;letter-spacing:.1em;margin-bottom:1rem;font-size:clamp(.75rem,2vw,1rem);text-transform:uppercase}
.hero h1{font-size:clamp(2rem,5vw,3.75rem);font-weight:800;line-height:1.1;margin-bottom:1.5rem;letter-spacing:-.02em;word-wrap:break-word}
.hero h1 span{color:var(--fg)}
.hero-desc{margin-bottom:2rem}
.hero-desc p:first-child{font-weight:600;font-size:clamp(1rem,2.5vw,1.125rem)}
.hero-desc p:last-child{color:rgba(245,245,247,.8)}

/* mobile hero centering */
@media(max-width:767px){
 .hero-inner{text-align:center;margin:0 auto}
 .hero-image-wrap{opacity:.55}
}

/* buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.875rem 1.75rem;border-radius:var(--radius);font-weight:600;font-size:1rem;border:none;cursor:pointer;transition:background .2s,transform .15s,box-shadow .2s,color .2s,border-color .2s;font-family:var(--font);text-align:center;line-height:1.2;min-height:48px}
.btn:active{transform:scale(.97)}
.btn-primary{background:var(--primary);color:#fff;box-shadow:0 6px 18px rgba(220,38,38,.4)}
.btn-primary:hover{background:var(--primary-hover);box-shadow:0 8px 22px rgba(220,38,38,.5)}
.btn-outline{background:transparent;border:2px solid var(--border);color:var(--fg)}
.btn-outline:hover{border-color:var(--primary);color:var(--primary)}
.btn-green{border-color:#22c55e;color:#22c55e}
.btn-green:hover{background:rgba(34,197,94,.1);border-color:#22c55e;color:#22c55e}
.btn-block{width:100%}

/* hero features bar */
.hero-features{position:relative;background:rgba(38,38,38,.85);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border-top:1px solid var(--border)}
.features-grid{display:grid;grid-template-columns:1fr;gap:1.25rem;padding:1.5rem 0}
@media(min-width:480px){.features-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.features-grid{grid-template-columns:repeat(4,1fr);gap:2rem}}
.feature-item{display:flex;align-items:center;gap:.875rem}
.feature-icon{flex-shrink:0;width:48px;height:48px;background:var(--primary-light);border-radius:50%;display:flex;align-items:center;justify-content:center}
.feature-icon svg{width:24px;height:24px;color:var(--primary)}
.feature-title{font-size:.875rem;font-weight:700;line-height:1.2}
.feature-sub{font-size:.75rem;color:var(--fg-muted)}

/* SERVICES */
.services{padding:4rem 0;background:#fff;color:#111;content-visibility:auto;contain-intrinsic-size:1px 900px}
@media(min-width:768px){.services{padding:5rem 0}}
.services-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:560px){.services-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.services-grid{grid-template-columns:repeat(4,1fr)}}
.service-card{background:#fff;border:1px solid #e5e7eb;border-radius:var(--radius);overflow:hidden;transition:border-color .3s,box-shadow .3s,transform .3s}
.service-card:hover{border-color:rgba(220,38,38,.5);box-shadow:0 10px 30px rgba(0,0,0,.08);transform:translateY(-4px)}
.service-card-img{position:relative;height:192px;overflow:hidden;background:#f3f4f6}
.service-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.service-card:hover .service-card-img img{transform:scale(1.05)}
.service-icon-badge{position:absolute;bottom:1rem;left:1rem;width:48px;height:48px;background:var(--primary);border-radius:.5rem;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-sm)}
.service-icon-badge svg{width:24px;height:24px;color:#fff}
.service-card-body{padding:1.5rem}
.service-card-body h3{font-size:1.125rem;font-weight:700;color:#111;margin-bottom:.75rem}
.service-card-body p{font-size:.9rem;color:#4b5563;line-height:1.6}

/* ABOUT */
.about{padding:4rem 0;background:var(--bg-secondary);content-visibility:auto;contain-intrinsic-size:1px 1000px}
@media(min-width:768px){.about{padding:5rem 0}}
.about-grid{display:grid;grid-template-columns:1fr;gap:2.5rem}
@media(min-width:1024px){.about-grid{grid-template-columns:1fr 1fr;gap:3rem;align-items:center}}
.about h2{font-size:clamp(1.75rem,4vw,2.25rem);font-weight:800;margin-bottom:1.5rem;letter-spacing:-.01em}
.about-text{color:var(--fg-muted);line-height:1.75;margin-bottom:1.5rem}
.about-list{display:flex;flex-direction:column;gap:1rem}
.about-list li{display:flex;align-items:flex-start;gap:.75rem}
.check-icon{flex-shrink:0;width:24px;height:24px;background:var(--primary-light);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-top:2px}
.check-icon svg{width:16px;height:16px;color:var(--primary)}
.insurance-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.75rem}
@media(min-width:640px){.insurance-card{padding:2rem}}
.insurance-header{display:flex;align-items:center;gap:.75rem;margin-bottom:1.5rem;flex-wrap:wrap}
.insurance-icon{width:48px;height:48px;background:var(--primary-light);border-radius:.5rem;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.insurance-icon svg{width:24px;height:24px;color:var(--primary)}
.insurance-header h3{font-size:clamp(1.125rem,3vw,1.5rem);font-weight:800;letter-spacing:-.01em}
.insurance-tagline{font-size:1.125rem;color:var(--primary);font-weight:600;margin-bottom:1.5rem}
.insurance-divider{border:none;border-top:1px solid var(--border);margin:2rem 0}
.insurance-phone{display:inline-flex;align-items:center;gap:.5rem;color:var(--primary);font-weight:700;font-size:1.125rem;transition:opacity .2s;flex-wrap:wrap}
.insurance-phone:hover{opacity:.85;text-decoration:underline}

/* WORKSHOP */
.workshop{padding:4rem 0;background:#f9fafb;color:#111;content-visibility:auto;contain-intrinsic-size:1px 900px}
@media(min-width:768px){.workshop{padding:5rem 0}}
.workshop-grid{display:grid;grid-template-columns:1fr;gap:2.5rem;align-items:center}
@media(min-width:1024px){.workshop-grid{grid-template-columns:1fr 1fr;gap:3rem}}
.workshop-image{border-radius:var(--radius);overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,.08);max-width:500px;margin-left:auto;margin-right:auto}
.workshop-image img{width:100%;height:auto;border-radius:var(--radius)}
.workshop h2{font-size:clamp(1.75rem,4vw,2.25rem);font-weight:800;color:#111;margin-bottom:1rem;letter-spacing:-.01em}
.workshop-highlight{color:var(--primary);font-weight:600;font-size:1.125rem;margin-bottom:1rem}
@media(min-width:640px){.workshop-highlight{font-size:1.25rem}}
.workshop-text{color:#4b5563;line-height:1.75;margin-bottom:2rem}
.info-cards{display:grid;grid-template-columns:1fr;gap:.875rem}
@media(min-width:480px){.info-cards{grid-template-columns:1fr 1fr;gap:1rem}}
.info-card{display:flex;align-items:center;gap:.75rem;background:#fff;border-radius:var(--radius);padding:1rem;box-shadow:var(--shadow-sm);border:1px solid #f3f4f6}
.info-card-icon{flex-shrink:0;width:44px;height:44px;background:rgba(220,38,38,.08);border-radius:.5rem;display:flex;align-items:center;justify-content:center}
.info-card-icon svg{width:22px;height:22px;color:var(--primary)}
.info-card-label{font-weight:600;color:#111;font-size:.9rem}
.info-card-value{font-size:.85rem;color:#4b5563;word-break:break-word}
.info-card-value a{transition:color .2s}
.info-card-value a:hover{color:var(--primary)}

/* GALLERY */
.gallery{padding:4rem 0;background:var(--bg);content-visibility:auto;contain-intrinsic-size:1px 1100px}
@media(min-width:768px){.gallery{padding:5rem 0}}
.gallery-grid{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}
@media(min-width:560px){.gallery-grid{grid-template-columns:repeat(3,1fr);gap:1rem}}
@media(min-width:1024px){.gallery-grid{grid-template-columns:repeat(4,1fr)}}
.gallery-item{position:relative;aspect-ratio:1/1;overflow:hidden;border-radius:.5rem;cursor:pointer;background:var(--bg-card);border:0;padding:0;display:block;width:100%}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.gallery-item:hover img,.gallery-item:focus-visible img{transform:scale(1.08)}
.gallery-overlay{position:absolute;inset:0;background:rgba(220,38,38,0);transition:background .3s;display:flex;align-items:center;justify-content:center}
.gallery-item:hover .gallery-overlay,.gallery-item:focus-visible .gallery-overlay{background:rgba(220,38,38,.25)}
.gallery-zoom{width:48px;height:48px;background:rgba(220,38,38,.85);border-radius:50%;display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .3s,transform .3s;font-size:1.5rem;color:#fff;font-weight:300;transform:scale(.85)}
.gallery-item:hover .gallery-zoom,.gallery-item:focus-visible .gallery-zoom{opacity:1;transform:scale(1)}

/* LIGHTBOX */
.lightbox{display:none;position:fixed;inset:0;z-index:200;background:rgba(10,10,10,.97);align-items:center;justify-content:center;padding:1rem}
.lightbox.open{display:flex}
.lightbox-close,.lightbox-prev,.lightbox-next{position:absolute;background:rgba(255,255,255,.06);border:none;color:var(--fg);cursor:pointer;padding:.5rem;transition:background .2s,color .2s;z-index:10;border-radius:50%;width:48px;height:48px;display:flex;align-items:center;justify-content:center}
.lightbox-close:hover,.lightbox-prev:hover,.lightbox-next:hover{background:rgba(220,38,38,.85);color:#fff}
.lightbox-close{top:1rem;right:1rem}
.lightbox-prev{left:.75rem;top:50%;transform:translateY(-50%)}
.lightbox-next{right:.75rem;top:50%;transform:translateY(-50%)}
.lightbox-content{max-width:90vw;max-height:85vh;text-align:center}
.lightbox-content img{max-width:100%;max-height:78vh;object-fit:contain;border-radius:.5rem}
.lightbox-caption{text-align:center;color:var(--fg-muted);margin-top:1rem;font-size:.9rem}

/* REVIEWS (Google-style) */
.reviews{padding:4rem 0;background:#fff;color:#202124;content-visibility:auto;contain-intrinsic-size:1px 900px}
@media(min-width:768px){.reviews{padding:5rem 0}}
.reviews .section-header h2{color:#202124}
.reviews-summary{display:flex;flex-direction:column;align-items:center;gap:.5rem;margin-top:1.25rem}
.reviews-summary-rating{display:inline-flex;align-items:center;gap:.65rem}
.reviews-summary-score{font-size:2.25rem;font-weight:700;color:#202124;line-height:1}
.reviews-summary-stars{display:inline-flex;gap:2px}
.reviews-summary-stars svg{fill:#fbbc04}
.reviews-summary-meta{display:inline-flex;align-items:center;gap:.5rem;font-size:.95rem;color:#5f6368;margin:0}
.reviews-google-g{flex-shrink:0}
.reviews-lead{color:#5f6368!important;margin-top:1.25rem!important}
.reviews-grid{display:grid;grid-template-columns:1fr;gap:1.25rem;margin-top:.5rem}
@media(min-width:560px){.reviews-grid{grid-template-columns:1fr 1fr;gap:1.25rem}}
@media(min-width:1024px){.reviews-grid{grid-template-columns:repeat(3,1fr);gap:1.5rem}}
.review-card{background:#fff;border:1px solid #e8eaed;border-radius:.75rem;padding:1.25rem;display:flex;flex-direction:column;gap:.85rem;transition:box-shadow .25s,border-color .25s,transform .25s}
.review-card:hover{box-shadow:0 6px 24px rgba(60,64,67,.12);border-color:#dadce0;transform:translateY(-2px)}
.review-card-head{display:flex;align-items:center;gap:.75rem}
.review-avatar{flex-shrink:0;width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:600;font-size:1.05rem;letter-spacing:.02em}
.review-author-block{flex:1;min-width:0}
.review-name{font-size:.95rem;font-weight:600;color:#202124;line-height:1.2;margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.review-time{font-size:.8rem;color:#5f6368;margin:0;margin-top:2px}
.review-source-g{flex-shrink:0;width:20px;height:20px}
.review-stars{display:flex;gap:1px;color:#fbbc04}
.review-stars svg{fill:#fbbc04}
.review-text{font-size:.92rem;color:#3c4043;line-height:1.6;margin:0}
.reviews-cta{display:flex;justify-content:center;margin-top:2.5rem}
.btn-google{background:#fff;color:#1f1f1f;border:1px solid #dadce0;box-shadow:0 1px 2px rgba(60,64,67,.1)}
.btn-google:hover{background:#f8f9fa;border-color:#c4c7c5;color:#1f1f1f;box-shadow:0 2px 6px rgba(60,64,67,.18)}

/* CONTACT */
.contact{padding:4rem 0 3rem;background:var(--bg)}
.text-footer{margin-bottom:24px}
@media(min-width:768px){.contact{padding:5rem 0 4rem}}
.contact-grid{display:grid;grid-template-columns:1fr;gap:2rem}
@media(min-width:1024px){.contact-grid{grid-template-columns:3fr 6fr 3fr;gap:2.5rem}}
.contact h3{font-size:1.25rem;font-weight:800;margin-bottom:1.25rem;letter-spacing:-.01em}
.contact-details{display:flex;flex-direction:column;gap:1rem}
.contact-item{display:flex;align-items:flex-start;gap:.75rem}
.contact-item-icon{flex-shrink:0;width:32px;height:32px;background:var(--primary-light);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-top:2px}
.contact-item-icon svg{width:16px;height:16px;color:var(--primary)}
.contact-item span,.contact-item a{font-size:.9rem;line-height:1.55;word-break:break-word}
.contact-item a{transition:color .2s}
.contact-item a:hover{color:var(--primary)}
.contact-map{position:relative;border-radius:var(--radius);overflow:hidden;border:1px solid var(--border);height:280px;background:#1a1a1a}
@media(min-width:1024px){.contact-map{height:auto;min-height:288px}}
.contact-map iframe{width:100%;height:100%;min-height:280px;border:0;display:block}
.map-cta{position:absolute;left:.75rem;bottom:.75rem;display:inline-flex;align-items:center;gap:.4rem;padding:.55rem .85rem;background:rgba(20,20,20,.92);color:var(--fg);border:1px solid var(--border);border-radius:.5rem;font-size:.8rem;font-weight:600;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);box-shadow:0 4px 14px rgba(0,0,0,.3);transition:background .2s,color .2s,border-color .2s,transform .15s;z-index:1}
.map-cta:hover{background:var(--primary);border-color:var(--primary);color:#fff;transform:translateY(-1px)}
.map-cta svg{color:var(--primary);transition:color .2s}
.map-cta:hover svg{color:#fff}
.contact > .container > .reveal:last-child p{font-size:.95rem;color:var(--fg-muted);line-height:1.65;margin-bottom:1.5rem}
.contact-buttons{display:flex;flex-direction:column;gap:.75rem}

/* FOOTER (redesigned) */
.site-footer{position:relative;background:var(--bg-deep);color:var(--fg);margin-top:0}
.site-footer::before{content:"";position:absolute;left:0;right:0;top:0;height:3px;background:linear-gradient(90deg,transparent 0%,var(--primary) 25%,#ef4444 50%,var(--primary) 75%,transparent 100%);opacity:.95}
.site-footer::after{content:"";position:absolute;left:0;right:0;top:3px;height:1px;background:linear-gradient(90deg,transparent,rgba(220,38,38,.25),transparent)}
.footer-top{padding:3.5rem 0 2.25rem;background:radial-gradient(ellipse at top,rgba(220,38,38,.07) 0%,transparent 60%)}
@media(min-width:768px){.footer-top{padding:4.5rem 0 3rem}}
.footer-grid{display:grid;grid-template-columns:1fr;gap:2.25rem}
@media(min-width:560px){.footer-grid{grid-template-columns:1fr 1fr;gap:2rem}}
@media(min-width:1024px){.footer-grid{grid-template-columns:2fr 1fr 1fr 1.4fr;gap:2.5rem}}
.footer-col-brand{grid-column:1/-1}
@media(min-width:1024px){.footer-col-brand{grid-column:auto}}
.footer-logo{height:40px;width:auto;margin-bottom:1.25rem;filter:brightness(0) invert(1)}
.footer-tagline{color:var(--fg-muted);font-size:.95rem;line-height:1.7;max-width:36ch;margin-bottom:1.5rem}
.footer-socials{display:flex;gap:.6rem}
.footer-social{width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.05);border:1px solid var(--border-soft);display:inline-flex;align-items:center;justify-content:center;color:var(--fg);transition:background .2s,color .2s,border-color .2s,transform .15s}
.footer-social:hover{background:var(--primary);border-color:var(--primary);color:#fff;transform:translateY(-2px)}
.footer-social-wa:hover{background:#22c55e;border-color:#22c55e}
.footer-col h4{font-size:.95rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;margin-bottom:1.25rem;position:relative;padding-bottom:.6rem;color:var(--fg)}
.footer-col h4::after{content:"";position:absolute;left:0;bottom:0;width:32px;height:2px;background:var(--primary);border-radius:1px}
.footer-col ul{display:flex;flex-direction:column;gap:.7rem}
.footer-col ul a,.footer-col-contact span,.footer-col-contact a{font-size:.9rem;color:var(--fg-muted);transition:color .2s;line-height:1.55}
.footer-col ul a:hover,.footer-col-contact a:hover{color:var(--primary)}
.footer-col-contact{font-style:normal}
.footer-col-contact ul{gap:.85rem}
.footer-col-contact li{display:flex;align-items:flex-start;gap:.65rem}
.footer-col-contact svg{flex-shrink:0;color:var(--primary);margin-top:2px}
.footer-bottom{border-top:1px solid var(--border-soft);background:rgba(0,0,0,.4);padding:1.25rem 0}
.footer-bottom-inner{display:flex;flex-direction:column;align-items:center;gap:.5rem;text-align:center}
@media(min-width:768px){.footer-bottom-inner{flex-direction:row;justify-content:space-between;text-align:left}}
.footer-copy{font-size:.85rem;color:var(--fg-faint)}
.footer-credit{font-size:.85rem;color:var(--fg-faint)}
.footer-credit a{color:var(--primary);transition:opacity .2s}
.footer-credit a:hover{opacity:.85;text-decoration:underline}

/* floating WhatsApp button */
.float-wa{position:fixed;right:1rem;bottom:1rem;width:56px;height:56px;border-radius:50%;background:#22c55e;color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 10px 25px rgba(34,197,94,.45);z-index:90;transition:transform .2s,box-shadow .2s}
.float-wa:hover{transform:translateY(-3px) scale(1.05);box-shadow:0 14px 30px rgba(34,197,94,.55)}
@media(min-width:768px){.float-wa{right:1.5rem;bottom:1.5rem;width:60px;height:60px}}

/* ANIMATIONS */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .6s ease,transform .6s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-stagger>*{opacity:0;transform:translateY(20px);transition:opacity .5s ease,transform .5s ease}
.reveal-stagger.visible>*:nth-child(1){transition-delay:0s}
.reveal-stagger.visible>*:nth-child(2){transition-delay:.08s}
.reveal-stagger.visible>*:nth-child(3){transition-delay:.16s}
.reveal-stagger.visible>*:nth-child(4){transition-delay:.24s}
.reveal-stagger.visible>*:nth-child(5){transition-delay:.32s}
.reveal-stagger.visible>*:nth-child(6){transition-delay:.4s}
.reveal-stagger.visible>*{opacity:1;transform:translateY(0)}

@media(prefers-reduced-motion:reduce){
 *,*::before,*::after{transition-duration:.01ms!important;animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important}
 .reveal,.reveal-stagger>*{opacity:1!important;transform:none!important}
}

/* small-screen polish */
@media(max-width:480px){
 .container{padding:0 1rem}
 .hero-content{padding:2.5rem 0}
 .hero h1{font-size:clamp(1.875rem,8vw,2.5rem)}
 .features-grid{padding:1.25rem 0;gap:1rem}
 .feature-icon{width:42px;height:42px}
 .feature-icon svg{width:20px;height:20px}
 .btn{width:100%;padding:.875rem 1.25rem}
 .footer-tagline{margin-left:auto;margin-right:auto;text-align:center}
 .footer-col-brand{text-align:center}
 .footer-col-brand .footer-logo{margin-left:auto;margin-right:auto}
 .footer-socials{justify-content:center}
 .footer-col h4{text-align:left}
 .insurance-tagline{font-size:1rem}
 .lightbox-prev,.lightbox-next{width:40px;height:40px}
}
