*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Segoe UI',system-ui,sans-serif;background:#fdf8f3;color:#2c1a0e;line-height:1.6}
:root{
--terra:#c0522a;--terra-light:#e07a52;--terra-pale:#fbe8df;
--beige:#f5e6d3;--cream:#fdf8f3;--dark:#2c1a0e;--mid:#5a3520;
--white:#ffffff;--border:#e8d5c0;--shadow:0 4px 28px rgba(44,26,14,.1);
--radius:14px;--radius-sm:7px;--transition:.3s ease;
}
a{color:var(--terra);text-decoration:none}
#progress-bar{position:fixed;top:0;left:0;width:0%;height:3px;background:linear-gradient(90deg,var(--terra),var(--terra-light));z-index:9999;transition:width .1s}

header{position:sticky;top:0;z-index:100;background:rgba(44,26,14,.97);backdrop-filter:blur(8px);padding:0 5%;display:flex;align-items:center;justify-content:space-between;height:70px;transition:box-shadow var(--transition)}
header.scrolled{box-shadow:0 2px 20px rgba(0,0,0,.25)}
.logo{font-size:1.4rem;font-weight:800;color:var(--white);letter-spacing:-.5px}
.logo span{color:var(--terra-light)}
nav{display:flex;gap:2rem}
nav a{color:rgba(255,255,255,.82);font-weight:500;transition:color var(--transition)}
nav a:hover{color:var(--terra-light)}
.burger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:6px}
.burger span{display:block;width:24px;height:2px;background:var(--white);transition:var(--transition)}
.burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.open span:nth-child(2){opacity:0}
.burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobile-nav{display:none;flex-direction:column;background:var(--dark);padding:1rem 5%;gap:1rem}
.mobile-nav.open{display:flex}
.mobile-nav a{color:var(--white);font-weight:500;padding:.5rem 0;border-bottom:1px solid rgba(255,255,255,.1)}

