*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
:root{
--primary:#3fa9d4;
--primary-light:#bfe6f5;
--primary-dark:#2c86ab;
--dark:#111827;
--slate:#1b2a41;
--slate-2:#26374f;
--slate-soft:#5c7080;
--bg:#f6fbfd;
--white:#ffffff;
--text:#1e2a3a;
--text-soft:#4a5b6e;
--border:#dce8ee;
--shadow:0 10px 30px rgba(17,32,51,.10);
--shadow-lg:0 20px 50px rgba(17,32,51,.16);
--radius:16px;
--radius-sm:8px;
--transition:.3s ease;
--font:'Segoe UI',system-ui,-apple-system,'Helvetica Neue',Arial,sans-serif;
}
body{font-family:var(--font);color:var(--text);background:var(--bg);line-height:1.65;overflow-x:hidden}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
h1,h2,h3,h4{line-height:1.15;font-weight:800;color:var(--slate)}
.container{max-width:1200px;margin:0 auto;width:100%;padding:0 1.5rem}
.section{min-height:100vh;display:flex;flex-direction:column;justify-content:center;padding:6rem 0}
.section-inner{max-width:1200px;margin:0 auto;width:100%;padding:0 1.5rem}
.eyebrow{display:inline-block;color:var(--primary-dark);background:var(--primary-light);padding:.4rem 1rem;border-radius:100px;font-size:.85rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;margin-bottom:1.25rem}
.section-title{font-size:clamp(2rem,4.5vw,3.2rem);margin-bottom:1rem;text-align:center}
.section-sub{font-size:1.15rem;color:var(--text-soft);text-align:center;max-width:680px;margin:0 auto 3.5rem}
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.9rem 1.9rem;border-radius:100px;font-weight:700;font-size:1rem;transition:transform var(--transition),box-shadow var(--transition),background var(--transition)}
.btn-primary{background:var(--slate);color:var(--white);box-shadow:var(--shadow)}
.btn-primary:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg);background:var(--slate-2)}
.btn-secondary{background:var(--white);color:var(--slate);border:2px solid var(--border)}
.btn-secondary:hover{transform:translateY(-3px);border-color:var(--primary)}
.hero-actions{display:flex;gap:1.2rem;justify-content:center;flex-wrap:wrap}

#progress-bar{position:fixed;top:0;left:0;height:4px;width:0%;background:linear-gradient(90deg,var(--primary),var(--slate));z-index:1000;transition:width .1s linear}

header{position:sticky;top:0;left:0;right:0;background:rgba(246,251,253,.85);backdrop-filter:blur(10px);z-index:900;transition:box-shadow var(--transition)}
header.scrolled{box-shadow:0 2px 20px rgba(17,32,51,.08)}
.header-inner{max-width:1200px;margin:0 auto;padding:1.1rem 1.5rem;display:flex;align-items:center;justify-content:space-between}
.logo{font-size:1.4rem;font-weight:800;color:var(--slate);letter-spacing:-.02em}
.logo span{color:var(--primary)}
nav ul{display:flex;gap:2.2rem;align-items:center}
nav a{font-weight:600;color:var(--text-soft);transition:color var(--transition)}
nav a:hover{color:var(--primary-dark)}
.burger{display:none;flex-direction:column;gap:5px;width:32px;height:24px}
.burger span{display:block;height:3px;width:100%;background:var(--slate);border-radius:2px;transition:transform var(--transition),opacity var(--transition)}
.burger.open span:nth-child(1){transform:translateY(9px) rotate(45deg)}
.burger.open span:nth-child(2){opacity:0}
.burger.open span:nth-child(3){transform:translateY(-9px) rotate(-45deg)}
.minimal-header .header-inner{justify-content:center}

