*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--primary:#2d5a4a;--primary-light:#3d7a64;--primary-dark:#1d3a32;--accent:#c9a855;--accent-light:#e0c678;--text:#2a2a2a;--text-light:#5a5a5a;--bg:#fafaf8;--bg-alt:#f0ede6;--bg-dark:#e8e4dc;--white:#ffffff;--shadow:0 4px 24px rgba(0,0,0,0.08);--shadow-lg:0 12px 48px rgba(0,0,0,0.12);--radius:8px;--radius-lg:16px;--transition:0.3s ease}
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(--bg)}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit;transition:var(--transition)}
ul,ol{list-style:none}
h1,h2,h3,h4{line-height:1.3;font-weight:600}
h1{font-size:clamp(2rem,5vw,3.2rem)}
h2{font-size:clamp(1.6rem,4vw,2.4rem)}
h3{font-size:clamp(1.2rem,3vw,1.6rem)}
p{margin-bottom:1rem}
.container{width:90%;max-width:1200px;margin:0 auto;padding:0 1rem}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:0.9rem 2rem;border-radius:var(--radius);font-weight:600;cursor:pointer;border:none;transition:var(--transition);font-size:1rem}
.btn-primary{background:var(--primary);color:var(--white)}
.btn-primary:hover{background:var(--primary-light);transform:translateY(-2px)}
.btn-accent{background:var(--accent);color:var(--text)}
.btn-accent:hover{background:var(--accent-light)}
.btn-outline{background:transparent;border:2px solid var(--primary);color:var(--primary)}
.btn-outline:hover{background:var(--primary);color:var(--white)}
.btn-lg{padding:1.1rem 2.6rem;font-size:1.1rem}
.btn-sm{padding:0.6rem 1.4rem;font-size:0.9rem}

/* Header */
.header{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(255,255,255,0.97);backdrop-filter:blur(10px);box-shadow:0 2px 20px rgba(0,0,0,0.06);transition:var(--transition)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:1rem 0;gap:2rem}
.logo{font-size:1.4rem;font-weight:700;color:var(--primary);display:flex;align-items:center;gap:0.5rem}
.logo svg{width:32px;height:32px}
.nav{display:flex;align-items:center;gap:0.5rem}
.nav a{padding:0.6rem 1rem;border-radius:var(--radius);color:var(--text);font-weight:500;transition:var(--transition)}
.nav a:hover,.nav a.active{background:var(--bg-alt);color:var(--primary)}
.nav-toggle{display:none;flex-direction:column;gap:5px;padding:0.5rem;cursor:pointer;background:none;border:none}
.nav-toggle span{width:24px;height:2px;background:var(--text);transition:var(--transition)}

/* Hero */
.hero{min-height:100vh;display:flex;align-items:center;padding:8rem 0 4rem;background:linear-gradient(135deg,var(--bg) 0%,var(--bg-alt) 100%);position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-50%;right:-20%;width:80%;height:200%;background:radial-gradient(circle,rgba(45,90,74,0.08) 0%,transparent 70%);pointer-events:none}
.hero-content{display:flex;flex-direction:column;gap:3rem;position:relative;z-index:1}
.hero-text{max-width:640px}
.hero-text h1{margin-bottom:1.5rem;color:var(--primary-dark)}
.hero-text p{font-size:1.15rem;color:var(--text-light);margin-bottom:2rem}
.hero-buttons{display:flex;flex-wrap:wrap;gap:1rem}
.hero-visual{position:relative}
.hero-image{border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);max-height:480px;object-fit:cover}
.hero-badge{position:absolute;bottom:-20px;right:20px;background:var(--accent);color:var(--text);padding:1rem 1.5rem;border-radius:var(--radius);font-weight:600;box-shadow:var(--shadow)}

/* Sections */
.section{padding:5rem 0}
.section-alt{background:var(--bg-alt)}
.section-dark{background:var(--primary-dark);color:var(--white)}
.section-dark h2,.section-dark h3{color:var(--white)}
.section-dark p{color:rgba(255,255,255,0.85)}
.section-header{text-align:center;max-width:700px;margin:0 auto 3.5rem}
.section-header h2{margin-bottom:1rem;color:var(--primary-dark)}
.section-header p{color:var(--text-light);font-size:1.1rem}
.section-label{display:inline-block;background:var(--accent);color:var(--text);padding:0.4rem 1rem;border-radius:20px;font-size:0.85rem;font-weight:600;margin-bottom:1rem;text-transform:uppercase;letter-spacing:0.5px}

/* Features */
.features-grid{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center}
.feature-card{flex:1 1 280px;max-width:380px;background:var(--white);padding:2.5rem 2rem;border-radius:var(--radius-lg);box-shadow:var(--shadow);transition:var(--transition)}
.feature-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.feature-icon{width:56px;height:56px;background:var(--bg-alt);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem}
.feature-icon svg{width:28px;height:28px;color:var(--primary)}
.feature-card h3{margin-bottom:0.8rem;color:var(--primary-dark)}
.feature-card p{color:var(--text-light);font-size:0.95rem;margin:0}

