*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--primary:#1a5f7a;--primary-dark:#134a5f;--secondary:#e8c547;--text:#2d3436;--text-light:#636e72;--bg:#fff;--bg-alt:#f8f9fa;--bg-dark:#1a5f7a;--border:#dfe6e9;--shadow:0 4px 20px rgba(0,0,0,0.08);--radius:8px}
html{scroll-behavior:smooth}
body{font-family:'Segoe UI',Roboto,sans-serif;line-height:1.7;color:var(--text);background:var(--bg)}
a{color:var(--primary);text-decoration:none;transition:color .2s}
a:hover{color:var(--primary-dark)}
img,svg{max-width:100%;height:auto}
.container{width:90%;max-width:1200px;margin:0 auto;padding:0 1rem}

/* Header */
header{background:var(--bg);box-shadow:var(--shadow);position:sticky;top:0;z-index:1000}
.header-inner{display:flex;justify-content:space-between;align-items:center;padding:1rem 0}
.logo{font-size:1.5rem;font-weight:700;color:var(--primary);display:flex;align-items:center;gap:.5rem}
.logo svg{width:40px;height:40px}
nav{display:flex;align-items:center}
.nav-links{display:flex;gap:2rem;list-style:none}
.nav-links a{color:var(--text);font-weight:500;padding:.5rem 0;position:relative}
.nav-links a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--secondary);transition:width .3s}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
.nav-links a:hover{color:var(--primary)}

/* Mobile Menu */
.menu-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:.5rem}
.menu-toggle span{width:25px;height:3px;background:var(--primary);border-radius:2px;transition:.3s}
.menu-toggle.active span:nth-child(1){transform:rotate(45deg) translate(5px,6px)}
.menu-toggle.active span:nth-child(2){opacity:0}
.menu-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-6px)}

@media(max-width:768px){
  .nav-links{position:fixed;top:70px;left:0;right:0;background:var(--bg);flex-direction:column;padding:2rem;gap:1rem;box-shadow:var(--shadow);transform:translateY(-150%);transition:transform .3s;z-index:999}
  .nav-links.active{transform:translateY(0)}
  .menu-toggle{display:flex}
}