.hero{position:relative;min-height:100vh;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden;padding-top:6rem}
.hero-bg{position:absolute;inset:0;z-index:0;background:linear-gradient(120deg,#e4f5fb,#bfe6f5,#3fa9d4,#1b2a41,#2c86ab,#e4f5fb);background-size:400% 400%;animation:gradientShift 18s ease infinite}
@keyframes gradientShift{0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}
.hero-content{position:relative;z-index:1;max-width:820px;margin:0 auto;padding:0 1.5rem}
.hero h1{font-size:clamp(2.4rem,6vw,4.4rem);color:var(--white);text-shadow:0 4px 30px rgba(17,32,51,.35);min-height:1.3em}
.typewriter-cursor{display:inline-block;width:.08em;background:var(--white);margin-left:.1em;animation:blink 1s step-end infinite}
@keyframes blink{50%{opacity:0}}
.hero p{font-size:1.25rem;color:rgba(255,255,255,.92);margin:1.5rem auto 2.5rem;max-width:620px;text-shadow:0 2px 12px rgba(17,32,51,.3)}
.hero .btn-secondary{background:rgba(255,255,255,.15);color:var(--white);border-color:rgba(255,255,255,.4)}
.hero .btn-secondary:hover{background:rgba(255,255,255,.25)}

.stats{background:var(--slate)}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;text-align:center}
.stat-number{font-size:clamp(2.2rem,5vw,3.4rem);font-weight:800;color:var(--white)}
.stat-number span{color:var(--primary-light)}
.stat-label{color:rgba(255,255,255,.75);margin-top:.5rem;font-weight:600}

.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.about-grid.reverse{direction:rtl}
.about-grid.reverse>*{direction:ltr}
.about-text p{margin-bottom:1.2rem;color:var(--text-soft);font-size:1.05rem}
.rings-wrap{display:flex;justify-content:center;align-items:center;gap:1.5rem;flex-wrap:wrap}
.ring-item{position:relative;width:140px;height:140px}
.ring-item svg{width:100%;height:100%;transform:rotate(-90deg)}
.ring-track{fill:none;stroke:var(--border);stroke-width:10}
.ring-fill{fill:none;stroke:var(--primary);stroke-width:10;stroke-linecap:round;stroke-dasharray:352;stroke-dashoffset:352;transition:stroke-dashoffset 1.4s cubic-bezier(.16,1,.3,1)}
.ring-item.in-view .ring-fill{stroke-dashoffset:var(--offset)}
.ring-label{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-weight:800;color:var(--slate);font-size:1.2rem}
.bars-wrap{display:flex;flex-direction:column;gap:1.1rem;width:100%;max-width:340px;margin:0 auto}
.bar-row{display:flex;flex-direction:column;gap:.4rem}
.bar-row-top{display:flex;justify-content:space-between;font-weight:700;color:var(--slate);font-size:.95rem}
.bar-track{height:12px;border-radius:100px;background:var(--border);overflow:hidden}
.bar-fill{height:100%;border-radius:100px;background:linear-gradient(90deg,var(--primary),var(--slate));width:0;transition:width 1.4s cubic-bezier(.16,1,.3,1)}
.bar-row.in-view .bar-fill{width:var(--target)}

.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem}
.step-card{background:var(--white);border-radius:var(--radius);padding:2.2rem 1.8rem;box-shadow:var(--shadow);position:relative}
.step-num{font-size:2.4rem;font-weight:800;color:var(--primary-light);margin-bottom:.8rem}
.step-card h3{font-size:1.2rem;margin-bottom:.7rem}
.step-card p{color:var(--text-soft);font-size:.98rem}

.cards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.card{background:var(--white);border-radius:var(--radius);padding:2.4rem 2rem;box-shadow:var(--shadow);transition:transform var(--transition),box-shadow var(--transition)}
.card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.icon-wrap{width:58px;height:58px;border-radius:var(--radius-sm);background:var(--primary-light);display:flex;align-items:center;justify-content:center;margin-bottom:1.3rem}
.icon-wrap svg{width:30px;height:30px;stroke:var(--primary-dark)}
.card h3{font-size:1.25rem;margin-bottom:.8rem}
.card p{color:var(--text-soft)}

.progress-ring-block{display:flex;align-items:center;gap:1.8rem;background:var(--white);border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow)}
.progress-ring{position:relative;width:110px;height:110px;flex-shrink:0}
.progress-ring svg{width:100%;height:100%;transform:rotate(-90deg)}
.progress-ring-track{fill:none;stroke:var(--border);stroke-width:8}
.progress-ring-fill{fill:none;stroke:var(--primary);stroke-width:8;stroke-linecap:round;stroke-dasharray:283;stroke-dashoffset:283;transition:stroke-dashoffset 1.6s cubic-bezier(.16,1,.3,1)}
.progress-ring.in-view .progress-ring-fill{stroke-dashoffset:var(--offset)}
.progress-ring-label{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-weight:800;color:var(--slate);font-size:1.1rem}

