*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--primary:#1a2744;--accent:#c9a55c;--accent-hover:#b8944b;--light:#f8f6f2;--dark:#0d1521;--text:#2c3e50;--gray:#6b7a8f;--white:#fff;--shadow:0 4px 20px rgba(0,0,0,.08);--shadow-lg:0 8px 40px rgba(0,0,0,.12)}
html{scroll-behavior:smooth;font-size:16px}
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:1100px;margin:0 auto}
.container-narrow{width:90%;max-width:720px;margin:0 auto}

/* Navigation */
.nav{position:fixed;top:0;left:0;width:100%;background:rgba(255,255,255,.97);z-index:1000;padding:1rem 0;box-shadow:var(--shadow)}
.nav-inner{display:flex;justify-content:space-between;align-items:center}
.logo{font-size:1.4rem;font-weight:700;color:var(--primary);letter-spacing:-.5px}
.logo span{color:var(--accent)}
.nav-links{display:flex;gap:2rem;align-items:center}
.nav-links a{color:var(--text);font-size:.95rem;font-weight:500;transition:color .3s}
.nav-links a:hover{color:var(--accent)}
.nav-cta{background:var(--accent);color:var(--white);padding:.6rem 1.4rem;border-radius:4px;font-weight:600}
.nav-cta:hover{background:var(--accent-hover);color:var(--white)}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px}
.hamburger span{width:24px;height:2px;background:var(--primary);transition:all .3s}
.mobile-menu{display:none;position:fixed;top:70px;left:0;width:100%;background:var(--white);padding:2rem;box-shadow:var(--shadow-lg)}
.mobile-menu.active{display:block}
.mobile-menu a{display:block;padding:1rem 0;border-bottom:1px solid #eee;font-size:1.1rem}

/* Hero Editorial */
.hero-editorial{padding:10rem 0 5rem;background:linear-gradient(135deg,var(--light) 0%,var(--white) 100%)}
.hero-editorial h1{font-size:clamp(2.2rem,5vw,3.6rem);color:var(--primary);line-height:1.2;margin-bottom:1.5rem;font-weight:800}
.hero-editorial .lead{font-size:1.25rem;color:var(--gray);max-width:540px;margin-bottom:2.5rem}
.hero-meta{display:flex;gap:2rem;align-items:center;margin-bottom:2rem;font-size:.9rem;color:var(--gray)}
.hero-meta span{display:flex;align-items:center;gap:.5rem}
.hero-image{margin-top:3rem;border-radius:12px;overflow:hidden;box-shadow:var(--shadow-lg)}
.hero-image img{width:100%;height:400px;object-fit:cover}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:1rem 2rem;font-size:1rem;font-weight:600;border-radius:6px;cursor:pointer;transition:all .3s;border:none}
.btn-primary{background:var(--accent);color:var(--white)}
.btn-primary:hover{background:var(--accent-hover);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-ghost{background:transparent;color:var(--accent);padding:.5rem 0;font-weight:600}
.btn-ghost:hover{color:var(--accent-hover)}

/* Article Content */
.article-content{padding:4rem 0}
.article-content p{font-size:1.1rem;margin-bottom:1.5rem;color:var(--text)}
.article-content h2{font-size:1.8rem;color:var(--primary);margin:3rem 0 1.5rem;font-weight:700}
.article-content h3{font-size:1.4rem;color:var(--primary);margin:2rem 0 1rem;font-weight:600}
.article-quote{background:var(--light);padding:2rem;border-left:4px solid var(--accent);margin:2rem 0;font-style:italic;font-size:1.15rem}
.article-image{margin:2.5rem -2rem;border-radius:8px;overflow:hidden}
.article-image img{width:100%;height:auto}
.inline-cta{background:linear-gradient(135deg,var(--primary) 0%,#2a3d5c 100%);color:var(--white);padding:2.5rem;border-radius:12px;margin:3rem 0;text-align:center}
.inline-cta h3{color:var(--white);margin-bottom:1rem}
.inline-cta p{color:rgba(255,255,255,.85);margin-bottom:1.5rem}

/* Services Grid */
.services-section{padding:5rem 0;background:var(--light)}
.section-header{text-align:center;margin-bottom:3rem}
.section-header h2{font-size:2.2rem;color:var(--primary);margin-bottom:1rem}
.section-header p{color:var(--gray);max-width:600px;margin:0 auto}
.services-grid{display:flex;flex-wrap:wrap;gap:1.5rem}
.service-card{flex:1 1 calc(50% - 1rem);background:var(--white);padding:2rem;border-radius:12px;box-shadow:var(--shadow);transition:transform .3s,box-shadow .3s}
.service-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg)}
.service-icon{width:60px;height:60px;background:linear-gradient(135deg,var(--accent) 0%,#d4b56e 100%);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem}
.service-icon svg{width:28px;height:28px;fill:var(--white)}
.service-card h3{font-size:1.3rem;color:var(--primary);margin-bottom:.75rem}
.service-card p{color:var(--gray);font-size:.95rem;margin-bottom:1rem}
.service-price{font-size:1.5rem;font-weight:700;color:var(--accent)}
.service-price span{font-size:.9rem;color:var(--gray);font-weight:400}

/* Split Section */
.split-section{display:flex;min-height:500px}
.split-content{flex:1;display:flex;flex-direction:column;justify-content:center;padding:4rem}
.split-image{flex:1;position:relative;overflow:hidden}
.split-image img{position:absolute;width:100%;height:100%;object-fit:cover}
.split-section.reverse{flex-direction:row-reverse}
.split-content h2{font-size:2rem;color:var(--primary);margin-bottom:1.5rem}
.split-content p{color:var(--gray);margin-bottom:1.5rem}
.feature-list{margin:1.5rem 0}
.feature-list li{display:flex;align-items:flex-start;gap:1rem;margin-bottom:1rem;color:var(--text)}
.feature-list li::before{content:"✓";color:var(--accent);font-weight:700}

/* Testimonials */
.testimonials{padding:5rem 0;background:var(--primary)}
.testimonials .section-header h2{color:var(--white)}
.testimonials .section-header p{color:rgba(255,255,255,.7)}
.testimonial-grid{display:flex;gap:2rem;flex-wrap:wrap}
.testimonial-card{flex:1 1 calc(33.333% - 1.5rem);background:rgba(255,255,255,.08);padding:2rem;border-radius:12px;border:1px solid rgba(255,255,255,.1)}
.testimonial-text{color:rgba(255,255,255,.9);font-size:1rem;margin-bottom:1.5rem;font-style:italic}
.testimonial-author{display:flex;align-items:center;gap:1rem}
.author-avatar{width:48px;height:48px;border-radius:50%;background:var(--accent);display:flex;align-items:center;justify-content:center;color:var(--white);font-weight:700}
.author-info h4{color:var(--white);font-size:1rem}
.author-info span{color:rgba(255,255,255,.6);font-size:.85rem}

/* Stats Section */
.stats-section{padding:4rem 0;background:var(--white)}
.stats-grid{display:flex;justify-content:space-around;text-align:center;flex-wrap:wrap;gap:2rem}
.stat-item{flex:1 1 200px}
.stat-number{font-size:3rem;font-weight:800;color:var(--accent);line-height:1}
.stat-label{color:var(--gray);margin-top:.5rem}

/* Contact Form */
.contact-section{padding:5rem 0;background:var(--light)}
.contact-wrapper{display:flex;gap:3rem;align-items:flex-start}
.contact-info{flex:1}
.contact-info h2{font-size:2rem;color:var(--primary);margin-bottom:1.5rem}
.contact-info p{color:var(--gray);margin-bottom:2rem}
.contact-details{margin-top:2rem}
.contact-item{display:flex;align-items:flex-start;gap:1rem;margin-bottom:1.5rem}
.contact-item-icon{width:40px;height:40px;background:var(--accent);border-radius:8px;display:flex;align-items:center;justify-content:center}
.contact-item-icon svg{width:20px;height:20px;fill:var(--white)}
.contact-item-text h4{color:var(--primary);font-size:1rem;margin-bottom:.25rem}
.contact-item-text p{color:var(--gray);font-size:.9rem}
.contact-form-wrap{flex:1;background:var(--white);padding:2.5rem;border-radius:12px;box-shadow:var(--shadow)}
.form-group{margin-bottom:1.5rem}
.form-group label{display:block;color:var(--primary);font-weight:600;margin-bottom:.5rem}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:1rem;border:2px solid #e8e8e8;border-radius:8px;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{resize:vertical;min-height:120px}
.form-submit{width:100%}

/* Footer */
.footer{background:var(--dark);color:rgba(255,255,255,.8);padding:4rem 0 2rem}
.footer-grid{display:flex;gap:3rem;flex-wrap:wrap;margin-bottom:3rem}
.footer-col{flex:1 1 200px}
.footer-col h4{color:var(--white);font-size:1.1rem;margin-bottom:1.5rem}
.footer-col a{display:block;color:rgba(255,255,255,.7);margin-bottom:.75rem;font-size:.95rem;transition:color .3s}
.footer-col a:hover{color:var(--accent)}
.footer-col p{font-size:.95rem;line-height:1.8}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:2rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.footer-bottom p{font-size:.9rem;color:rgba(255,255,255,.6)}
.footer-links{display:flex;gap:1.5rem}
.footer-links a{font-size:.9rem;color:rgba(255,255,255,.6)}
.footer-links a:hover{color:var(--accent)}

/* Cookie Banner */
.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;justify-content:space-between;align-items:center;gap:2rem;flex-wrap:wrap}
.cookie-text{flex:1;font-size:.95rem}
.cookie-text a{color:var(--accent);text-decoration:underline}
.cookie-buttons{display:flex;gap:1rem}
.cookie-btn{padding:.75rem 1.5rem;border-radius:6px;font-weight:600;cursor:pointer;border:none;transition:all .3s}
.cookie-accept{background:var(--accent);color:var(--white)}
.cookie-reject{background:transparent;border:2px solid rgba(255,255,255,.3);color:var(--white)}

/* Sticky CTA */
.sticky-cta{position:fixed;bottom:2rem;right:2rem;z-index:999;opacity:0;transform:translateY(20px);transition:all .3s;pointer-events:none}
.sticky-cta.visible{opacity:1;transform:translateY(0);pointer-events:all}
.sticky-cta a{display:flex;align-items:center;gap:.75rem;background:var(--accent);color:var(--white);padding:1rem 1.5rem;border-radius:50px;font-weight:600;box-shadow:var(--shadow-lg)}
.sticky-cta a:hover{background:var(--accent-hover);transform:scale(1.05)}

/* Thanks Page */
.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:linear-gradient(135deg,var(--accent) 0%,#d4b56e 100%);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(--gray);font-size:1.1rem;margin-bottom:2rem}

/* About Page */
.about-hero{padding:10rem 0 4rem;background:var(--light);text-align:center}
.about-hero h1{font-size:2.8rem;color:var(--primary);margin-bottom:1rem}
.about-hero p{color:var(--gray);font-size:1.1rem;max-width:600px;margin:0 auto}
.about-content{padding:4rem 0}
.about-grid{display:flex;gap:3rem;align-items:center;margin-bottom:4rem}
.about-grid.reverse{flex-direction:row-reverse}
.about-text{flex:1}
.about-text h2{font-size:1.8rem;color:var(--primary);margin-bottom:1rem}
.about-text p{color:var(--gray);margin-bottom:1rem}
.about-image{flex:1;border-radius:12px;overflow:hidden;box-shadow:var(--shadow)}
.about-image img{width:100%;height:350px;object-fit:cover}
.values-grid{display:flex;gap:2rem;flex-wrap:wrap;margin-top:3rem}
.value-card{flex:1 1 calc(33.333% - 1.5rem);text-align:center;padding:2rem}
.value-icon{width:70px;height:70px;background:var(--light);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem}
.value-card h3{color:var(--primary);margin-bottom:.5rem}
.value-card p{color:var(--gray);font-size:.95rem}

/* Policy Pages */
.policy-page{padding:10rem 0 5rem}
.policy-page h1{font-size:2.2rem;color:var(--primary);margin-bottom:2rem}
.policy-page h2{font-size:1.5rem;color:var(--primary);margin:2.5rem 0 1rem}
.policy-page p{color:var(--text);margin-bottom:1rem}
.policy-page ul{margin:1rem 0 1rem 1.5rem}
.policy-page li{color:var(--text);margin-bottom:.5rem;list-style:disc}

/* Contact Page Specific */
.contact-hero{padding:10rem 0 3rem;background:var(--light);text-align:center}
.contact-hero h1{font-size:2.5rem;color:var(--primary);margin-bottom:1rem}
.contact-hero p{color:var(--gray);max-width:500px;margin:0 auto}
.map-section{height:350px;background:var(--gray)}
.map-section iframe{width:100%;height:100%;border:0}

/* Services Page */
.services-hero{padding:10rem 0 3rem;background:var(--light);text-align:center}
.services-hero h1{font-size:2.5rem;color:var(--primary);margin-bottom:1rem}
.services-hero p{color:var(--gray);max-width:550px;margin:0 auto}
.services-detailed{padding:4rem 0}
.service-detailed-card{display:flex;gap:3rem;padding:3rem 0;border-bottom:1px solid #eee}
.service-detailed-card:last-child{border-bottom:none}
.service-detailed-card.reverse{flex-direction:row-reverse}
.service-detailed-image{flex:0 0 40%;border-radius:12px;overflow:hidden}
.service-detailed-image img{width:100%;height:280px;object-fit:cover}
.service-detailed-content{flex:1;display:flex;flex-direction:column;justify-content:center}
.service-detailed-content h2{font-size:1.6rem;color:var(--primary);margin-bottom:1rem}
.service-detailed-content p{color:var(--gray);margin-bottom:1.5rem}
.service-detailed-price{font-size:1.8rem;font-weight:700;color:var(--accent);margin-bottom:1.5rem}
.service-detailed-price span{font-size:1rem;color:var(--gray);font-weight:400}

/* Process Section */
.process-section{padding:5rem 0;background:var(--white)}
.process-steps{display:flex;gap:2rem;flex-wrap:wrap}
.process-step{flex:1 1 calc(25% - 1.5rem);text-align:center;position:relative}
.process-step::after{content:"→";position:absolute;right:-1.5rem;top:30px;font-size:1.5rem;color:var(--accent)}
.process-step:last-child::after{display:none}
.step-number{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 1rem}
.process-step h3{color:var(--primary);margin-bottom:.5rem}
.process-step p{color:var(--gray);font-size:.9rem}

/* FAQ Section */
.faq-section{padding:5rem 0;background:var(--light)}
.faq-item{background:var(--white);border-radius:8px;margin-bottom:1rem;overflow:hidden}
.faq-question{padding:1.5rem;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-weight:600;color:var(--primary)}
.faq-question::after{content:"+";font-size:1.5rem;color:var(--accent)}
.faq-item.active .faq-question::after{content:"−"}
.faq-answer{padding:0 1.5rem;max-height:0;overflow:hidden;transition:all .3s}
.faq-item.active .faq-answer{padding:0 1.5rem 1.5rem;max-height:500px}
.faq-answer p{color:var(--gray)}

/* Responsive */
@media(max-width:992px){
.nav-links{display:none}
.hamburger{display:flex}
.split-section,.split-section.reverse{flex-direction:column}
.split-image{min-height:300px}
.contact-wrapper{flex-direction:column}
.about-grid,.about-grid.reverse{flex-direction:column}
.service-detailed-card,.service-detailed-card.reverse{flex-direction:column}
.process-step::after{display:none}
}
@media(max-width:768px){
.service-card{flex:1 1 100%}
.testimonial-card{flex:1 1 100%}
.footer-grid{flex-direction:column}
.footer-bottom{flex-direction:column;text-align:center}
.cookie-inner{flex-direction:column;text-align:center}
.hero-editorial h1{font-size:2rem}
.stats-grid{flex-direction:column}
.value-card{flex:1 1 100%}
.process-step{flex:1 1 100%}
}
