*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--brand:hsl(182,80%,26%);--brand-dark:hsl(182,80%,18%);--accent:hsl(35,87%,44%);--accent-light:hsl(35,87%,54%);--bg:hsl(215,28%,15%);--bg-alt:hsl(215,22%,20%);--surface:hsl(0,0%,100%);--surface-alt:hsl(210,20%,97%);--text:hsl(215,20%,20%);--text-light:hsl(215,10%,45%);--text-inv:hsl(0,0%,100%);--gap:1.5rem;--radius:0.375rem;--shadow:0 0.125rem 0.5rem hsla(215,28%,15%,0.12);--shadow-lg:0 0.5rem 1.5rem hsla(215,28%,15%,0.18)}
html{scroll-behavior:smooth;font-size:100%}
body{font-family:'Inter',sans-serif;line-height:1.6;color:var(--text);background:var(--surface)}
h1,h2,h3,h4,h5{font-family:'Merriweather',serif;line-height:1.3;color:var(--bg)}
h1{font-size:clamp(1.75rem,4vw,2.75rem)}
h2{font-size:clamp(1.5rem,3vw,2.25rem)}
h3{font-size:clamp(1.2rem,2.5vw,1.5rem)}
h4{font-size:1.125rem}
p{margin-bottom:1rem}
a{color:var(--brand);text-decoration:none;transition:color .2s}
a:hover{color:var(--brand-dark)}
img{max-width:100%;height:auto;display:block}
ul{list-style:none}
.site-header{position:sticky;top:0;z-index:100;background:var(--surface);box-shadow:var(--shadow)}
.header-wrap{display:flex;align-items:center;justify-content:space-between;max-width:75rem;margin:0 auto;padding:0.75rem var(--gap)}
.brand{display:flex;align-items:center;gap:0.5rem;font-weight:700;color:var(--bg);font-size:1.125rem}
.brand-mark{display:inline-flex;align-items:center;justify-content:center;width:2.25rem;height:2.25rem;background:var(--brand);color:var(--text-inv);border-radius:var(--radius);font-weight:700;font-size:0.875rem}
.brand-text{white-space:nowrap}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:0.25rem}
.nav-toggle .bar{display:block;width:1.5rem;height:0.15rem;background:var(--bg);margin:0.3rem 0;transition:transform .3s,opacity .3s}
.nav-list{display:flex;align-items:center;gap:1.75rem}
.nav-list a{color:var(--text);font-size:0.9375rem;font-weight:500;padding:0.25rem 0;position:relative}
.nav-list a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:0.125rem;background:var(--brand);transition:width .25s}
.nav-list a:hover::after,.nav-list a.active::after{width:100%}
.nav-list a.active{color:var(--brand)}
.has-dropdown{position:relative}
.dropdown-menu{display:none;position:absolute;top:100%;left:0;background:var(--surface);box-shadow:var(--shadow-lg);border-radius:var(--radius);min-width:14rem;padding:0.5rem 0;z-index:50}
.has-dropdown:hover .dropdown-menu{display:block}
.dropdown-menu a{display:block;padding:0.5rem 1rem;font-size:0.875rem}
.dropdown-menu a:hover{background:var(--surface-alt)}
.dropdown-menu a::after{display:none}
.hero-section{position:relative;min-height:32rem;display:flex;align-items:center;justify-content:center;text-align:center;color:var(--text-inv);overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,hsla(215,28%,15%,0.75),hsla(182,80%,18%,0.65));z-index:1}
.hero-content{position:relative;z-index:2;max-width:48rem;padding:2rem var(--gap)}
.hero-content h1{color:var(--text-inv);margin-bottom:1rem}
.hero-content p{font-size:clamp(1rem,2vw,1.25rem);margin-bottom:1.5rem;opacity:0.92}
.btn{display:inline-flex;align-items:center;gap:0.5rem;padding:0.75rem 1.75rem;border-radius:var(--radius);font-weight:600;font-size:0.9375rem;border:none;cursor:pointer;transition:background .2s,transform .15s}
.btn-primary{background:var(--accent);color:var(--text-inv)}
.btn-primary:hover{background:var(--accent-light);color:var(--text-inv);transform:translateY(-0.0625rem)}
.btn-outline{border:0.125rem solid var(--text-inv);color:var(--text-inv);background:transparent}
.btn-outline:hover{background:var(--text-inv);color:var(--bg)}
.btn-brand{background:var(--brand);color:var(--text-inv)}
.btn-brand:hover{background:var(--brand-dark);color:var(--text-inv)}
.section{padding:4rem var(--gap)}
.section-alt{background:var(--surface-alt)}
.section-dark{background:var(--bg);color:var(--text-inv)}
.section-dark h2,.section-dark h3,.section-dark h4{color:var(--text-inv)}
.container{max-width:75rem;margin:0 auto}
.section-heading{text-align:center;margin-bottom:2.5rem}
.section-heading p{color:var(--text-light);max-width:36rem;margin:0.75rem auto 0}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:var(--gap)}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gap)}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--gap)}
.srv-card{background:var(--surface);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:transform .25s,box-shadow .25s}
.srv-card:hover{transform:translateY(-0.25rem);box-shadow:var(--shadow-lg)}
.srv-card-img{height:12.5rem;overflow:hidden}
.srv-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.srv-card:hover .srv-card-img img{transform:scale(1.05)}
.srv-card-body{padding:1.25rem}
.srv-card-body h3{font-size:1.125rem;margin-bottom:0.5rem}
.srv-card-body p{font-size:0.9375rem;color:var(--text-light);margin-bottom:0.75rem}
.srv-card-body a{font-weight:600;font-size:0.875rem}
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.feature-item{text-align:center;padding:1.5rem}
.feature-icon{width:3.5rem;height:3.5rem;margin:0 auto 1rem;background:var(--brand);color:var(--text-inv);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.5rem}
.feature-item h4{margin-bottom:0.5rem}
.feature-item p{font-size:0.9375rem;color:var(--text-light)}
.steps-row{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;text-align:center}
.step-card{padding:2rem 1.5rem}
.step-num{width:3rem;height:3rem;border-radius:50%;background:var(--accent);color:var(--text-inv);font-weight:700;font-size:1.25rem;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem}
.step-card h3{margin-bottom:0.5rem;font-size:1.125rem}
.testimonial-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gap)}
.testimonial-card{background:var(--surface);border-radius:var(--radius);padding:1.75rem;box-shadow:var(--shadow)}
.testimonial-card p{font-style:italic;margin-bottom:1rem;color:var(--text)}
.testimonial-author{font-weight:600;font-size:0.875rem;color:var(--brand)}
.stars{color:var(--accent);margin-bottom:0.75rem;font-size:1rem}
.faq-list{max-width:48rem;margin:0 auto}
.faq-item{border-bottom:0.0625rem solid hsl(210,20%,90%);padding:1rem 0}
.faq-q{display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-weight:600;font-size:1rem;gap:1rem}
.faq-q::after{content:'+';font-size:1.5rem;flex-shrink:0;transition:transform .3s;color:var(--brand)}
.faq-item.open .faq-q::after{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease;font-size:0.9375rem;color:var(--text-light)}
.faq-item.open .faq-a{max-height:25rem;padding-top:0.75rem}
.cta-banner{text-align:center;padding:4rem var(--gap);background:linear-gradient(135deg,var(--brand),var(--brand-dark))}
.cta-banner h2{color:var(--text-inv);margin-bottom:1rem}
.cta-banner p{color:hsla(0,0%,100%,0.88);margin-bottom:1.5rem;max-width:32rem;margin-left:auto;margin-right:auto}
.about-intro{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.about-intro-img{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-lg)}
.about-intro-text h2{margin-bottom:1rem}
.about-intro-text p{color:var(--text-light)}
.stat-row{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--gap);text-align:center;padding:3rem 0}
.stat-item h3{font-size:2rem;color:var(--brand)}
.stat-item p{font-size:0.875rem;color:var(--text-light)}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gap)}
.blog-card{background:var(--surface);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:transform .25s}
.blog-card:hover{transform:translateY(-0.25rem)}
.blog-card-img{height:12rem;overflow:hidden}
.blog-card-img img{width:100%;height:100%;object-fit:cover}
.blog-card-body{padding:1.25rem}
.blog-card-body .date{font-size:0.8125rem;color:var(--text-light);margin-bottom:0.5rem}
.blog-card-body h3{font-size:1.0625rem;margin-bottom:0.5rem}
.blog-card-body h3 a{color:var(--bg)}
.blog-card-body p{font-size:0.9375rem;color:var(--text-light)}
.article-header{text-align:center;padding:3rem var(--gap) 2rem;background:var(--surface-alt)}
.article-header h1{margin-bottom:0.75rem}
.article-header .meta{color:var(--text-light);font-size:0.875rem}
.article-body{max-width:48rem;margin:0 auto;padding:2rem var(--gap) 4rem}
.article-body h2{margin:2rem 0 1rem}
.article-body h3{margin:1.5rem 0 0.75rem}
.article-body ul,.article-body ol{margin:1rem 0 1rem 1.5rem}
.article-body li{margin-bottom:0.5rem;color:var(--text-light)}
.article-body p{color:var(--text-light)}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem}
.contact-info h2{margin-bottom:1.5rem}
.contact-info ul{margin-bottom:1.5rem}
.contact-info li{padding:0.75rem 0;border-bottom:0.0625rem solid hsl(210,20%,90%);font-size:0.9375rem}
.contact-info li strong{display:block;font-size:0.8125rem;color:var(--text-light);margin-bottom:0.25rem}
.contact-form h2{margin-bottom:1.5rem}
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;font-weight:500;font-size:0.875rem;margin-bottom:0.375rem}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:0.75rem;border:0.0625rem solid hsl(210,20%,85%);border-radius:var(--radius);font-family:inherit;font-size:1rem;transition:border-color .2s}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{outline:none;border-color:var(--brand)}
.form-group textarea{resize:vertical;min-height:7.5rem}
.policy-page{max-width:48rem;margin:0 auto;padding:3rem var(--gap) 4rem}
.policy-page h1{margin-bottom:1.5rem;text-align:center}
.policy-page h2{margin:2rem 0 1rem;font-size:1.375rem}
.policy-page h3{margin:1.5rem 0 0.75rem}
.policy-page p,.policy-page li{color:var(--text-light);font-size:0.9375rem}
.policy-page ul,.policy-page ol{margin:1rem 0 1rem 1.5rem}
.policy-page li{margin-bottom:0.375rem;list-style:disc}
.thankyou-section{text-align:center;padding:6rem var(--gap);min-height:60vh;display:flex;flex-direction:column;align-items:center;justify-content:center}
.thankyou-section h1{margin-bottom:1rem;color:var(--brand)}
.thankyou-section p{max-width:28rem;color:var(--text-light);margin-bottom:1.5rem}
.service-hero{position:relative;padding:4rem var(--gap);background:var(--bg);color:var(--text-inv);text-align:center}
.service-hero h1{color:var(--text-inv);margin-bottom:0.75rem}
.service-hero p{opacity:0.88;max-width:36rem;margin:0 auto}
.service-body{padding:3rem var(--gap)}
.service-content{max-width:75rem;margin:0 auto}
.service-split{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;margin-bottom:3rem}
.service-split img{border-radius:var(--radius);box-shadow:var(--shadow)}
.service-split h2{margin-bottom:1rem}
.service-split p{color:var(--text-light)}
.service-split ul{margin:1rem 0 0 1.5rem}
.service-split li{margin-bottom:0.5rem;color:var(--text-light);list-style:disc}
.site-footer{background:var(--bg);color:var(--text-inv);padding:3rem var(--gap) 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2rem;max-width:75rem;margin:0 auto;padding-bottom:2.5rem}
.site-footer h3{font-size:1.25rem;margin-bottom:1rem;color:var(--text-inv)}
.site-footer h4{font-size:1rem;margin-bottom:1rem;color:var(--text-inv)}
.site-footer p{font-size:0.875rem;color:hsla(0,0%,100%,0.7);line-height:1.7}
.reg-info{font-size:0.8125rem;color:hsla(0,0%,100%,0.5);margin-top:0.75rem}
.site-footer ul li{margin-bottom:0.5rem}
.site-footer ul a{color:hsla(0,0%,100%,0.7);font-size:0.875rem}
.site-footer ul a:hover{color:var(--text-inv)}
.contact-list li{font-size:0.875rem;color:hsla(0,0%,100%,0.7)}
.footer-bottom{border-top:0.0625rem solid hsla(0,0%,100%,0.1);padding:1.25rem 0}
.footer-bottom-inner{max-width:75rem;margin:0 auto;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.footer-bottom p{font-size:0.8125rem;color:hsla(0,0%,100%,0.5)}
.policy-links{display:flex;gap:1.25rem;flex-wrap:wrap}
.policy-links a{font-size:0.8125rem;color:hsla(0,0%,100%,0.5)}
.policy-links a:hover{color:var(--text-inv)}
.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:var(--bg);color:var(--text-inv);z-index:9999;box-shadow:0 -0.25rem 1rem hsla(0,0%,0%,0.3);padding:1.25rem var(--gap)}
.cookie-inner{max-width:75rem;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap}
.cookie-inner p{font-size:0.875rem;flex:1;margin-bottom:0;color:hsla(0,0%,100%,0.85)}
.cookie-actions{display:flex;gap:0.75rem;flex-shrink:0}
.btn-accept{padding:0.5rem 1.25rem;background:var(--brand);color:var(--text-inv);border:none;border-radius:var(--radius);font-weight:600;cursor:pointer;font-size:0.875rem}
.btn-accept:hover{background:var(--brand-dark)}
.btn-reject{padding:0.5rem 1.25rem;background:transparent;color:hsla(0,0%,100%,0.7);border:0.0625rem solid hsla(0,0%,100%,0.3);border-radius:var(--radius);font-weight:600;cursor:pointer;font-size:0.875rem}
.btn-reject:hover{border-color:var(--text-inv);color:var(--text-inv)}
.cookie-settings-btn{position:fixed;bottom:1rem;left:1rem;width:2.75rem;height:2.75rem;border-radius:50%;background:var(--bg);color:var(--text-inv);border:none;font-size:1.25rem;cursor:pointer;box-shadow:var(--shadow-lg);z-index:9998;display:flex;align-items:center;justify-content:center}
.cookie-settings-btn:hover{background:var(--brand)}
.reveal{opacity:0;transform:translateY(1.5rem);transition:opacity .6s ease,transform .6s ease}
.reveal.visible{opacity:1;transform:none}
@media(max-width:1008px){.grid-3,.features-grid,.testimonial-grid,.blog-grid,.steps-row{grid-template-columns:repeat(2,1fr)}.footer-grid{grid-template-columns:1fr 1fr}.grid-4,.stat-row{grid-template-columns:repeat(2,1fr)}}
@media(max-width:752px){.nav-toggle{display:block}.main-nav{display:none;position:absolute;top:100%;left:0;right:0;background:var(--surface);box-shadow:var(--shadow-lg);padding:1rem}.main-nav.open{display:block}.nav-list{flex-direction:column;gap:0}.nav-list li{width:100%}.nav-list a{display:block;padding:0.75rem var(--gap)}.has-dropdown:hover .dropdown-menu{display:none}.has-dropdown.open .dropdown-menu{display:block;position:static;box-shadow:none;padding-left:1rem}.grid-2,.grid-3,.grid-4,.features-grid,.testimonial-grid,.blog-grid,.steps-row,.stat-row,.about-intro,.contact-grid,.service-split{grid-template-columns:1fr}.footer-grid{grid-template-columns:1fr}.footer-bottom-inner{flex-direction:column;text-align:center}.hero-section{min-height:24rem}.cookie-inner{flex-direction:column;text-align:center}}