.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.testimonial-card{background:var(--white);border-radius:var(--radius);padding:2.2rem;box-shadow:var(--shadow)}
.stars{color:var(--primary);font-size:1.1rem;margin-bottom:1rem;letter-spacing:.15em}
.testimonial-card p{color:var(--text-soft);font-style:italic;margin-bottom:1.5rem}
.testimonial-author{display:flex;align-items:center;gap:1rem}
.avatar{width:48px;height:48px;border-radius:50%;background:var(--slate);color:var(--white);display:flex;align-items:center;justify-content:center;font-weight:800;font-size:1.1rem;flex-shrink:0}
.author-name{font-weight:700;color:var(--slate)}
.author-role{font-size:.88rem;color:var(--text-soft)}

.faq-list{max-width:800px;margin:0 auto;display:flex;flex-direction:column;gap:1rem}
.faq-item{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden}
.faq-question{width:100%;display:flex;justify-content:space-between;align-items:center;padding:1.5rem 1.8rem;font-weight:700;font-size:1.05rem;color:var(--slate);text-align:left}
.faq-icon{transition:transform var(--transition);font-size:1.3rem;color:var(--primary)}
.faq-item.open .faq-icon{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height var(--transition)}
.faq-answer p{padding:0 1.8rem 1.6rem;color:var(--text-soft)}
.faq-item.open .faq-answer{max-height:400px}

.contact-wrap{max-width:640px;margin:0 auto;background:var(--white);border-radius:var(--radius);padding:2.8rem;box-shadow:var(--shadow-lg)}
.form-group{margin-bottom:1.4rem;display:flex;flex-direction:column;gap:.5rem}
.form-group label{font-weight:700;color:var(--slate);font-size:.95rem}
.form-group input,.form-group textarea{padding:.9rem 1.1rem;border:2px solid var(--border);border-radius:var(--radius-sm);font-family:inherit;font-size:1rem;transition:border-color var(--transition)}
.form-group input:focus,.form-group textarea:focus{outline:none;border-color:var(--primary)}
.form-group textarea{resize:vertical;min-height:130px}
.form-error{color:#c0392b;font-size:.85rem;min-height:1.1em}
.form-group.invalid input,.form-group.invalid textarea{border-color:#c0392b}
.contact-wrap .btn-primary{width:100%;justify-content:center}

.cta-banner{background:linear-gradient(120deg,var(--slate),var(--primary-dark));border-radius:var(--radius);margin:0 1.5rem;padding:4rem 2rem;text-align:center}
.cta-banner h2{color:var(--white);font-size:clamp(1.8rem,4vw,2.6rem);margin-bottom:1.6rem}
.cta-banner .btn-primary{background:var(--white);color:var(--slate)}
.cta-banner .btn-primary:hover{background:var(--primary-light)}

footer{background:var(--slate);color:rgba(255,255,255,.8);padding:5rem 0 2rem}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2.5rem;padding:0 1.5rem;max-width:1200px;margin:0 auto}
.footer-col h4{color:var(--white);font-size:1rem;margin-bottom:1.2rem}
.footer-brand{font-size:1.3rem;font-weight:800;color:var(--white);margin-bottom:1rem}
.footer-col p{margin-bottom:.6rem;font-size:.92rem}
.footer-col ul{display:flex;flex-direction:column;gap:.7rem}
.footer-col a{font-size:.92rem;transition:color var(--transition)}
.footer-col a:hover{color:var(--primary-light)}
.footer-bottom{text-align:center;margin-top:3.5rem;padding-top:2rem;border-top:1px solid rgba(255,255,255,.12);font-size:.85rem}
.minimal-footer{background:var(--slate);color:rgba(255,255,255,.8);padding:2.5rem 1.5rem;text-align:center}
.minimal-footer p{margin-bottom:.6rem;font-size:.9rem}
.minimal-footer a{text-decoration:underline;text-underline-offset:3px}

.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:var(--white);box-shadow:0 -10px 40px rgba(17,32,51,.15);padding:1.5rem 2rem;display:flex;align-items:center;justify-content:space-between;gap:2rem;z-index:1000;flex-wrap:wrap}
.cookie-banner.hidden{display:none}
.cookie-banner p{color:var(--text-soft);font-size:.92rem;max-width:640px}
.cookie-actions{display:flex;gap:1rem;flex-shrink:0}
.cookie-actions button{padding:.7rem 1.5rem;border-radius:100px;font-weight:700;font-size:.9rem}
.cookie-accept{background:var(--slate);color:var(--white)}
.cookie-decline{background:var(--white);color:var(--slate);border:2px solid var(--border)}