.hero{min-height:100vh;position:relative;display:flex;align-items:center;overflow:hidden;background:linear-gradient(160deg,var(--dark) 0%,var(--mid) 60%,#8b3a1a 100%)}
.hero-waves{position:absolute;bottom:0;left:0;width:100%;pointer-events:none}
.wave-path{animation:waveFloat 6s ease-in-out infinite alternate}
.wave-path2{animation:waveFloat 8s ease-in-out infinite alternate-reverse}
@keyframes waveFloat{0%{d:path("M0,60 C200,20 400,100 600,60 C800,20 1000,80 1200,60 L1200,120 L0,120Z")}100%{d:path("M0,80 C200,40 400,120 600,80 C800,40 1000,100 1200,80 L1200,120 L0,120Z")}}
.hero-content{position:relative;z-index:1;padding:0 8% 0 8%;max-width:780px}
.hero-badge{display:inline-block;background:rgba(192,82,42,.3);border:1px solid rgba(224,122,82,.5);color:#f5c4ae;padding:.4rem 1.2rem;border-radius:50px;font-size:.85rem;font-weight:600;letter-spacing:.05em;margin-bottom:1.5rem}
.hero h1{font-size:clamp(2.4rem,5.5vw,4.5rem);font-weight:900;color:var(--white);line-height:1.1;margin-bottom:1.5rem}
.grad-text{background:linear-gradient(90deg,#f5c4ae,var(--terra-light),#f9a875);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero p{font-size:1.1rem;color:rgba(255,255,255,.78);max-width:560px;margin-bottom:2.5rem}
.btn-group{display:flex;gap:1rem;flex-wrap:wrap}
.btn{display:inline-block;padding:.8rem 2rem;border-radius:50px;font-weight:700;font-size:1rem;transition:var(--transition);cursor:pointer;border:none}
.btn-primary{background:var(--terra);color:var(--white)}
.btn-primary:hover{background:var(--terra-light);transform:translateY(-2px);box-shadow:0 8px 24px rgba(192,82,42,.4)}
.btn-outline{background:transparent;color:var(--white);border:2px solid rgba(255,255,255,.5)}
.btn-outline:hover{background:rgba(255,255,255,.1);border-color:var(--white)}
.btn-secondary{background:var(--dark);color:var(--white)}

section{padding:6rem 5%}
.section-label{font-size:.8rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:var(--terra);margin-bottom:.75rem}
.section-title{font-size:clamp(1.8rem,4vw,2.8rem);font-weight:800;color:var(--dark);margin-bottom:1rem;line-height:1.2}
.section-sub{font-size:1.05rem;color:var(--mid);max-width:600px}
.text-center{text-align:center}
.mx-auto{margin-left:auto;margin-right:auto}

.stats{background:var(--dark);padding:5rem 5%}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;max-width:1100px;margin:0 auto}
.stat-card{text-align:center;padding:1.5rem 1rem}
.stat-num{font-size:3rem;font-weight:900;color:var(--terra-light);line-height:1}
.stat-suf{font-size:2rem;font-weight:900;color:var(--terra-light)}
.stat-label{color:rgba(255,255,255,.7);margin-top:.5rem;font-size:.9rem}

.about{background:var(--white)}
.zigzag-row{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;max-width:1100px;margin:0 auto 5rem}
.zigzag-row:last-child{margin-bottom:0}
.zigzag-row.reverse{direction:rtl}
.zigzag-row.reverse>*{direction:ltr}
.about-text .section-title{margin-bottom:1.5rem}
.about-text p{color:var(--mid);margin-bottom:1rem}
.stat-giant{background:linear-gradient(135deg,var(--dark),var(--mid));border-radius:var(--radius);padding:3rem;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:300px}
.giant-num{font-size:6rem;font-weight:900;line-height:1;background:linear-gradient(135deg,var(--terra-light),#f9a875);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.giant-label{color:rgba(255,255,255,.8);font-size:1.1rem;margin-top:.5rem;max-width:200px;line-height:1.4}

.svg-path-section{background:var(--beige);padding:5rem 5%}
.path-wrap{max-width:900px;margin:2rem auto 0;display:flex;justify-content:center}
.draw-path{stroke-dasharray:1200;stroke-dashoffset:1200;transition:stroke-dashoffset 2s ease}
.draw-path.drawn{stroke-dashoffset:0}

.features{background:var(--cream)}
.accordion-grid{max-width:900px;margin:3rem auto 0;display:flex;flex-direction:column;gap:1rem}
.accordion-card{background:var(--white);border-radius:var(--radius);border:1px solid var(--border);overflow:hidden;transition:box-shadow var(--transition)}
.accordion-card.open{box-shadow:var(--shadow)}
.accordion-head{display:flex;align-items:center;gap:1.25rem;padding:1.5rem 1.75rem;cursor:pointer}
.accordion-icon{width:48px;height:48px;flex-shrink:0;border-radius:10px;background:var(--terra-pale);display:flex;align-items:center;justify-content:center}
.accordion-title{font-weight:700;color:var(--dark);font-size:1.05rem;flex:1}
.accordion-arrow{width:22px;height:22px;flex-shrink:0;transition:transform var(--transition)}
.accordion-card.open .accordion-arrow{transform:rotate(180deg)}
.accordion-body{max-height:0;overflow:hidden;transition:max-height .4s ease,padding .4s ease;padding:0 1.75rem}
.accordion-card.open .accordion-body{max-height:400px;padding:0 1.75rem 1.5rem}
.accordion-body p{color:var(--mid);font-size:.95rem}

.benefits{background:var(--white)}
.benefits-zigzag{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;max-width:1100px;margin:3rem auto 0}
.benefits-list{display:flex;flex-direction:column;gap:1.5rem}
.benefit-item{display:flex;gap:1.25rem;align-items:flex-start}
.benefit-dot{width:40px;height:40px;border-radius:50%;background:linear-gradient(135deg,var(--terra),var(--terra-light));display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:.15rem}
.benefit-dot svg{width:20px;height:20px}
.benefit-item h4{font-weight:700;color:var(--dark);margin-bottom:.35rem}
.benefit-item p{color:var(--mid);font-size:.93rem}
.benefits-visual{background:linear-gradient(160deg,var(--dark),var(--mid));border-radius:var(--radius);padding:3rem 2.5rem}
.benefits-visual blockquote{font-size:1.25rem;color:var(--white);font-style:italic;line-height:1.7;margin-bottom:1.5rem}
.benefits-visual cite{color:var(--terra-light);font-size:.9rem;font-style:normal;font-weight:600}

.testimonials{background:var(--beige)}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;max-width:1100px;margin:3rem auto 0}
.testi-card{background:var(--white);border-radius:var(--radius);padding:2rem;border:1px solid var(--border)}
.stars{color:#f59e0b;font-size:1.1rem;margin-bottom:1rem}
.testi-text{color:var(--mid);font-style:italic;margin-bottom:1.5rem;font-size:.95rem}
.testi-author{display:flex;align-items:center;gap:.75rem}
.testi-avatar{width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,var(--terra-light),var(--dark));display:flex;align-items:center;justify-content:center;color:var(--white);font-weight:700;font-size:1.1rem;flex-shrink:0}
.testi-name{font-weight:700;color:var(--dark);font-size:.95rem}
.testi-role{color:#8a6050;font-size:.85rem}

.faq{background:var(--cream)}
.faq-list{max-width:800px;margin:3rem auto 0;display:flex;flex-direction:column;gap:1rem}
.faq-item{background:var(--white);border-radius:var(--radius);border:1px solid var(--border);overflow:hidden}
.faq-q{width:100%;background:none;border:none;text-align:left;padding:1.25rem 1.5rem;font-weight:600;font-size:1rem;color:var(--dark);cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem}
.faq-arrow{width:20px;height:20px;flex-shrink:0;transition:transform var(--transition)}
.faq-item.open .faq-arrow{transform:rotate(180deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease,padding .35s ease;padding:0 1.5rem;color:var(--mid);font-size:.95rem}
.faq-item.open .faq-a{max-height:300px;padding:0 1.5rem 1.25rem}

.contact{background:var(--white)}
.contact-form{max-width:600px;margin:3rem auto 0;display:flex;flex-direction:column;gap:1.25rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem}
.form-group{display:flex;flex-direction:column;gap:.4rem}
.form-group label{font-weight:600;font-size:.9rem;color:var(--dark)}
.form-group input,.form-group textarea{padding:.8rem 1rem;border:2px solid var(--border);border-radius:var(--radius-sm);font-size:1rem;font-family:inherit;background:var(--cream);color:var(--dark);transition:border-color var(--transition)}
.form-group input:focus,.form-group textarea:focus{outline:none;border-color:var(--terra)}
.form-group textarea{resize:vertical;min-height:120px}
.form-error{color:#e53e3e;font-size:.82rem;display:none}
.form-group.has-error input,.form-group.has-error textarea{border-color:#e53e3e}
.form-group.has-error .form-error{display:block}

.cta-banner{background:linear-gradient(135deg,var(--dark),var(--terra));padding:5rem 5%;text-align:center}
.cta-banner h2{font-size:2.4rem;font-weight:800;color:var(--white);margin-bottom:1rem}
.cta-banner p{color:rgba(255,255,255,.85);font-size:1.05rem;margin-bottom:2rem;max-width:580px;margin-left:auto;margin-right:auto}

footer{background:var(--dark);color:rgba(255,255,255,.8);padding:4rem 5% 2rem}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-brand p{color:rgba(255,255,255,.6);font-size:.9rem;margin-top:.75rem;margin-bottom:1rem}
.footer-contact{font-size:.9rem;color:rgba(255,255,255,.6);line-height:1.8}
.footer-contact a{color:rgba(255,255,255,.6)}
.footer-col h4{color:var(--white);font-weight:700;margin-bottom:1.25rem;font-size:.95rem}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.6rem}
.footer-col ul li a{color:rgba(255,255,255,.6);font-size:.9rem;transition:color var(--transition)}
.footer-col ul li a:hover{color:var(--terra-light)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:1.5rem;text-align:center;font-size:.88rem;color:rgba(255,255,255,.5)}

.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:var(--dark);border-top:1px solid rgba(192,82,42,.35);padding:1.25rem 5%;display:flex;align-items:center;justify-content:space-between;gap:1.5rem;z-index:9000;flex-wrap:wrap}
.cookie-banner p{color:rgba(255,255,255,.85);font-size:.9rem;max-width:700px}
.cookie-banner a{color:var(--terra-light)}
.cookie-actions{display:flex;gap:.75rem;flex-shrink:0}
.cookie-actions .btn{padding:.6rem 1.4rem;font-size:.88rem}
.cookie-banner.hidden{display:none}

.legal-page{max-width:820px;margin:0 auto;padding:3rem 5%}
.legal-page h1{font-size:2rem;color:var(--dark);margin-bottom:.5rem}
.legal-page .legal-date{color:#8a6050;font-size:.9rem;margin-bottom:2rem}
.legal-page h2{font-size:1.2rem;color:var(--dark);margin:2rem 0 .75rem;font-weight:700}
.legal-page p,.legal-page li{color:var(--mid);margin-bottom:.75rem;font-size:.95rem}
.legal-page ul{padding-left:1.5rem;margin-bottom:1rem}
.legal-page table{width:100%;border-collapse:collapse;margin:1.5rem 0}
.legal-page th,.legal-page td{border:1px solid var(--border);padding:.75rem 1rem;font-size:.9rem;text-align:left}
.legal-page th{background:var(--beige);color:var(--dark);font-weight:700}

.thankyou-card{max-width:520px;margin:4rem auto;text-align:center;background:var(--white);border-radius:var(--radius);padding:3.5rem 3rem;box-shadow:var(--shadow)}
.thankyou-card .ty-icon{width:72px;height:72px;margin:0 auto 1.5rem;background:linear-gradient(135deg,var(--terra),var(--dark));border-radius:50%;display:flex;align-items:center;justify-content:center}
.thankyou-card h1{font-size:2rem;color:var(--dark);margin-bottom:1rem}
.thankyou-card p{color:var(--mid);margin-bottom:2rem}

.breadcrumb{padding:1rem 0;display:flex;gap:.5rem;align-items:center;font-size:.9rem;color:#8a6050}
.breadcrumb a{color:var(--terra)}

.fade-up{opacity:0;transform:translateY(28px);transition:opacity .6s ease,transform .6s ease}
.fade-up.visible{opacity:1;transform:none}

@media(max-width:768px){
nav{display:none}.burger{display:flex}
.stats-grid,.testi-grid,.zigzag-row,.benefits-zigzag,.footer-grid{grid-template-columns:1fr}
.zigzag-row.reverse{direction:ltr}
.form-row{grid-template-columns:1fr}
.cookie-banner{flex-direction:column;align-items:flex-start}
}
