*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--primary:#1a1a2e;--secondary:#16213e;--accent:#e94560;--light:#f5f5f5;--dark:#0f0f23;--text:#333;--text-light:#666;--white:#fff;--shadow:0 4px 20px rgba(0,0,0,0.08);--radius:8px}
html{scroll-behavior:smooth}
body{font-family:'Segoe UI',Tahoma,Geneva,Verdana,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 .3s}
ul{list-style:none}
.container{width:90%;max-width:1200px;margin:0 auto}

header{position:fixed;top:0;left:0;width:100%;z-index:1000;background:rgba(255,255,255,0.97);box-shadow:var(--shadow);transition:all .3s}
.header-inner{display:flex;justify-content:space-between;align-items:center;padding:1rem 0}
.logo{font-size:1.5rem;font-weight:700;color:var(--primary)}
.logo span{color:var(--accent)}
nav ul{display:flex;gap:2rem}
nav a{font-weight:500;position:relative;padding:.5rem 0}
nav a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--accent);transition:width .3s}
nav a:hover::after{width:100%}
.mobile-toggle{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:.5rem}
.mobile-toggle span{width:25px;height:2px;background:var(--primary);transition:all .3s}

.hero-split{min-height:100vh;display:flex;flex-wrap:wrap;padding-top:80px}
.hero-content{flex:1 1 50%;display:flex;flex-direction:column;justify-content:center;padding:4rem;background:var(--light)}
.hero-visual{flex:1 1 50%;background:linear-gradient(135deg,var(--primary),var(--secondary));display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.hero-visual::before{content:'';position:absolute;width:300px;height:300px;border:3px solid rgba(255,255,255,0.1);border-radius:50%;top:20%;left:10%}
.hero-visual::after{content:'';position:absolute;width:200px;height:200px;background:var(--accent);opacity:.2;border-radius:50%;bottom:15%;right:15%}
.hero-content h1{font-size:clamp(2rem,5vw,3.5rem);line-height:1.2;color:var(--primary);margin-bottom:1.5rem}
.hero-content p{font-size:1.15rem;color:var(--text-light);margin-bottom:2rem;max-width:500px}
.hero-icon{font-size:8rem;color:rgba(255,255,255,0.15);z-index:1}

.btn{display:inline-flex;align-items:center;gap:.5rem;padding:1rem 2rem;border-radius:var(--radius);font-weight:600;transition:all .3s;cursor:pointer;border:none}
.btn-primary{background:var(--accent);color:var(--white)}
.btn-primary:hover{background:#d63050;transform:translateY(-2px)}
.btn-secondary{background:transparent;border:2px solid var(--primary);color: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)}

.section{padding:6rem 0}
.section-dark{background:var(--primary);color:var(--white)}
.section-light{background:var(--light)}
.section-accent{background:linear-gradient(135deg,var(--accent),#ff6b6b)}
.section-title{font-size:clamp(1.8rem,4vw,2.5rem);margin-bottom:1rem;color:var(--primary)}
.section-dark .section-title{color:var(--white)}
.section-subtitle{color:var(--text-light);font-size:1.1rem;margin-bottom:3rem;max-width:600px}
.section-dark .section-subtitle{color:rgba(255,255,255,0.7)}

.split-row{display:flex;flex-wrap:wrap;align-items:center;gap:4rem}
.split-row.reverse{flex-direction:row-reverse}
.split-col{flex:1 1 45%}
.split-image{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);background:var(--secondary);min-height:350px;display:flex;align-items:center;justify-content:center}
.split-image svg{width:60%;height:auto;opacity:.6}

.services-grid{display:flex;flex-wrap:wrap;gap:2rem;margin-top:3rem}
.service-card{flex:1 1 calc(33.333% - 2rem);min-width:280px;background:var(--white);border-radius:var(--radius);padding:2.5rem;box-shadow:var(--shadow);transition:transform .3s,box-shadow .3s;position:relative;overflow:hidden}
.service-card:hover{transform:translateY(-8px);box-shadow:0 12px 40px rgba(0,0,0,0.12)}
.service-card::before{content:'';position:absolute;top:0;left:0;width:100%;height:4px;background:var(--accent)}
.service-icon{width:60px;height:60px;background:linear-gradient(135deg,var(--accent),#ff6b6b);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem}
.service-icon svg{width:30px;height:30px;fill:var(--white)}
.service-card h3{font-size:1.3rem;margin-bottom:1rem;color:var(--primary)}
.service-card p{color:var(--text-light);margin-bottom:1.5rem;font-size:.95rem}
.service-price{font-size:1.5rem;font-weight:700;color:var(--accent)}
.service-price span{font-size:.9rem;color:var(--text-light);font-weight:400}

.stats-row{display:flex;flex-wrap:wrap;justify-content:center;gap:3rem;text-align:center;padding:4rem 0}
.stat-item{flex:1 1 150px}
.stat-number{font-size:3rem;font-weight:700;color:var(--accent);margin-bottom:.5rem}
.section-dark .stat-number{color:var(--white)}
.stat-label{font-size:.95rem;opacity:.8}

.testimonials{padding:6rem 0;background:var(--light)}
.testimonial-grid{display:flex;flex-wrap:wrap;gap:2rem;margin-top:3rem}
.testimonial-card{flex:1 1 calc(50% - 1rem);min-width:300px;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:.2;font-family:Georgia,serif;line-height:1}
.testimonial-text{font-style:italic;color:var(--text-light);margin-bottom:1.5rem;padding-top:2rem}
.testimonial-author{display:flex;align-items:center;gap:1rem}
.testimonial-avatar{width:50px;height:50px;border-radius:50%;background:var(--accent);display:flex;align-items:center;justify-content:center;color:var(--white);font-weight:600}
.testimonial-info h4{font-size:1rem;color:var(--primary)}
.testimonial-info span{font-size:.85rem;color:var(--text-light)}

.process-section{padding:6rem 0}
.process-steps{display:flex;flex-wrap:wrap;gap:2rem;margin-top:3rem}
.process-step{flex:1 1 calc(25% - 2rem);min-width:220px;text-align:center;padding:2rem}
.step-number{width:60px;height:60px;border-radius:50%;background:var(--primary);color:var(--white);display:flex;align-items:center;justify-content:center;font-size:1.5rem;font-weight:700;margin:0 auto 1.5rem}
.process-step h3{font-size:1.1rem;margin-bottom:.75rem;color:var(--primary)}
.process-step p{font-size:.9rem;color:var(--text-light)}

.cta-section{padding:5rem 0;text-align:center}
.cta-section h2{font-size:clamp(1.8rem,4vw,2.5rem);color:var(--white);margin-bottom:1rem}
.cta-section p{color:rgba(255,255,255,0.8);margin-bottom:2rem;max-width:500px;margin-left:auto;margin-right:auto}

.form-section{padding:6rem 0}
.form-wrapper{max-width:700px;margin:0 auto;background:var(--white);padding:3rem;border-radius:var(--radius);box-shadow:var(--shadow)}
.form-group{margin-bottom:1.5rem}
.form-group label{display:block;margin-bottom:.5rem;font-weight:500;color:var(--primary)}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:1rem;border:2px solid #e0e0e0;border-radius:var(--radius);font-size:1rem;transition:border-color .3s}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--accent)}
.form-group textarea{min-height:120px;resize:vertical}
.form-submit{width:100%;padding:1.2rem;font-size:1.1rem}

.contact-split{display:flex;flex-wrap:wrap;gap:4rem}
.contact-info{flex:1 1 40%;padding:3rem;background:var(--primary);color:var(--white);border-radius:var(--radius)}
.contact-info h3{font-size:1.5rem;margin-bottom:2rem}
.contact-item{display:flex;align-items:flex-start;gap:1rem;margin-bottom:1.5rem}
.contact-item svg{width:24px;height:24px;fill:var(--accent);flex-shrink:0;margin-top:.25rem}
.contact-item p{line-height:1.6}
.contact-form-wrap{flex:1 1 55%}

.about-intro{display:flex;flex-wrap:wrap;gap:4rem;align-items:center}
.about-text{flex:1 1 55%}
.about-image{flex:1 1 40%;background:var(--secondary);border-radius:var(--radius);min-height:400px;display:flex;align-items:center;justify-content:center}
.about-text h2{font-size:2rem;margin-bottom:1.5rem;color:var(--primary)}
.about-text p{color:var(--text-light);margin-bottom:1rem}

.team-grid{display:flex;flex-wrap:wrap;gap:2rem;margin-top:3rem}
.team-member{flex:1 1 calc(33.333% - 2rem);min-width:250px;text-align:center}
.team-avatar{width:120px;height:120px;border-radius:50%;background:var(--accent);margin:0 auto 1.5rem;display:flex;align-items:center;justify-content:center;font-size:2.5rem;color:var(--white);font-weight:600}
.team-member h3{font-size:1.2rem;color:var(--primary);margin-bottom:.25rem}
.team-member span{color:var(--text-light);font-size:.9rem}

.values-grid{display:flex;flex-wrap:wrap;gap:2rem;margin-top:3rem}
.value-item{flex:1 1 calc(33.333% - 2rem);min-width:250px;padding:2rem;background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow)}
.value-item h3{color:var(--primary);margin-bottom:.75rem;font-size:1.1rem}
.value-item p{color:var(--text-light);font-size:.95rem}

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 1 200px}
.footer-col h4{color:var(--white);margin-bottom:1.5rem;font-size:1.1rem}
.footer-col ul li{margin-bottom:.75rem}
.footer-col a:hover{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;gap:1rem;font-size:.9rem}
.footer-links{display:flex;gap:1.5rem;flex-wrap:wrap}

.cookie-banner{position:fixed;bottom:0;left:0;width:100%;background:var(--dark);color:var(--white);padding:1.5rem;z-index:9999;display:none}
.cookie-banner.show{display:block}
.cookie-inner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1rem;max-width:1200px;margin:0 auto}
.cookie-inner p{flex:1;font-size:.95rem}
.cookie-buttons{display:flex;gap:1rem}
.cookie-btn{padding:.75rem 1.5rem;border-radius:var(--radius);cursor:pointer;font-weight:500;border:none;transition:all .3s}
.cookie-accept{background:var(--accent);color:var(--white)}
.cookie-reject{background:transparent;border:1px solid rgba(255,255,255,0.3);color:var(--white)}

.sticky-cta{position:fixed;bottom:2rem;right:2rem;z-index:900;opacity:0;visibility:hidden;transition:all .3s}
.sticky-cta.visible{opacity:1;visibility:visible}
.sticky-cta .btn{box-shadow:0 4px 20px rgba(233,69,96,0.4)}

.page-header{padding:8rem 0 4rem;background:linear-gradient(135deg,var(--primary),var(--secondary));color:var(--white);text-align:center}
.page-header h1{font-size:clamp(2rem,5vw,3rem);margin-bottom:1rem}
.page-header p{opacity:.8;max-width:600px;margin:0 auto}

.policy-content{padding:4rem 0}
.policy-content h2{font-size:1.5rem;color:var(--primary);margin:2rem 0 1rem}
.policy-content h3{font-size:1.2rem;color:var(--primary);margin:1.5rem 0 .75rem}
.policy-content p,.policy-content li{color:var(--text-light);margin-bottom:1rem}
.policy-content ul{padding-left:1.5rem;list-style:disc}
.policy-content ul li{margin-bottom:.5rem}

.thanks-section{min-height:80vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:2rem}
.thanks-content{max-width:600px}
.thanks-icon{width:100px;height:100px;background:var(--accent);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 2rem}
.thanks-icon svg{width:50px;height:50px;fill:var(--white)}
.thanks-content h1{font-size:2.5rem;color:var(--primary);margin-bottom:1rem}
.thanks-content p{color:var(--text-light);margin-bottom:2rem}

@media(max-width:992px){
.hero-split{flex-direction:column-reverse}
.hero-content,.hero-visual{flex:1 1 100%}
.hero-visual{min-height:300px}
.split-row,.split-row.reverse{flex-direction:column}
.split-col{flex:1 1 100%}
}
@media(max-width:768px){
.mobile-toggle{display:flex}
nav{position:absolute;top:100%;left:0;width:100%;background:var(--white);padding:1rem 0;box-shadow:var(--shadow);opacity:0;visibility:hidden;transform:translateY(-10px);transition:all .3s}
nav.active{opacity:1;visibility:visible;transform:translateY(0)}
nav ul{flex-direction:column;align-items:center;gap:1rem}
.hero-content{padding:2rem}
.section{padding:4rem 0}
.contact-split{flex-direction:column}
.contact-info,.contact-form-wrap{flex:1 1 100%}
.footer-grid{gap:2rem}
.footer-col{flex:1 1 45%}
}
@media(max-width:480px){
.btn{padding:.875rem 1.5rem;font-size:.95rem}
.service-card,.testimonial-card{flex:1 1 100%}
.cookie-inner{flex-direction:column;text-align:center}
.cookie-buttons{width:100%;justify-content:center}
}