/* Services */
.services-list{display:flex;flex-direction:column;gap:2rem}
.service-item{display:flex;flex-wrap:wrap;gap:2rem;background:var(--white);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);transition:var(--transition)}
.service-item:hover{box-shadow:var(--shadow-lg)}
.service-item:nth-child(even){flex-direction:row-reverse}
.service-image{flex:1 1 300px;min-height:280px;background-size:cover;background-position:center}
.service-content{flex:1 1 400px;padding:2.5rem;display:flex;flex-direction:column;justify-content:center}
.service-content h3{margin-bottom:1rem;color:var(--primary-dark)}
.service-content p{color:var(--text-light);margin-bottom:1.5rem}
.service-price{font-size:1.8rem;font-weight:700;color:var(--primary);margin-bottom:1rem}
.service-price span{font-size:1rem;font-weight:400;color:var(--text-light)}

/* Pricing Cards */
.pricing-grid{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center}
.pricing-card{flex:1 1 300px;max-width:380px;background:var(--white);border-radius:var(--radius-lg);padding:2.5rem;box-shadow:var(--shadow);text-align:center;position:relative;transition:var(--transition)}
.pricing-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg)}
.pricing-card.featured{border:3px solid var(--accent);transform:scale(1.03)}
.pricing-card.featured:hover{transform:scale(1.03) translateY(-8px)}
.pricing-badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--accent);color:var(--text);padding:0.4rem 1.2rem;border-radius:20px;font-size:0.8rem;font-weight:600}
.pricing-card h3{font-size:1.4rem;margin-bottom:0.5rem}
.pricing-card .price{font-size:2.8rem;font-weight:700;color:var(--primary);margin:1.5rem 0}
.pricing-card .price span{font-size:1rem;font-weight:400;color:var(--text-light)}
.pricing-features{margin:2rem 0;text-align:left}
.pricing-features li{padding:0.6rem 0;border-bottom:1px solid var(--bg-alt);display:flex;align-items:center;gap:0.8rem}
.pricing-features li:last-child{border:none}
.pricing-features svg{width:18px;height:18px;color:var(--primary);flex-shrink:0}

/* Testimonials */
.testimonials-wrapper{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center}
.testimonial-card{flex:1 1 340px;max-width:420px;background:var(--white);padding:2.5rem;border-radius:var(--radius-lg);box-shadow:var(--shadow);position:relative}
.testimonial-card::before{content:'"';position:absolute;top:1rem;left:1.5rem;font-size:5rem;color:var(--bg-alt);font-family:Georgia,serif;line-height:1}
.testimonial-text{position:relative;z-index:1;font-style:italic;color:var(--text-light);margin-bottom:1.5rem;font-size:1.05rem}
.testimonial-author{display:flex;align-items:center;gap:1rem}
.testimonial-avatar{width:50px;height:50px;border-radius:50%;background:var(--bg-alt);display:flex;align-items:center;justify-content:center;font-weight:600;color:var(--primary)}
.testimonial-info h4{font-size:1rem;margin-bottom:0.2rem}
.testimonial-info span{font-size:0.85rem;color:var(--text-light)}

/* CTA Section */
.cta-section{background:linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 100%);color:var(--white);text-align:center;padding:5rem 0}
.cta-section h2{color:var(--white);margin-bottom:1rem}
.cta-section p{color:rgba(255,255,255,0.9);margin-bottom:2rem;font-size:1.15rem}
.cta-buttons{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center}

/* Form */
.form-wrapper{max-width:600px;margin:0 auto;background:var(--white);padding:3rem;border-radius:var(--radius-lg);box-shadow:var(--shadow-lg)}
.form-group{margin-bottom:1.5rem}
.form-group label{display:block;margin-bottom:0.5rem;font-weight:500;color:var(--text)}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:0.9rem 1rem;border:2px solid var(--bg-dark);border-radius:var(--radius);font-size:1rem;transition:var(--transition);background:var(--bg)}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--primary);background:var(--white)}
.form-group textarea{min-height:120px;resize:vertical}
.form-submit{width:100%}

