*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
--primary:#1E73BE;
--accent:#F59E0B;
--text:#1F2937;
--text-light:#6B7280;
--background:#FFFFFF;
--surface:#F8FAFC;
--border:#E5E7EB;
--hero-from:#1E3A5F;
--hero-to:#1E73BE;
--font:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
--font-heading:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
--radius:8px;
--max-width:1200px;
--section-padding:4rem 1.5rem;
}
html{font-size:16px;scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font);color:var(--text);background:var(--background);line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:var(--primary);text-decoration:none;transition:color .2s}
a:hover{color:var(--accent)}
h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);line-height:1.2;font-weight:700;color:var(--text)}
h1{font-size:2.5rem}h2{font-size:2rem}h3{font-size:1.5rem}h4{font-size:1.25rem}

.container{max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.875rem 2rem;border-radius:var(--radius);font-weight:600;font-size:1rem;cursor:pointer;border:none;transition:all .2s;text-decoration:none}
.btn-primary{background:var(--primary);color:#fff}
.btn-primary:hover{opacity:.9;transform:translateY(-1px);color:#fff}
.btn-accent{background:var(--accent);color:#fff}
.btn-accent:hover{opacity:.9;transform:translateY(-1px);color:#fff}
.btn-outline{background:transparent;color:var(--primary);border:2px solid var(--primary)}
.btn-outline:hover{background:var(--primary);color:#fff}

.header{background:#fff;border-bottom:1px solid var(--border);position:sticky;top:0;z-index:100;box-shadow:0 1px 3px rgba(0,0,0,.05)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.5rem;max-width:var(--max-width);margin:0 auto}
.logo{font-size:1.5rem;font-weight:800;color:var(--primary);text-decoration:none}
.nav{display:flex;gap:1.5rem;align-items:center}
.nav a{color:var(--text);font-weight:500;font-size:.95rem;transition:color .2s}
.nav a:hover,.nav a.active{color:var(--primary)}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:.5rem}
.nav-toggle svg{width:24px;height:24px;color:var(--text)}

.hero{background:linear-gradient(135deg,var(--hero-from),var(--hero-to));color:#fff;padding:5rem 1.5rem;text-align:center}
.hero h1{color:#fff;font-size:3rem;margin-bottom:1rem}
.hero p{font-size:1.25rem;opacity:.9;max-width:700px;margin:0 auto 2rem}
.hero .btn{font-size:1.125rem;padding:1rem 2.5rem}

.section{padding:var(--section-padding)}
.section-alt{background:var(--surface)}
.section-title{text-align:center;margin-bottom:2.5rem}
.section-title h2{margin-bottom:.5rem}
.section-title p{color:var(--text-light);max-width:600px;margin:0 auto}

.grid{display:grid;gap:1.5rem}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}

.card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:2rem;transition:box-shadow .2s}
.card:hover{box-shadow:0 4px 12px rgba(0,0,0,.08)}
.card-icon{width:48px;height:48px;background:var(--surface);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;margin-bottom:1rem;color:var(--primary)}
.card h3{margin-bottom:.5rem}
.card p{color:var(--text-light);font-size:.95rem}

.trust-bar{background:var(--surface);padding:2rem 1.5rem;border-bottom:1px solid var(--border)}
.trust-bar .container{display:flex;justify-content:center;gap:3rem;flex-wrap:wrap;align-items:center}
.trust-item{display:flex;align-items:center;gap:.5rem;font-weight:600;color:var(--text);font-size:.95rem}
.trust-item svg{color:var(--primary);width:20px;height:20px}

.testimonial{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:2rem}
.testimonial blockquote{font-style:italic;color:var(--text);margin-bottom:1rem;font-size:1.05rem;line-height:1.7}
.testimonial cite{color:var(--text-light);font-style:normal;font-weight:600}
.testimonial .stars{color:var(--accent);margin-bottom:.5rem}

.faq-item{border:1px solid var(--border);border-radius:var(--radius);margin-bottom:.75rem;overflow:hidden}
.faq-question{display:flex;justify-content:space-between;align-items:center;padding:1.25rem 1.5rem;cursor:pointer;background:#fff;border:none;width:100%;text-align:left;font-size:1rem;font-weight:600;color:var(--text);font-family:var(--font)}
.faq-question:hover{background:var(--surface)}
.faq-question svg{width:20px;height:20px;transition:transform .3s;flex-shrink:0;color:var(--text-light)}
.faq-question[aria-expanded="true"] svg{transform:rotate(180deg)}
.faq-answer{padding:0 1.5rem;max-height:0;overflow:hidden;transition:max-height .3s ease,padding .3s ease}
.faq-answer.open{max-height:500px;padding:0 1.5rem 1.25rem}
.faq-answer p{color:var(--text-light);line-height:1.7}

.cta-banner{background:linear-gradient(135deg,var(--hero-from),var(--hero-to));color:#fff;padding:4rem 1.5rem;text-align:center}
.cta-banner h2{color:#fff;margin-bottom:1rem}
.cta-banner p{color:rgba(255,255,255,.9);margin-bottom:2rem;font-size:1.125rem}

.lead-form{background:var(--surface);border-radius:var(--radius);padding:2.5rem;max-width:600px;margin:0 auto}
.lead-form h3{margin-bottom:1.5rem;text-align:center}
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;margin-bottom:.375rem;font-weight:600;font-size:.9rem;color:var(--text)}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:.75rem 1rem;border:1px solid var(--border);border-radius:var(--radius);font-size:1rem;font-family:var(--font);transition:border-color .2s}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(37,99,235,.1)}
.form-group textarea{min-height:100px;resize:vertical}
.form-error{color:#EF4444;font-size:.85rem;margin-top:.25rem;display:none}

.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.gallery-item{aspect-ratio:4/3;background:var(--surface);border-radius:var(--radius);overflow:hidden;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--text-light);font-size:.9rem}

.process-steps{counter-reset:step}
.step{display:flex;gap:1.5rem;align-items:flex-start;margin-bottom:2rem}
.step-number{counter-increment:step;width:48px;height:48px;background:var(--primary);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:1.25rem;flex-shrink:0}
.step-number::before{content:counter(step)}
.step-content h3{margin-bottom:.375rem}
.step-content p{color:var(--text-light)}

.footer{background:var(--text);color:#fff;padding:3rem 1.5rem}
.footer-inner{max-width:var(--max-width);margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr;gap:3rem}
.footer h4{color:#fff;margin-bottom:1rem}
.footer p,.footer a{color:rgba(255,255,255,.7);font-size:.95rem}
.footer a:hover{color:#fff}
.footer-links{list-style:none;padding:0}
.footer-links li{margin-bottom:.5rem}
.footer-bottom{max-width:var(--max-width);margin:2rem auto 0;padding-top:2rem;border-top:1px solid rgba(255,255,255,.15);text-align:center;color:rgba(255,255,255,.5);font-size:.85rem}

.breadcrumbs{padding:.75rem 1.5rem;background:var(--surface);border-bottom:1px solid var(--border);font-size:.875rem}
.breadcrumbs a{color:var(--text-light)}
.breadcrumbs span{color:var(--text-light);margin:0 .5rem}
.breadcrumbs .current{color:var(--text);font-weight:500}

.service-area{background:var(--surface)}
.area-list{display:flex;flex-wrap:wrap;gap:.75rem;justify-content:center}
.area-tag{padding:.5rem 1rem;background:#fff;border:1px solid var(--border);border-radius:999px;font-size:.9rem;color:var(--text)}

.sticky-call{position:fixed;bottom:1.5rem;right:1.5rem;z-index:99;width:56px;height:56px;background:var(--accent);color:#fff;border:none;border-radius:50%;cursor:pointer;box-shadow:0 4px 12px rgba(0,0,0,.2);display:flex;align-items:center;justify-content:center;transition:transform .2s}
.sticky-call:hover{transform:scale(1.1)}
.sticky-call svg{width:24px;height:24px}

@media(max-width:768px){
h1{font-size:2rem}h2{font-size:1.5rem}
.hero h1{font-size:2.25rem}
.hero{padding:3rem 1.5rem}
.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
.nav{display:none;position:absolute;top:100%;left:0;right:0;background:#fff;flex-direction:column;padding:1rem;border-bottom:1px solid var(--border);box-shadow:0 4px 8px rgba(0,0,0,.1)}
.nav.open{display:flex}
.nav-toggle{display:block}
.footer-inner{grid-template-columns:1fr}
.gallery-grid{grid-template-columns:repeat(2,1fr)}
.trust-bar .container{gap:1.5rem}
}
@media(max-width:480px){
.gallery-grid{grid-template-columns:1fr}
.section{padding:2.5rem 1rem}
}