.breadcrumb{padding:1.5rem 0 0;font-size:.9rem;color:var(--text-soft)}
.breadcrumb a{color:var(--primary-dark);font-weight:600}
.pill-badge{display:inline-block;background:var(--primary-light);color:var(--primary-dark);padding:.5rem 1.3rem;border-radius:100px;font-weight:700;font-size:.85rem;text-transform:uppercase;letter-spacing:.04em;margin-bottom:1.5rem}
.centered-hero{text-align:center;padding:5rem 0 3rem}
.centered-hero h1{font-size:clamp(2.2rem,5vw,3.6rem);margin-bottom:2.5rem}

.legal-page{max-width:820px;margin:0 auto;padding:5rem 1.5rem 6rem}
.legal-page h1{font-size:2.4rem;margin-bottom:1rem}
.legal-page .updated{color:var(--text-soft);margin-bottom:3rem;font-size:.9rem}
.legal-section{margin-bottom:2.6rem}
.legal-section h2{font-size:1.35rem;color:var(--slate);margin-bottom:.9rem}
.legal-section p{color:var(--text-soft)}
.legal-table{width:100%;border-collapse:collapse;margin-top:1rem}
.legal-table th,.legal-table td{border:1px solid var(--border);padding:.9rem 1rem;text-align:left;font-size:.92rem;color:var(--text-soft)}
.legal-table th{background:var(--bg);color:var(--slate)}

.thank-you-wrap{min-height:80vh;display:flex;align-items:center;justify-content:center;padding:4rem 1.5rem}
.thank-you-card{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow-lg);padding:3.5rem 3rem;text-align:center;max-width:520px}
.check-icon{width:80px;height:80px;margin:0 auto 1.8rem;color:var(--primary)}
.thank-you-card h1{font-size:2rem;margin-bottom:1rem}
.thank-you-card p{color:var(--text-soft);margin-bottom:2rem}

.fade-up{opacity:0;transform:translateY(30px);transition:opacity .7s ease,transform .7s ease}
.fade-up.visible{opacity:1;transform:translateY(0)}
.eyebrow-center{display:block;text-align:center;width:fit-content;margin:0 auto 1.25rem}
.section-title-left{text-align:left}
.section-white{background:var(--white)}
.section-compact{min-height:auto;padding:5rem 0}
.section-cta{min-height:auto;padding:2rem 0 6rem}
.mt-lg{margin-top:2.5rem}
.text-soft{color:var(--text-soft)}

@media(max-width:768px){
nav{position:fixed;top:74px;left:0;right:0;background:var(--white);box-shadow:0 10px 30px rgba(17,32,51,.12);max-height:0;overflow:hidden;transition:max-height var(--transition)}
nav.open{max-height:300px}
nav ul{flex-direction:column;padding:1.5rem;gap:1.2rem;align-items:flex-start}
.burger{display:flex}
.stats-grid{grid-template-columns:repeat(2,1fr)}
.about-grid,.about-grid.reverse{grid-template-columns:1fr;direction:ltr}
.steps-grid{grid-template-columns:1fr}
.cards-grid{grid-template-columns:1fr}
.testimonials-grid{grid-template-columns:1fr}
.footer-grid{grid-template-columns:1fr;gap:2.2rem}
.cookie-banner{flex-direction:column;align-items:stretch;text-align:center}
.cookie-actions{justify-content:center}
.progress-ring-block{flex-direction:column;text-align:center}
.contact-wrap{padding:2rem 1.5rem}
}