/* Contact Info */
.contact-grid{display:flex;flex-wrap:wrap;gap:3rem}
.contact-info{flex:1 1 300px}
.contact-info-item{display:flex;gap:1rem;margin-bottom:2rem}
.contact-icon{width:50px;height:50px;background:var(--bg-alt);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-icon svg{width:24px;height:24px;color:var(--primary)}
.contact-details h4{margin-bottom:0.3rem}
.contact-details p{color:var(--text-light);margin:0}
.contact-form-wrapper{flex:1 1 400px}

/* About */
.about-content{display:flex;flex-wrap:wrap;gap:3rem;align-items:center}
.about-text{flex:1 1 400px}
.about-image{flex:1 1 350px}
.about-image img{border-radius:var(--radius-lg);box-shadow:var(--shadow)}
.about-stats{display:flex;flex-wrap:wrap;gap:2rem;margin-top:2.5rem}
.stat-item{text-align:center;flex:1 1 100px}
.stat-number{font-size:2.5rem;font-weight:700;color:var(--primary);display:block}
.stat-label{font-size:0.9rem;color:var(--text-light)}

/* Thanks */
.thanks-section{min-height:100vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:2rem}
.thanks-content{max-width:500px}
.thanks-icon{width:100px;height:100px;background:var(--primary);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 2rem}
.thanks-icon svg{width:50px;height:50px;color:var(--white)}
.thanks-content h1{margin-bottom:1rem;color:var(--primary-dark)}
.thanks-content p{color:var(--text-light);margin-bottom:2rem}

/* Footer */
.footer{background:var(--primary-dark);color:var(--white);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{margin-bottom:1.5rem;color:var(--accent)}
.footer-col p{color:rgba(255,255,255,0.75);font-size:0.95rem}
.footer-col ul li{margin-bottom:0.8rem}
.footer-col a{color:rgba(255,255,255,0.75);transition:var(--transition)}
.footer-col a:hover{color:var(--white)}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.1);padding-top:2rem;display:flex;flex-wrap:wrap;gap:1rem;justify-content:space-between;align-items:center;font-size:0.9rem;color:rgba(255,255,255,0.6)}
.footer-links{display:flex;flex-wrap:wrap;gap:1.5rem}
.footer-links a{color:rgba(255,255,255,0.6)}
.footer-links a:hover{color:var(--white)}

/* Cookie Banner */
.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:var(--white);padding:1.5rem;box-shadow:0 -4px 24px rgba(0,0,0,0.1);z-index:9999;display:none}
.cookie-banner.active{display:block}
.cookie-inner{display:flex;flex-wrap:wrap;gap:1.5rem;align-items:center;justify-content:space-between;max-width:1200px;margin:0 auto}
.cookie-text{flex:1 1 400px;font-size:0.95rem;color:var(--text-light)}
.cookie-text a{color:var(--primary);text-decoration:underline}
.cookie-buttons{display:flex;gap:1rem}

/* Sticky CTA */
.sticky-cta{position:fixed;bottom:2rem;right:2rem;z-index:900;opacity:0;visibility:hidden;transform:translateY(20px);transition:var(--transition)}
.sticky-cta.visible{opacity:1;visibility:visible;transform:translateY(0)}
.sticky-cta .btn{box-shadow:var(--shadow-lg)}

/* Legal Pages */
.legal-page{padding:8rem 0 4rem}
.legal-content{max-width:800px;margin:0 auto}
.legal-content h1{margin-bottom:2rem;color:var(--primary-dark)}
.legal-content h2{margin:2.5rem 0 1rem;font-size:1.4rem}
.legal-content p{margin-bottom:1rem;color:var(--text-light)}
.legal-content ul{margin:1rem 0 1rem 1.5rem}
.legal-content li{margin-bottom:0.5rem;color:var(--text-light);position:relative;padding-left:1rem}
.legal-content li::before{content:'';position:absolute;left:0;top:0.6rem;width:5px;height:5px;background:var(--primary);border-radius:50%}

/* Responsive */
@media (max-width:900px){
.hero-content{flex-direction:column-reverse}
.service-item,.service-item:nth-child(even){flex-direction:column}
.about-content{flex-direction:column-reverse}
.pricing-card.featured{transform:none}
.pricing-card.featured:hover{transform:translateY(-8px)}
}
@media (max-width:768px){
.nav{position:fixed;top:70px;left:0;right:0;background:var(--white);flex-direction:column;padding:1rem;gap:0;box-shadow:var(--shadow);transform:translateY(-120%);transition:var(--transition)}
.nav.active{transform:translateY(0)}
.nav a{width:100%;padding:1rem;border-radius:0;border-bottom:1px solid var(--bg-alt)}
.nav-toggle{display:flex}
.hero{padding:7rem 0 3rem;min-height:auto}
.section{padding:3.5rem 0}
.form-wrapper{padding:2rem}
.footer-grid{gap:2rem}
.cookie-inner{flex-direction:column;text-align:center}
.cookie-buttons{width:100%;justify-content:center}
.sticky-cta{bottom:1rem;right:1rem}
}
@media (max-width:480px){
.btn{padding:0.8rem 1.5rem;font-size:0.95rem}
.hero-buttons{flex-direction:column}
.hero-buttons .btn{width:100%}
.pricing-card{padding:2rem 1.5rem}
}
