*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;line-height:1.7;color:#2d3436;background:#fafafa}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit;transition:color .3s}
ul,ol{list-style:none}
.container{width:90%;max-width:1140px;margin:0 auto}

/* Navigation */
.nav{position:fixed;top:0;left:0;right:0;z-index:1000;padding:1rem 0;transition:background .3s,box-shadow .3s}
.nav.scrolled{background:rgba(255,255,255,.97);box-shadow:0 2px 20px rgba(0,0,0,.08)}
.nav-inner{display:flex;justify-content:space-between;align-items:center}
.nav-logo{font-size:1.4rem;font-weight:700;color:#1e3a5f}
.nav-logo span{color:#3498db}
.nav-links{display:flex;gap:2rem}
.nav-links a{font-size:.95rem;font-weight:500;color:#555;position:relative}
.nav-links a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:2px;background:#3498db;transition:width .3s}
.nav-links a:hover::after{width:100%}
.nav-links a:hover{color:#1e3a5f}
.nav-toggle{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:5px}
.nav-toggle span{width:24px;height:2px;background:#1e3a5f;transition:transform .3s}

/* Hero Section */
.hero{min-height:100vh;display:flex;align-items:center;background:linear-gradient(135deg,#1e3a5f 0%,#2c5282 50%,#3182ce 100%);position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-50%;right:-20%;width:80%;height:200%;background:radial-gradient(circle,rgba(255,255,255,.05) 0%,transparent 70%);pointer-events:none}
.hero-content{display:flex;align-items:center;gap:4rem;padding:6rem 0}
.hero-text{flex:1}
.hero-badge{display:inline-block;background:rgba(255,255,255,.15);color:#fff;padding:.5rem 1.2rem;border-radius:30px;font-size:.85rem;margin-bottom:1.5rem;backdrop-filter:blur(10px)}
.hero h1{font-size:3.2rem;color:#fff;line-height:1.2;margin-bottom:1.5rem;font-weight:700}
.hero h1 span{color:#90cdf4}
.hero-desc{font-size:1.15rem;color:rgba(255,255,255,.85);margin-bottom:2.5rem;max-width:520px}
.hero-btns{display:flex;gap:1rem;flex-wrap:wrap}
.hero-visual{flex:1;position:relative}
.hero-img{border-radius:20px;box-shadow:0 30px 60px rgba(0,0,0,.3)}
.hero-float{position:absolute;background:#fff;padding:1.2rem 1.5rem;border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,.15)}
.hero-float.one{top:10%;right:-30px}
.hero-float.two{bottom:15%;left:-40px}
.hero-float-num{font-size:1.8rem;font-weight:700;color:#3498db}
.hero-float-txt{font-size:.85rem;color:#666}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:1rem 2rem;border-radius:8px;font-weight:600;font-size:1rem;cursor:pointer;border:none;transition:all .3s}
.btn-primary{background:#3498db;color:#fff}
.btn-primary:hover{background:#2980b9;transform:translateY(-2px);box-shadow:0 10px 30px rgba(52,152,219,.3)}
.btn-outline{background:transparent;border:2px solid rgba(255,255,255,.4);color:#fff}
.btn-outline:hover{background:rgba(255,255,255,.1);border-color:#fff}
.btn-secondary{background:#1e3a5f;color:#fff}
.btn-secondary:hover{background:#2c5282}
.btn-light{background:#fff;color:#1e3a5f}
.btn-light:hover{background:#f8f9fa}

/* Section Styles */
section{padding:5rem 0}
.section-light{background:#fff}
.section-gray{background:#f4f6f8}
.section-dark{background:#1e3a5f;color:#fff}
.section-gradient{background:linear-gradient(180deg,#f8fafc 0%,#e2e8f0 100%)}
.section-header{text-align:center;max-width:700px;margin:0 auto 4rem}
.section-tag{display:inline-block;background:rgba(52,152,219,.1);color:#3498db;padding:.4rem 1rem;border-radius:20px;font-size:.85rem;font-weight:600;margin-bottom:1rem}
.section-dark .section-tag{background:rgba(255,255,255,.1);color:#90cdf4}
.section-title{font-size:2.5rem;color:#1e3a5f;margin-bottom:1rem;font-weight:700}
.section-dark .section-title{color:#fff}
.section-subtitle{font-size:1.1rem;color:#666}
.section-dark .section-subtitle{color:rgba(255,255,255,.7)}

/* Services Grid */
.services-grid{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center}
.service-card{flex:1 1 320px;max-width:380px;background:#fff;border-radius:16px;padding:2.5rem;box-shadow:0 5px 30px rgba(0,0,0,.06);transition:transform .3s,box-shadow .3s;position:relative;overflow:hidden}
.service-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#3498db,#2ecc71);transform:scaleX(0);transform-origin:left;transition:transform .3s}
.service-card:hover::before{transform:scaleX(1)}
.service-card:hover{transform:translateY(-8px);box-shadow:0 20px 50px rgba(0,0,0,.1)}
.service-icon{width:60px;height:60px;background:linear-gradient(135deg,#3498db,#2ecc71);border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem}
.service-icon svg{width:28px;height:28px;fill:#fff}
.service-card h3{font-size:1.3rem;color:#1e3a5f;margin-bottom:.8rem}
.service-card p{color:#666;font-size:.95rem;margin-bottom:1.5rem}
.service-price{display:flex;align-items:baseline;gap:.3rem}
.service-price .amount{font-size:1.8rem;font-weight:700;color:#3498db}
.service-price .period{font-size:.9rem;color:#888}

/* Stats Section */
.stats-row{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center}
.stat-item{flex:1 1 200px;text-align:center;padding:2rem}
.stat-num{font-size:3rem;font-weight:700;color:#90cdf4;margin-bottom:.5rem}
.stat-label{font-size:1rem;color:rgba(255,255,255,.8)}

/* About Section */
.about-grid{display:flex;gap:4rem;align-items:center}
.about-img{flex:1;position:relative}
.about-img img{border-radius:20px;box-shadow:0 20px 50px rgba(0,0,0,.1)}
.about-img::after{content:'';position:absolute;top:30px;left:-30px;right:30px;bottom:-30px;border:3px solid #3498db;border-radius:20px;z-index:-1}
.about-content{flex:1}
.about-content h2{font-size:2.2rem;color:#1e3a5f;margin-bottom:1.5rem}
.about-content p{color:#555;margin-bottom:1.5rem}
.about-list{margin:2rem 0}
.about-list li{display:flex;align-items:flex-start;gap:1rem;margin-bottom:1rem}
.about-list .check{width:24px;height:24px;background:#3498db;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px}
.about-list .check svg{width:14px;height:14px;fill:#fff}

/* Process Section */
.process-timeline{display:flex;flex-direction:column;gap:3rem;position:relative;padding-left:3rem}
.process-timeline::before{content:'';position:absolute;left:15px;top:0;bottom:0;width:2px;background:linear-gradient(180deg,#3498db,#2ecc71)}
.process-step{position:relative;display:flex;gap:2rem;align-items:flex-start}
.process-num{position:absolute;left:-3rem;width:32px;height:32px;background:#3498db;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.9rem}
.process-content h3{font-size:1.3rem;color:#1e3a5f;margin-bottom:.5rem}
.process-content p{color:#666}

/* Testimonials */
.testimonials-slider{display:flex;gap:2rem;overflow-x:auto;padding:1rem;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch}
.testimonials-slider::-webkit-scrollbar{display:none}
.testimonial-card{flex:0 0 350px;scroll-snap-align:start;background:#fff;border-radius:16px;padding:2rem;box-shadow:0 5px 30px rgba(0,0,0,.06)}
.testimonial-quote{font-size:1rem;color:#555;font-style:italic;margin-bottom:1.5rem;line-height:1.8}
.testimonial-author{display:flex;align-items:center;gap:1rem}
.testimonial-avatar{width:50px;height:50px;border-radius:50%;background:linear-gradient(135deg,#3498db,#9b59b6);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700}
.testimonial-info h4{font-size:1rem;color:#1e3a5f}
.testimonial-info span{font-size:.85rem;color:#888}

/* CTA Section */
.cta-section{background:linear-gradient(135deg,#1e3a5f 0%,#3182ce 100%);padding:5rem 0;position:relative;overflow:hidden}
.cta-section::before{content:'';position:absolute;top:0;right:0;width:50%;height:100%;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>') repeat;opacity:.5}
.cta-content{text-align:center;position:relative;z-index:1}
.cta-content h2{font-size:2.5rem;color:#fff;margin-bottom:1rem}
.cta-content p{font-size:1.1rem;color:rgba(255,255,255,.8);margin-bottom:2rem;max-width:600px;margin-left:auto;margin-right:auto}

/* Form Styles */
.form-section{background:#f8fafc}
.form-wrapper{max-width:700px;margin:0 auto;background:#fff;padding:3rem;border-radius:20px;box-shadow:0 10px 50px rgba(0,0,0,.08)}
.form-group{margin-bottom:1.5rem}
.form-group label{display:block;font-weight:600;color:#1e3a5f;margin-bottom:.5rem}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:1rem;border:2px solid #e2e8f0;border-radius:10px;font-size:1rem;font-family:inherit;transition:border-color .3s,box-shadow .3s}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:#3498db;box-shadow:0 0 0 4px rgba(52,152,219,.1)}
.form-group textarea{min-height:120px;resize:vertical}
.form-row{display:flex;gap:1.5rem}
.form-row .form-group{flex:1}
.form-submit{text-align:center;margin-top:2rem}

/* Contact Info */
.contact-grid{display:flex;gap:3rem;flex-wrap:wrap}
.contact-info{flex:1 1 300px}
.contact-info h2{font-size:2rem;color:#1e3a5f;margin-bottom:1.5rem}
.contact-info p{color:#666;margin-bottom:2rem}
.contact-item{display:flex;align-items:flex-start;gap:1rem;margin-bottom:1.5rem}
.contact-icon{width:50px;height:50px;background:linear-gradient(135deg,#3498db,#2ecc71);border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-icon svg{width:24px;height:24px;fill:#fff}
.contact-text h4{font-size:1rem;color:#1e3a5f;margin-bottom:.3rem}
.contact-text p{color:#666;font-size:.95rem;margin:0}
.contact-form-wrap{flex:1 1 400px}

/* Footer */
.footer{background:#0f172a;color:#fff;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{font-size:1.1rem;margin-bottom:1.5rem;color:#fff}
.footer-col p{color:rgba(255,255,255,.6);font-size:.95rem}
.footer-col ul li{margin-bottom:.8rem}
.footer-col ul a{color:rgba(255,255,255,.6);font-size:.95rem;transition:color .3s}
.footer-col ul a:hover{color:#3498db}
.footer-logo{font-size:1.5rem;font-weight:700;margin-bottom:1rem}
.footer-logo span{color:#3498db}
.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{color:rgba(255,255,255,.5);font-size:.9rem}
.footer-links{display:flex;gap:1.5rem}
.footer-links a{color:rgba(255,255,255,.5);font-size:.9rem}
.footer-links a:hover{color:#3498db}

/* Cookie Banner */
.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:#1e3a5f;padding:1.5rem;z-index:9999;transform:translateY(100%);transition:transform .4s}
.cookie-banner.show{transform:translateY(0)}
.cookie-inner{display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap}
.cookie-text{flex:1;color:#fff}
.cookie-text p{font-size:.95rem;margin:0}
.cookie-text a{color:#90cdf4;text-decoration:underline}
.cookie-btns{display:flex;gap:1rem}
.cookie-btn{padding:.8rem 1.5rem;border-radius:6px;font-weight:600;cursor:pointer;border:none;font-size:.9rem}
.cookie-accept{background:#3498db;color:#fff}
.cookie-reject{background:transparent;border:1px solid rgba(255,255,255,.3);color:#fff}

/* Thanks Page */
.thanks-section{min-height:100vh;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#1e3a5f 0%,#3182ce 100%)}
.thanks-card{background:#fff;padding:4rem;border-radius:24px;text-align:center;max-width:550px;box-shadow:0 30px 80px rgba(0,0,0,.2)}
.thanks-icon{width:100px;height:100px;background:linear-gradient(135deg,#2ecc71,#27ae60);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 2rem}
.thanks-icon svg{width:50px;height:50px;fill:#fff}
.thanks-card h1{font-size:2.2rem;color:#1e3a5f;margin-bottom:1rem}
.thanks-card p{color:#666;font-size:1.1rem;margin-bottom:2rem}

/* Page Headers */
.page-header{background:linear-gradient(135deg,#1e3a5f 0%,#2c5282 100%);padding:8rem 0 4rem;text-align:center}
.page-header h1{font-size:2.8rem;color:#fff;margin-bottom:1rem}
.page-header p{color:rgba(255,255,255,.8);font-size:1.1rem}
.breadcrumb{display:flex;justify-content:center;gap:.5rem;margin-top:1.5rem}
.breadcrumb a,.breadcrumb span{color:rgba(255,255,255,.6);font-size:.9rem}
.breadcrumb a:hover{color:#fff}

/* Legal Pages */
.legal-content{padding:4rem 0}
.legal-content h2{font-size:1.8rem;color:#1e3a5f;margin:2rem 0 1rem}
.legal-content h3{font-size:1.3rem;color:#1e3a5f;margin:1.5rem 0 .8rem}
.legal-content p{color:#555;margin-bottom:1rem}
.legal-content ul{margin:1rem 0 1rem 1.5rem}
.legal-content ul li{color:#555;margin-bottom:.5rem;position:relative;padding-left:1rem}
.legal-content ul li::before{content:'•';position:absolute;left:0;color:#3498db}

/* Sticky CTA */
.sticky-cta{position:fixed;bottom:2rem;right:2rem;z-index:900;opacity:0;visibility:hidden;transform:translateY(20px);transition:all .3s}
.sticky-cta.show{opacity:1;visibility:visible;transform:translateY(0)}
.sticky-cta a{display:flex;align-items:center;gap:.8rem;background:linear-gradient(135deg,#3498db,#2ecc71);color:#fff;padding:1rem 1.5rem;border-radius:50px;font-weight:600;box-shadow:0 10px 30px rgba(52,152,219,.4)}
.sticky-cta a:hover{transform:scale(1.05)}

/* Responsive */
@media(max-width:992px){
.hero-content{flex-direction:column;text-align:center}
.hero-visual{max-width:500px}
.hero h1{font-size:2.5rem}
.hero-desc{margin-left:auto;margin-right:auto}
.hero-btns{justify-content:center}
.about-grid{flex-direction:column}
.about-img::after{display:none}
.contact-grid{flex-direction:column}
}

@media(max-width:768px){
.nav-links{position:fixed;top:0;right:-100%;width:70%;max-width:300px;height:100vh;background:#fff;flex-direction:column;padding:5rem 2rem;gap:1.5rem;transition:right .3s;box-shadow:-5px 0 30px rgba(0,0,0,.1)}
.nav-links.open{right:0}
.nav-toggle{display:flex}
.hero{padding-top:5rem}
.hero h1{font-size:2rem}
.section-title{font-size:2rem}
.form-row{flex-direction:column;gap:0}
.footer-grid{flex-direction:column}
.footer-bottom{flex-direction:column;text-align:center}
.cookie-inner{flex-direction:column;text-align:center}
.stats-row{flex-direction:column}
.stat-item{padding:1rem}
}