/* Hero */
.hero{background:linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 100%);color:#fff;padding:5rem 0;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-50%;right:-10%;width:500px;height:500px;background:rgba(232,197,71,0.1);border-radius:50%}
.hero-content{display:flex;flex-direction:column;gap:1.5rem;max-width:700px;position:relative;z-index:1}
.hero h1{font-size:clamp(2rem,5vw,3.2rem);line-height:1.2}
.hero p{font-size:1.15rem;opacity:.95;max-width:550px}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.9rem 2rem;border-radius:var(--radius);font-weight:600;transition:all .3s;border:none;cursor:pointer;font-size:1rem}
.btn-primary{background:var(--secondary);color:var(--text)}
.btn-primary:hover{background:#d4b33d;transform:translateY(-2px)}
.btn-secondary{background:transparent;border:2px solid #fff;color:#fff}
.btn-secondary:hover{background:#fff;color:var(--primary)}
.btn-outline{background:transparent;border:2px solid var(--primary);color:var(--primary)}
.btn-outline:hover{background:var(--primary);color:#fff}

/* Sections */
section{padding:4rem 0}
section:nth-child(even){background:var(--bg-alt)}
.section-header{text-align:center;margin-bottom:3rem}
.section-header h2{font-size:clamp(1.8rem,4vw,2.5rem);color:var(--text);margin-bottom:1rem}
.section-header p{color:var(--text-light);max-width:600px;margin:0 auto}
.section-label{display:inline-block;color:var(--primary);font-weight:600;text-transform:uppercase;font-size:.85rem;letter-spacing:1px;margin-bottom:.5rem}

/* Cards */
.card-grid{display:flex;flex-wrap:wrap;gap:2rem}
.card{flex:1 1 300px;background:var(--bg);border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow);transition:transform .3s,box-shadow .3s}
.card:hover{transform:translateY(-5px);box-shadow:0 8px 30px rgba(0,0,0,0.12)}
.card-icon{width:60px;height:60px;background:linear-gradient(135deg,var(--primary),var(--primary-dark));border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem}
.card-icon svg{width:30px;height:30px;fill:#fff}
.card h3{font-size:1.25rem;margin-bottom:.75rem;color:var(--text)}
.card p{color:var(--text-light);font-size:.95rem}

/* Service Cards */
.service-card{background:var(--bg);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:transform .3s}
.service-card:hover{transform:translateY(-5px)}
.service-header{background:var(--primary);color:#fff;padding:1.5rem;display:flex;align-items:center;gap:1rem}
.service-header svg{width:40px;height:40px;fill:#fff}
.service-content{padding:1.5rem}
.service-content h3{font-size:1.3rem;margin-bottom:.75rem}
.service-price{display:flex;align-items:baseline;gap:.5rem;margin-top:1rem;padding-top:1rem;border-top:1px solid var(--border)}
.service-price .amount{font-size:1.5rem;font-weight:700;color:var(--primary)}
.service-price .period{color:var(--text-light);font-size:.9rem}

/* Features */
.features-list{display:flex;flex-direction:column;gap:1.5rem}
.feature-item{display:flex;gap:1.5rem;align-items:flex-start;padding:1.5rem;background:var(--bg);border-radius:var(--radius);box-shadow:var(--shadow)}
.feature-icon{flex-shrink:0;width:50px;height:50px;background:var(--secondary);border-radius:50%;display:flex;align-items:center;justify-content:center}
.feature-icon svg{width:24px;height:24px;fill:var(--text)}
.feature-content h3{font-size:1.1rem;margin-bottom:.5rem}
.feature-content p{color:var(--text-light);font-size:.95rem}

/* Stats */
.stats-section{background:var(--primary);color:#fff;padding:4rem 0}
.stats-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:3rem}
.stat-item{text-align:center;flex:1 1 200px}
.stat-number{font-size:3rem;font-weight:700;color:var(--secondary);display:block}
.stat-label{font-size:1rem;opacity:.9;margin-top:.5rem}

/* Testimonials */
.testimonial-grid{display:flex;flex-wrap:wrap;gap:2rem}
.testimonial{flex:1 1 350px;background:var(--bg);border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow);position:relative}
.testimonial::before{content:'"';position:absolute;top:1rem;left:1.5rem;font-size:4rem;color:var(--secondary);opacity:.3;font-family:Georgia,serif;line-height:1}
.testimonial-text{font-style:italic;color:var(--text-light);margin-bottom:1.5rem;padding-top:1rem;position:relative;z-index:1}
.testimonial-author{display:flex;align-items:center;gap:1rem}
.author-avatar{width:50px;height:50px;background:var(--primary);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:1.2rem}
.author-info h4{font-size:1rem;color:var(--text)}
.author-info span{font-size:.85rem;color:var(--text-light)}

/* Process */
.process-steps{display:flex;flex-wrap:wrap;gap:2rem;counter-reset:step}
.process-step{flex:1 1 250px;text-align:center;padding:2rem 1.5rem;position:relative}
.process-step::before{counter-increment:step;content:counter(step);width:50px;height:50px;background:var(--secondary);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.3rem;font-weight:700;color:var(--text);margin:0 auto 1.5rem}
.process-step h3{font-size:1.15rem;margin-bottom:.75rem}
.process-step p{color:var(--text-light);font-size:.95rem}

/* FAQ */
.faq-list{max-width:800px;margin:0 auto;display:flex;flex-direction:column;gap:1rem}
.faq-item{background:var(--bg);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden}
.faq-question{width:100%;padding:1.25rem 1.5rem;display:flex;justify-content:space-between;align-items:center;background:none;border:none;cursor:pointer;text-align:left;font-size:1rem;font-weight:600;color:var(--text)}
.faq-question:hover{color:var(--primary)}
.faq-question svg{width:20px;height:20px;fill:var(--primary);transition:transform .3s;flex-shrink:0}
.faq-item.active .faq-question svg{transform:rotate(180deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .3s ease-out}
.faq-answer-inner{padding:0 1.5rem 1.5rem;color:var(--text-light)}
.faq-item.active .faq-answer{max-height:500px}

/* CTA Section */
.cta-section{background:linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 100%);color:#fff;padding:4rem 0;text-align:center}
.cta-section h2{font-size:clamp(1.8rem,4vw,2.5rem);margin-bottom:1rem}
.cta-section p{opacity:.9;max-width:600px;margin:0 auto 2rem}
.cta-buttons{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap}

/* Contact Page */
.contact-grid{display:flex;flex-wrap:wrap;gap:3rem}
.contact-info{flex:1 1 400px}
.contact-block{margin-bottom:2rem}
.contact-block h3{font-size:1.2rem;margin-bottom:1rem;color:var(--primary)}
.contact-block p{color:var(--text-light);margin-bottom:.5rem}
.contact-icon{display:flex;align-items:center;gap:.75rem;margin-bottom:.75rem}
.contact-icon svg{width:20px;height:20px;fill:var(--primary)}
.map-placeholder{flex:1 1 400px;background:var(--bg-alt);border-radius:var(--radius);min-height:350px;display:flex;align-items:center;justify-content:center;border:2px dashed var(--border)}

/* About Page */
.about-intro{display:flex;flex-wrap:wrap;gap:3rem;align-items:center}
.about-content{flex:1 1 500px}
.about-image{flex:1 1 400px;background:var(--bg-alt);border-radius:var(--radius);min-height:300px;display:flex;align-items:center;justify-content:center}
.about-image svg{width:200px;height:200px;fill:var(--primary);opacity:.2}
.timeline{max-width:800px;margin:0 auto;position:relative;padding-left:3rem}
.timeline::before{content:'';position:absolute;left:0;top:0;bottom:0;width:3px;background:var(--primary)}
.timeline-item{position:relative;margin-bottom:2rem;padding-left:2rem}
.timeline-item::before{content:'';position:absolute;left:-3rem;top:.5rem;width:15px;height:15px;background:var(--secondary);border-radius:50%;border:3px solid var(--primary)}
.timeline-year{font-weight:700;color:var(--primary);margin-bottom:.5rem}

/* Team */
.team-grid{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center}
.team-member{flex:0 1 280px;text-align:center;padding:2rem;background:var(--bg);border-radius:var(--radius);box-shadow:var(--shadow)}
.member-avatar{width:100px;height:100px;background:var(--primary);border-radius:50%;margin:0 auto 1.5rem;display:flex;align-items:center;justify-content:center;color:#fff;font-size:2.5rem;font-weight:700}
.member-name{font-size:1.2rem;margin-bottom:.25rem}
.member-role{color:var(--text-light);font-size:.9rem;margin-bottom:1rem}
.member-bio{color:var(--text-light);font-size:.9rem}

/* Values */
.values-grid{display:flex;flex-wrap:wrap;gap:2rem}
.value-card{flex:1 1 250px;text-align:center;padding:2rem}
.value-icon{width:70px;height:70px;background:var(--bg-alt);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem}
.value-icon svg{width:35px;height:35px;fill:var(--primary)}

/* Legal Pages */
.legal-content{max-width:800px;margin:0 auto}
.legal-content h1{margin-bottom:2rem;padding-bottom:1rem;border-bottom:2px solid var(--border)}
.legal-content h2{font-size:1.4rem;margin:2rem 0 1rem;color:var(--primary)}
.legal-content h3{font-size:1.15rem;margin:1.5rem 0 .75rem}
.legal-content p{margin-bottom:1rem;color:var(--text-light)}
.legal-content ul{margin:1rem 0 1rem 1.5rem;color:var(--text-light)}
.legal-content li{margin-bottom:.5rem}
.legal-updated{font-size:.9rem;color:var(--text-light);margin-bottom:2rem}

/* Thank You */
.thank-you{text-align:center;padding:6rem 0}
.thank-you-icon{width:100px;height:100px;background:var(--secondary);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 2rem}
.thank-you-icon svg{width:50px;height:50px;fill:var(--text)}
.thank-you h1{margin-bottom:1rem}
.thank-you p{color:var(--text-light);max-width:500px;margin:0 auto 2rem}

/* Footer */
footer{background:#1a2634;color:#b2bec3;padding:4rem 0 0}
.footer-grid{display:flex;flex-wrap:wrap;gap:3rem;margin-bottom:3rem}
.footer-col{flex:1 1 200px}
.footer-col h4{color:#fff;margin-bottom:1.5rem;font-size:1.1rem}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:.75rem}
.footer-col a{color:#b2bec3;transition:color .2s}
.footer-col a:hover{color:var(--secondary)}
.footer-logo{color:#fff;font-size:1.3rem;font-weight:700;margin-bottom:1rem;display:block}
.footer-desc{font-size:.9rem;line-height:1.7}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.1);padding:1.5rem 0;text-align:center;font-size:.9rem}

/* Cookie Banner */
.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:#1a2634;color:#fff;padding:1.5rem;z-index:9999;transform:translateY(100%);transition:transform .3s}
.cookie-banner.active{transform:translateY(0)}
.cookie-content{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1rem;max-width:1200px;margin:0 auto}
.cookie-text{flex:1 1 400px;font-size:.95rem}
.cookie-text a{color:var(--secondary)}
.cookie-buttons{display:flex;gap:.75rem;flex-wrap:wrap}
.cookie-btn{padding:.6rem 1.25rem;border-radius:var(--radius);font-size:.9rem;cursor:pointer;border:none;transition:all .2s}
.cookie-btn-accept{background:var(--secondary);color:var(--text)}
.cookie-btn-reject{background:transparent;border:1px solid #fff;color:#fff}
.cookie-btn-settings{background:transparent;color:var(--secondary);text-decoration:underline}

/* Cookie Modal */
.cookie-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.7);z-index:10000;display:none;align-items:center;justify-content:center;padding:1rem}
.cookie-modal.active{display:flex}
.cookie-modal-content{background:var(--bg);border-radius:var(--radius);max-width:500px;width:100%;max-height:90vh;overflow-y:auto}
.cookie-modal-header{padding:1.5rem;border-bottom:1px solid var(--border);display:flex;justify-content:space-between;align-items:center}
.cookie-modal-header h3{font-size:1.2rem}
.cookie-modal-close{background:none;border:none;font-size:1.5rem;cursor:pointer;color:var(--text-light)}
.cookie-modal-body{padding:1.5rem}
.cookie-option{display:flex;justify-content:space-between;align-items:center;padding:1rem 0;border-bottom:1px solid var(--border)}
.cookie-option:last-child{border-bottom:none}
.cookie-option-info h4{font-size:1rem;margin-bottom:.25rem}
.cookie-option-info p{font-size:.85rem;color:var(--text-light)}
.cookie-toggle{position:relative;width:50px;height:26px}
.cookie-toggle input{opacity:0;width:0;height:0}
.cookie-toggle-slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background:#ccc;border-radius:26px;transition:.3s}
.cookie-toggle-slider::before{content:'';position:absolute;height:20px;width:20px;left:3px;bottom:3px;background:#fff;border-radius:50%;transition:.3s}
.cookie-toggle input:checked+.cookie-toggle-slider{background:var(--primary)}
.cookie-toggle input:checked+.cookie-toggle-slider::before{transform:translateX(24px)}
.cookie-toggle input:disabled+.cookie-toggle-slider{opacity:.6;cursor:not-allowed}
.cookie-modal-footer{padding:1.5rem;border-top:1px solid var(--border);display:flex;justify-content:flex-end;gap:.75rem}

/* Highlight Panels */
.highlight-panel{background:linear-gradient(135deg,var(--secondary) 0%,#d4b33d 100%);border-radius:var(--radius);padding:3rem;color:var(--text)}
.highlight-panel h3{font-size:1.5rem;margin-bottom:1rem}

/* Comparison */
.comparison-table{width:100%;border-collapse:collapse;background:var(--bg);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.comparison-table th,.comparison-table td{padding:1rem 1.5rem;text-align:left;border-bottom:1px solid var(--border)}
.comparison-table th{background:var(--primary);color:#fff;font-weight:600}
.comparison-table tr:last-child td{border-bottom:none}
.comparison-table tr:hover td{background:var(--bg-alt)}

/* Industries */
.industries-grid{display:flex;flex-wrap:wrap;gap:1.5rem}
.industry-tag{background:var(--bg);padding:1rem 1.5rem;border-radius:var(--radius);box-shadow:var(--shadow);display:flex;align-items:center;gap:.75rem}
.industry-tag svg{width:24px;height:24px;fill:var(--primary)}

/* Insights */
.insight-cards{display:flex;flex-wrap:wrap;gap:2rem}
.insight-card{flex:1 1 300px;background:var(--bg);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.insight-card-header{background:var(--bg-alt);padding:1.5rem;border-left:4px solid var(--secondary)}
.insight-card-header h3{font-size:1.1rem}
.insight-card-body{padding:1.5rem}
.insight-card-body p{color:var(--text-light);font-size:.95rem}

/* Responsive */
@media(max-width:600px){
  section{padding:3rem 0}
  .hero{padding:3rem 0}
  .stats-grid{gap:2rem}
  .stat-number{font-size:2.5rem}
  .footer-grid{gap:2rem}
  .cookie-content{flex-direction:column;text-align:center}
  .cookie-buttons{justify-content:center}
}
