*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--primary:#1a3a5c;--secondary:#2d7d9a;--accent:#e8913a;--dark:#0f1c2e;--light:#f7f9fc;--text:#2c3e50;--text-light:#5a6c7d;--white:#ffffff;--border:#dce4ec;--shadow:0 4px 20px rgba(0,0,0,0.08);--radius:6px}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;line-height:1.7;color:var(--text);background:var(--white)}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit;transition:color 0.3s}
ul,ol{list-style:none}
h1,h2,h3,h4,h5,h6{line-height:1.3;font-weight:600;color:var(--dark)}
h1{font-size:2.75rem}
h2{font-size:2.1rem}
h3{font-size:1.5rem}
p{margin-bottom:1rem}
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 1.5rem}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:0.875rem 2rem;border-radius:var(--radius);font-weight:600;font-size:1rem;cursor:pointer;transition:all 0.3s;border:none}
.btn-primary{background:var(--accent);color:var(--white)}
.btn-primary:hover{background:#d47f2a;transform:translateY(-2px)}
.btn-secondary{background:transparent;color:var(--primary);border:2px solid var(--primary)}
.btn-secondary:hover{background:var(--primary);color:var(--white)}
.btn-light{background:var(--white);color:var(--primary)}
.btn-light:hover{background:var(--light)}

/* Header */
.header{position:fixed;top:0;left:0;width:100%;background:var(--white);z-index:1000;box-shadow:var(--shadow)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:1rem 0;max-width:1200px;margin:0 auto;padding-left:1.5rem;padding-right:1.5rem}
.logo{font-size:1.5rem;font-weight:700;color:var(--primary)}
.logo span{color:var(--accent)}
.nav{display:flex;align-items:center;gap:2rem}
.nav-links{display:flex;gap:1.75rem}
.nav-links a{color:var(--text);font-weight:500;position:relative}
.nav-links a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:2px;background:var(--accent);transition:width 0.3s}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
.nav-cta{background:var(--primary);color:var(--white);padding:0.625rem 1.25rem;border-radius:var(--radius);font-weight:600}
.nav-cta:hover{background:var(--secondary)}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:0.5rem}
.hamburger span{width:24px;height:2px;background:var(--dark);transition:all 0.3s}
.mobile-nav{display:none;position:absolute;top:100%;left:0;width:100%;background:var(--white);padding:1.5rem;box-shadow:var(--shadow)}
.mobile-nav.active{display:block}
.mobile-nav a{display:block;padding:0.75rem 0;border-bottom:1px solid var(--border);color:var(--text)}

/* Split Section */
.split{display:flex;min-height:100vh;padding-top:80px}
.split-content,.split-visual{flex:1;display:flex;align-items:center;justify-content:center;padding:4rem 3rem}
.split-content{background:var(--white)}
.split-visual{background:linear-gradient(135deg,var(--primary) 0%,var(--secondary) 100%);position:relative;overflow:hidden}
.split-visual::before{content:'';position:absolute;width:300px;height:300px;border:40px solid rgba(255,255,255,0.1);border-radius:50%;top:-50px;right:-50px}
.split-visual::after{content:'';position:absolute;width:200px;height:200px;background:rgba(255,255,255,0.05);border-radius:50%;bottom:10%;left:10%}
.split-text{max-width:520px}
.split-text .tagline{color:var(--accent);font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:1rem;font-size:0.875rem}
.split-text h1{margin-bottom:1.5rem;color:var(--dark)}
.split-text p{color:var(--text-light);font-size:1.125rem;margin-bottom:2rem}
.split-buttons{display:flex;gap:1rem;flex-wrap:wrap}
.hero-stats{display:flex;gap:3rem;margin-top:3rem;padding-top:2rem;border-top:1px solid var(--border)}
.stat-item h4{font-size:2rem;color:var(--primary)}
.stat-item p{color:var(--text-light);font-size:0.875rem}
.visual-content{color:var(--white);text-align:center;position:relative;z-index:1}
.visual-content h2{font-size:2.5rem;color:var(--white);margin-bottom:1rem}
.visual-content p{opacity:0.9;max-width:400px}
.visual-icon{font-size:5rem;margin-bottom:2rem;opacity:0.9}

/* Reverse Split */
.split.reverse{flex-direction:row-reverse}
.split.reverse .split-visual{background:var(--light)}
.split.reverse .visual-content{color:var(--dark)}
.split.reverse .visual-content h2{color:var(--primary)}

/* Section Base */
.section{padding:5rem 0}
.section-header{text-align:center;max-width:700px;margin:0 auto 3.5rem}
.section-header .label{color:var(--accent);font-weight:600;text-transform:uppercase;letter-spacing:1px;font-size:0.875rem;margin-bottom:0.75rem}
.section-header h2{margin-bottom:1rem}
.section-header p{color:var(--text-light);font-size:1.1rem}

/* Alt Backgrounds */
.bg-light{background:var(--light)}
.bg-dark{background:var(--dark);color:var(--white)}
.bg-dark h2,.bg-dark h3{color:var(--white)}
.bg-dark p{color:rgba(255,255,255,0.8)}
.bg-gradient{background:linear-gradient(135deg,var(--primary) 0%,var(--secondary) 100%);color:var(--white)}
.bg-gradient h2,.bg-gradient h3{color:var(--white)}

/* Services Cards */
.services-grid{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center}
.service-card{flex:1 1 calc(33.333% - 2rem);min-width:280px;max-width:380px;background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:transform 0.3s,box-shadow 0.3s}
.service-card:hover{transform:translateY(-8px);box-shadow:0 12px 40px rgba(0,0,0,0.12)}
.service-img{height:180px;background:linear-gradient(135deg,var(--primary),var(--secondary));display:flex;align-items:center;justify-content:center}
.service-img span{font-size:4rem}
.service-body{padding:1.75rem}
.service-body h3{margin-bottom:0.75rem}
.service-body p{color:var(--text-light);font-size:0.95rem;margin-bottom:1.25rem}
.service-price{display:flex;align-items:baseline;gap:0.5rem;margin-bottom:1.25rem}
.service-price .amount{font-size:1.75rem;font-weight:700;color:var(--primary)}
.service-price .note{color:var(--text-light);font-size:0.875rem}

/* Split Features */
.features-split{display:flex;align-items:stretch;min-height:500px}
.features-content,.features-image{flex:1}
.features-content{padding:4rem 3rem;display:flex;flex-direction:column;justify-content:center}
.features-image{background:var(--secondary);position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center}
.features-image span{font-size:8rem;opacity:0.3}
.feature-list{display:flex;flex-direction:column;gap:2rem;max-width:500px}
.feature-item{display:flex;gap:1.25rem}
.feature-icon{width:50px;height:50px;background:var(--light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;font-size:1.5rem;flex-shrink:0}
.feature-text h4{margin-bottom:0.375rem}
.feature-text p{color:var(--text-light);font-size:0.95rem;margin:0}

/* Process Steps */
.process-wrap{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center;position:relative}
.process-step{flex:1 1 220px;max-width:280px;text-align:center;position:relative;padding:2rem 1.5rem}
.process-num{width:60px;height:60px;background:var(--accent);color:var(--white);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.5rem;font-weight:700;margin:0 auto 1.5rem}
.process-step h4{margin-bottom:0.5rem}
.process-step p{color:var(--text-light);font-size:0.95rem;margin:0}

/* Testimonials */
.testimonials-wrap{display:flex;gap:2rem;flex-wrap:wrap;justify-content:center}
.testimonial-card{flex:1 1 calc(50% - 1rem);min-width:300px;max-width:560px;background:var(--white);padding:2.5rem;border-radius:var(--radius);box-shadow:var(--shadow);position:relative}
.testimonial-card::before{content:'"';position:absolute;top:1rem;left:1.5rem;font-size:4rem;color:var(--accent);opacity:0.3;font-family:Georgia,serif;line-height:1}
.testimonial-text{font-size:1.1rem;color:var(--text);margin-bottom:1.5rem;padding-top:1.5rem;font-style:italic}
.testimonial-author{display:flex;align-items:center;gap:1rem}
.author-avatar{width:50px;height:50px;background:var(--secondary);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--white);font-weight:600}
.author-info h5{margin-bottom:0.125rem;font-size:1rem}
.author-info p{color:var(--text-light);font-size:0.875rem;margin:0}

/* Stats Row */
.stats-row{display:flex;flex-wrap:wrap;justify-content:center;gap:3rem;padding:3rem 0}
.stat-box{text-align:center;min-width:150px}
.stat-box h3{font-size:3rem;color:var(--accent);margin-bottom:0.5rem}
.stat-box p{color:rgba(255,255,255,0.8);font-size:1rem;margin:0}

/* CTA Sections */
.cta-split{display:flex;align-items:stretch}
.cta-content,.cta-form{flex:1;padding:4rem 3rem}
.cta-content{background:var(--primary);color:var(--white);display:flex;flex-direction:column;justify-content:center}
.cta-content h2{color:var(--white);margin-bottom:1rem}
.cta-content p{opacity:0.9;margin-bottom:2rem;font-size:1.1rem}
.cta-list{display:flex;flex-direction:column;gap:1rem}
.cta-list li{display:flex;align-items:center;gap:0.75rem}
.cta-list li::before{content:'✓';width:24px;height:24px;background:var(--accent);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:0.75rem}
.cta-form{background:var(--light)}
.form-wrapper{max-width:450px;margin:0 auto}
.form-wrapper h3{margin-bottom:0.5rem}
.form-wrapper>p{color:var(--text-light);margin-bottom:2rem}

/* Forms */
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;margin-bottom:0.5rem;font-weight:500;color:var(--dark)}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:0.875rem 1rem;border:1px solid var(--border);border-radius:var(--radius);font-size:1rem;font-family:inherit;transition:border-color 0.3s,box-shadow 0.3s}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--secondary);box-shadow:0 0 0 3px rgba(45,125,154,0.1)}
.form-group textarea{resize:vertical;min-height:100px}
.form-submit{width:100%;margin-top:0.5rem}

/* About Split */
.about-grid{display:flex;gap:4rem;align-items:center}
.about-image{flex:1;min-height:400px;background:linear-gradient(135deg,var(--secondary),var(--primary));border-radius:var(--radius);display:flex;align-items:center;justify-content:center}
.about-image span{font-size:8rem;opacity:0.4}
.about-text{flex:1}
.about-text h2{margin-bottom:1.5rem}
.about-text p{color:var(--text-light);margin-bottom:1rem}
.about-highlights{display:flex;flex-wrap:wrap;gap:1.5rem;margin-top:2rem}
.highlight-item{display:flex;align-items:center;gap:0.75rem}
.highlight-item span:first-child{font-size:1.5rem}

/* Contact Layout */
.contact-grid{display:flex;gap:4rem}
.contact-info{flex:1}
.contact-info h2{margin-bottom:1rem}
.contact-info>p{color:var(--text-light);margin-bottom:2rem}
.info-list{display:flex;flex-direction:column;gap:1.5rem}
.info-item{display:flex;gap:1rem}
.info-icon{width:50px;height:50px;background:var(--light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;font-size:1.25rem;flex-shrink:0}
.info-text h4{margin-bottom:0.25rem}
.info-text p{color:var(--text-light);margin:0;font-size:0.95rem}
.contact-map{flex:1;min-height:400px;background:var(--light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center}
.contact-map span{font-size:6rem;opacity:0.3}

/* Footer */
.footer{background:var(--dark);color:rgba(255,255,255,0.7);padding:4rem 0 2rem}
.footer-grid{display:flex;flex-wrap:wrap;gap:3rem;margin-bottom:3rem}
.footer-col{flex:1;min-width:200px}
.footer-col h4{color:var(--white);margin-bottom:1.25rem;font-size:1.1rem}
.footer-col p{font-size:0.95rem;line-height:1.8}
.footer-col ul{display:flex;flex-direction:column;gap:0.625rem}
.footer-col a{color:rgba(255,255,255,0.7);font-size:0.95rem;transition:color 0.3s}
.footer-col a:hover{color:var(--accent)}
.footer-logo{font-size:1.5rem;font-weight:700;color:var(--white);margin-bottom:1rem}
.footer-logo span{color:var(--accent)}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.1);padding-top:2rem;display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:1rem}
.footer-bottom p{font-size:0.875rem;margin:0}
.footer-links{display:flex;gap:1.5rem}
.footer-links a{font-size:0.875rem;color:rgba(255,255,255,0.6)}
.footer-links a:hover{color:var(--white)}

/* Cookie Banner */
.cookie-banner{position:fixed;bottom:0;left:0;width:100%;background:var(--dark);color:var(--white);padding:1.25rem;z-index:9999;display:none}
.cookie-banner.show{display:block}
.cookie-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap}
.cookie-inner p{margin:0;font-size:0.95rem;flex:1}
.cookie-inner a{color:var(--accent);text-decoration:underline}
.cookie-buttons{display:flex;gap:1rem}
.cookie-btn{padding:0.625rem 1.25rem;border-radius:var(--radius);font-weight:600;cursor:pointer;border:none;font-size:0.875rem}
.cookie-accept{background:var(--accent);color:var(--white)}
.cookie-reject{background:transparent;color:var(--white);border:1px solid rgba(255,255,255,0.3)}

/* Sticky CTA */
.sticky-cta{position:fixed;bottom:2rem;right:2rem;z-index:900;opacity:0;visibility:hidden;transition:all 0.3s}
.sticky-cta.visible{opacity:1;visibility:visible}
.sticky-cta a{display:flex;align-items:center;gap:0.5rem;background:var(--accent);color:var(--white);padding:1rem 1.5rem;border-radius:50px;font-weight:600;box-shadow:0 4px 20px rgba(232,145,58,0.4)}
.sticky-cta a:hover{transform:scale(1.05)}

/* Thanks Page */
.thanks-wrap{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:2rem;background:var(--light)}
.thanks-box{background:var(--white);padding:4rem;border-radius:var(--radius);text-align:center;max-width:600px;box-shadow:var(--shadow)}
.thanks-icon{font-size:5rem;margin-bottom:2rem}
.thanks-box h1{margin-bottom:1rem;color:var(--primary)}
.thanks-box p{color:var(--text-light);margin-bottom:2rem;font-size:1.1rem}

/* Legal Pages */
.legal-page{padding-top:120px;padding-bottom:5rem}
.legal-content{max-width:800px;margin:0 auto}
.legal-content h1{margin-bottom:2rem;padding-bottom:1rem;border-bottom:2px solid var(--border)}
.legal-content h2{margin-top:2.5rem;margin-bottom:1rem;font-size:1.5rem}
.legal-content p,.legal-content li{color:var(--text-light);margin-bottom:1rem}
.legal-content ul{padding-left:1.5rem;margin-bottom:1.5rem}
.legal-content ul li{margin-bottom:0.5rem;list-style:disc}

/* Responsive */
@media(max-width:1024px){
.split{flex-direction:column;min-height:auto}
.split.reverse{flex-direction:column}
.split-content,.split-visual{padding:3rem 2rem}
.split-visual{min-height:50vh}
.features-split{flex-direction:column}
.features-image{min-height:300px}
.cta-split{flex-direction:column}
.about-grid{flex-direction:column;gap:2rem}
.about-image{min-height:300px}
.contact-grid{flex-direction:column;gap:2rem}
}
@media(max-width:768px){
h1{font-size:2rem}
h2{font-size:1.75rem}
.nav-links,.nav-cta{display:none}
.hamburger{display:flex}
.hero-stats{flex-direction:column;gap:1.5rem}
.testimonials-wrap{flex-direction:column}
.testimonial-card{min-width:100%}
.stats-row{gap:2rem}
.stat-box h3{font-size:2.25rem}
.footer-grid{flex-direction:column;gap:2rem}
.footer-bottom{flex-direction:column;text-align:center}
.cookie-inner{flex-direction:column;text-align:center}
.sticky-cta{right:1rem;bottom:1rem}
.sticky-cta a{padding:0.875rem 1.25rem;font-size:0.875rem}
}
@media(max-width:480px){
.container{padding:0 1rem}
.split-content,.split-visual{padding:2.5rem 1.5rem}
.section{padding:3.5rem 0}
.btn{padding:0.75rem 1.5rem;font-size:0.95rem}
.service-card{min-width:100%}
.process-step{flex:1 1 100%}
}
