*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--primary:#2563eb;--primary-dark:#1e40af;--primary-light:#60a5fa;--secondary:#0f172a;--accent:#f59e0b;--text:#1e293b;--text-light:#64748b;--bg:#ffffff;--bg-alt:#f8fafc;--bg-dark:#e2e8f0;--success:#10b981;--border:#cbd5e1;--shadow:0 4px 6px -1px rgb(0 0 0 / 0.1);--shadow-lg:0 10px 25px -5px rgb(0 0 0 / 0.15);--radius:8px;--radius-lg:16px;--transition:0.3s ease}
html{scroll-behavior:smooth}
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,sans-serif;font-size:16px;line-height:1.6;color:var(--text);background:var(--bg)}
img,svg{max-width:100%;height:auto;display:block}
a{color:var(--primary);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--primary-dark)}
ul,ol{list-style:none}
h1,h2,h3,h4,h5,h6{line-height:1.2;color:var(--secondary);font-weight:700}
h1{font-size:clamp(2rem,5vw,3.5rem)}
h2{font-size:clamp(1.75rem,4vw,2.5rem)}
h3{font-size:clamp(1.25rem,3vw,1.75rem)}
p{margin-bottom:1rem}
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 1.5rem}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:0.875rem 2rem;font-size:1rem;font-weight:600;border-radius:var(--radius);cursor:pointer;transition:all var(--transition);border:none;gap:0.5rem}
.btn-primary{background:var(--primary);color:#fff}
.btn-primary:hover{background:var(--primary-dark);color:#fff;transform:translateY(-2px);box-shadow:var(--shadow-lg)}
.btn-secondary{background:transparent;color:var(--primary);border:2px solid var(--primary)}
.btn-secondary:hover{background:var(--primary);color:#fff}
.btn-accent{background:var(--accent);color:var(--secondary)}
.btn-accent:hover{background:#d97706;transform:translateY(-2px)}
.section{padding:5rem 0}
.section-alt{background:var(--bg-alt)}
.section-dark{background:var(--secondary);color:#fff}
.section-dark h2,.section-dark h3{color:#fff}
.section-header{text-align:center;max-width:700px;margin:0 auto 3rem}
.section-header p{color:var(--text-light);font-size:1.125rem;margin-top:1rem}
.text-center{text-align:center}
.text-accent{color:var(--accent)}
.text-primary{color:var(--primary)}

header{position:fixed;top:0;left:0;right:0;background:rgba(255,255,255,0.97);backdrop-filter:blur(10px);z-index:1000;box-shadow:0 1px 3px rgb(0 0 0 / 0.1)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.5rem;max-width:1200px;margin:0 auto}
.logo{display:flex;align-items:center;gap:0.75rem;font-size:1.25rem;font-weight:700;color:var(--secondary)}
.logo svg{width:40px;height:40px}
.nav-links{display:none;gap:2rem}
.nav-links a{color:var(--text);font-weight:500;position:relative}
.nav-links a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:2px;background:var(--primary);transition:width var(--transition)}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
.nav-links a:hover{color:var(--primary)}
.mobile-toggle{display:flex;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:0.5rem}
.mobile-toggle span{width:24px;height:2px;background:var(--secondary);transition:all var(--transition)}
.mobile-toggle.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.mobile-toggle.active span:nth-child(2){opacity:0}
.mobile-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
.mobile-menu{position:fixed;top:72px;left:0;right:0;bottom:0;background:var(--bg);display:none;flex-direction:column;padding:2rem;z-index:999}
.mobile-menu.active{display:flex}
.mobile-menu a{padding:1rem 0;font-size:1.25rem;color:var(--text);border-bottom:1px solid var(--border)}
.mobile-menu a:hover{color:var(--primary)}

@media(min-width:768px){
.nav-links{display:flex}
.mobile-toggle{display:none}
.mobile-menu{display:none !important}
}

.hero{padding:8rem 0 5rem;background:linear-gradient(135deg,var(--bg-alt) 0%,var(--bg) 100%);position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-50%;right:-20%;width:600px;height:600px;background:radial-gradient(circle,var(--primary-light) 0%,transparent 70%);opacity:0.15}
.hero-content{display:flex;flex-direction:column;gap:3rem;align-items:center;text-align:center}
.hero-text{max-width:650px}
.hero-text h1{margin-bottom:1.5rem}
.hero-text p{font-size:1.25rem;color:var(--text-light);margin-bottom:2rem}
.hero-stats{display:flex;flex-wrap:wrap;justify-content:center;gap:2rem;margin-top:2rem}
.hero-stat{text-align:center}
.hero-stat-number{font-size:2.5rem;font-weight:700;color:var(--primary)}
.hero-stat-label{font-size:0.875rem;color:var(--text-light);text-transform:uppercase;letter-spacing:0.05em}
.hero-visual{width:100%;max-width:500px}
.hero-visual svg{width:100%;height:auto}

@media(min-width:992px){
.hero-content{flex-direction:row;text-align:left}
.hero-text{flex:1}
.hero-visual{flex:1}
.hero-stats{justify-content:flex-start}
}

.features-grid{display:flex;flex-wrap:wrap;gap:2rem}
.feature-card{flex:1 1 280px;background:var(--bg);padding:2rem;border-radius:var(--radius-lg);box-shadow:var(--shadow);transition:transform var(--transition),box-shadow var(--transition)}
.feature-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg)}
.feature-icon{width:60px;height:60px;background:var(--primary-light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem}
.feature-icon svg{width:32px;height:32px;color:var(--primary-dark)}
.feature-card h3{margin-bottom:0.75rem}
.feature-card p{color:var(--text-light);font-size:0.95rem;margin-bottom:0}

.services-list{display:flex;flex-direction:column;gap:2rem}
.service-item{display:flex;flex-direction:column;gap:1.5rem;background:var(--bg);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow)}
.service-item:nth-child(even){flex-direction:column}
.service-visual{background:linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 100%);padding:3rem;display:flex;align-items:center;justify-content:center;min-height:200px}
.service-visual svg{width:120px;height:120px;color:#fff}
.service-content{padding:2rem;display:flex;flex-direction:column;justify-content:center}
.service-content h3{margin-bottom:1rem}
.service-content p{color:var(--text-light);margin-bottom:1.5rem}
.service-price{font-size:1.5rem;font-weight:700;color:var(--primary)}
.service-price span{font-size:0.875rem;color:var(--text-light);font-weight:400}

@media(min-width:768px){
.service-item{flex-direction:row}
.service-item:nth-child(even){flex-direction:row-reverse}
.service-visual{flex:0 0 40%}
.service-content{flex:1}
}

.process-steps{display:flex;flex-direction:column;gap:0;position:relative}
.process-steps::before{content:'';position:absolute;left:24px;top:40px;bottom:40px;width:2px;background:var(--border)}
.process-step{display:flex;gap:2rem;padding:2rem 0;position:relative}
.process-number{width:48px;height:48px;background:var(--primary);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:1.25rem;flex-shrink:0;position:relative;z-index:1}
.process-content h3{margin-bottom:0.5rem}
.process-content p{color:var(--text-light);margin-bottom:0}

@media(min-width:768px){
.process-steps{flex-direction:row;flex-wrap:wrap}
.process-steps::before{display:none}
.process-step{flex:1 1 250px;flex-direction:column;align-items:center;text-align:center;gap:1rem}
}

.testimonials-slider{display:flex;flex-direction:column;gap:2rem}
.testimonial{background:var(--bg);padding:2.5rem;border-radius:var(--radius-lg);box-shadow:var(--shadow);position:relative}
.testimonial::before{content:'"';position:absolute;top:1rem;left:1.5rem;font-size:4rem;color:var(--primary-light);font-family:Georgia,serif;line-height:1}
.testimonial-text{font-size:1.125rem;font-style:italic;color:var(--text);margin-bottom:1.5rem;padding-top:2rem}
.testimonial-author{display:flex;align-items:center;gap:1rem}
.testimonial-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.25rem}
.testimonial-info h4{margin-bottom:0.25rem;font-size:1rem}
.testimonial-info span{color:var(--text-light);font-size:0.875rem}

@media(min-width:768px){
.testimonials-slider{flex-direction:row}
.testimonial{flex:1}
}

.stats-bar{display:flex;flex-wrap:wrap;justify-content:center;gap:3rem;padding:3rem 0}
.stat-item{text-align:center;flex:1 1 150px}
.stat-number{font-size:3rem;font-weight:700;color:var(--accent);margin-bottom:0.5rem}
.stat-label{color:rgba(255,255,255,0.8);font-size:0.95rem}

.values-grid{display:flex;flex-wrap:wrap;gap:2rem}
.value-card{flex:1 1 250px;text-align:center;padding:2rem}
.value-icon{width:80px;height:80px;margin:0 auto 1.5rem;background:var(--bg-alt);border-radius:50%;display:flex;align-items:center;justify-content:center}
.value-icon svg{width:40px;height:40px;color:var(--primary)}
.value-card h3{margin-bottom:0.75rem}
.value-card p{color:var(--text-light);font-size:0.95rem;margin-bottom:0}

.faq-list{max-width:800px;margin:0 auto}
.faq-item{border-bottom:1px solid var(--border);overflow:hidden}
.faq-question{width:100%;padding:1.5rem 3rem 1.5rem 0;background:none;border:none;text-align:left;font-size:1.125rem;font-weight:600;color:var(--secondary);cursor:pointer;position:relative;display:flex;align-items:center}
.faq-question::after{content:'+';position:absolute;right:0;font-size:1.5rem;color:var(--primary);transition:transform var(--transition)}
.faq-item.active .faq-question::after{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.4s ease,padding 0.4s ease}
.faq-item.active .faq-answer{max-height:500px}
.faq-answer p{padding:0 0 1.5rem;color:var(--text-light);margin-bottom:0}

.cta-section{text-align:center;padding:5rem 2rem;background:linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 100%);border-radius:var(--radius-lg);margin:3rem 0}
.cta-section h2{color:#fff;margin-bottom:1rem}
.cta-section p{color:rgba(255,255,255,0.9);font-size:1.125rem;margin-bottom:2rem;max-width:600px;margin-left:auto;margin-right:auto}

.about-hero{padding:10rem 0 5rem;background:var(--bg-alt)}
.about-grid{display:flex;flex-direction:column;gap:3rem}
.about-content h1{margin-bottom:1.5rem}
.about-content p{color:var(--text-light);font-size:1.125rem}
.about-visual{display:flex;align-items:center;justify-content:center}
.about-visual svg{width:100%;max-width:400px;height:auto}

@media(min-width:768px){
.about-grid{flex-direction:row;align-items:center}
.about-content,.about-visual{flex:1}
}

.timeline{position:relative;padding-left:2rem}
.timeline::before{content:'';position:absolute;left:0;top:0;bottom:0;width:2px;background:var(--primary)}
.timeline-item{position:relative;padding:0 0 3rem 2rem}
.timeline-item::before{content:'';position:absolute;left:-2rem;top:0.25rem;width:12px;height:12px;background:var(--primary);border-radius:50%;border:3px solid var(--bg)}
.timeline-year{font-weight:700;color:var(--primary);margin-bottom:0.5rem}
.timeline-item h3{margin-bottom:0.5rem}
.timeline-item p{color:var(--text-light);margin-bottom:0}

.team-grid{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center}
.team-card{flex:0 0 280px;text-align:center;background:var(--bg);padding:2rem;border-radius:var(--radius-lg);box-shadow:var(--shadow)}
.team-avatar{width:120px;height:120px;margin:0 auto 1.5rem;background:linear-gradient(135deg,var(--primary) 0%,var(--primary-light) 100%);border-radius:50%;display:flex;align-items:center;justify-content:center}
.team-avatar svg{width:60px;height:60px;color:#fff}
.team-card h3{margin-bottom:0.25rem}
.team-card span{color:var(--primary);font-size:0.95rem}
.team-card p{color:var(--text-light);font-size:0.9rem;margin-top:1rem;margin-bottom:0}

.contact-section{display:flex;flex-direction:column;gap:3rem}
.contact-info{flex:1}
.contact-info h2{margin-bottom:2rem}
.contact-block{margin-bottom:2rem;padding-bottom:2rem;border-bottom:1px solid var(--border)}
.contact-block:last-child{border-bottom:none}
.contact-block h3{font-size:1rem;color:var(--primary);margin-bottom:0.75rem;text-transform:uppercase;letter-spacing:0.05em}
.contact-block p{color:var(--text);margin-bottom:0.25rem}
.contact-block a{color:var(--text)}
.contact-map{flex:1;background:var(--bg-alt);border-radius:var(--radius-lg);min-height:400px;display:flex;align-items:center;justify-content:center}
.contact-map svg{width:200px;height:200px;color:var(--primary-light)}

@media(min-width:768px){
.contact-section{flex-direction:row}
}

.page-hero{padding:10rem 0 4rem;background:var(--bg-alt);text-align:center}
.page-hero h1{margin-bottom:1rem}
.page-hero p{color:var(--text-light);font-size:1.125rem;max-width:600px;margin:0 auto}

.legal-content{max-width:800px;margin:0 auto}
.legal-content h2{font-size:1.5rem;margin:2.5rem 0 1rem}
.legal-content h3{font-size:1.25rem;margin:2rem 0 0.75rem}
.legal-content p{color:var(--text-light)}
.legal-content ul{margin:1rem 0;padding-left:1.5rem}
.legal-content li{color:var(--text-light);margin-bottom:0.5rem;position:relative;padding-left:1rem}
.legal-content li::before{content:'•';position:absolute;left:0;color:var(--primary)}

.thank-you-content{text-align:center;padding:10rem 0}
.thank-you-icon{width:100px;height:100px;background:var(--success);border-radius:50%;margin:0 auto 2rem;display:flex;align-items:center;justify-content:center}
.thank-you-icon svg{width:50px;height:50px;color:#fff}
.thank-you-content h1{margin-bottom:1rem}
.thank-you-content p{color:var(--text-light);font-size:1.125rem;margin-bottom:2rem}

footer{background:var(--secondary);color:#fff;padding:4rem 0 2rem}
.footer-grid{display:flex;flex-wrap:wrap;gap:3rem;margin-bottom:3rem}
.footer-brand{flex:1 1 300px}
.footer-brand .logo{color:#fff;margin-bottom:1rem}
.footer-brand p{color:rgba(255,255,255,0.7);font-size:0.95rem}
.footer-links{flex:1 1 150px}
.footer-links h4{color:#fff;margin-bottom:1.5rem;font-size:1rem}
.footer-links a{display:block;color:rgba(255,255,255,0.7);padding:0.5rem 0;transition:color var(--transition)}
.footer-links a:hover{color:#fff}
.footer-bottom{padding-top:2rem;border-top:1px solid rgba(255,255,255,0.1);display:flex;flex-wrap:wrap;justify-content:space-between;gap:1rem;font-size:0.875rem;color:rgba(255,255,255,0.6)}
.footer-legal{display:flex;flex-wrap:wrap;gap:1.5rem}
.footer-legal a{color:rgba(255,255,255,0.6)}
.footer-legal a:hover{color:#fff}

.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:var(--secondary);color:#fff;padding:1.5rem;z-index:9999;transform:translateY(100%);transition:transform 0.4s ease;display:flex;flex-direction:column;gap:1rem}
.cookie-banner.active{transform:translateY(0)}
.cookie-content{display:flex;flex-direction:column;gap:1rem;max-width:1200px;margin:0 auto;width:100%}
.cookie-content p{margin:0;font-size:0.95rem;color:rgba(255,255,255,0.9)}
.cookie-content a{color:var(--primary-light)}
.cookie-buttons{display:flex;flex-wrap:wrap;gap:0.75rem}
.cookie-btn{padding:0.75rem 1.5rem;border-radius:var(--radius);font-weight:600;cursor:pointer;border:none;font-size:0.875rem;transition:all var(--transition)}
.cookie-btn-accept{background:var(--primary);color:#fff}
.cookie-btn-accept:hover{background:var(--primary-light)}
.cookie-btn-reject{background:transparent;color:#fff;border:1px solid rgba(255,255,255,0.3)}
.cookie-btn-reject:hover{border-color:#fff}
.cookie-btn-settings{background:transparent;color:rgba(255,255,255,0.7);text-decoration:underline}
.cookie-btn-settings:hover{color:#fff}

@media(min-width:768px){
.cookie-content{flex-direction:row;align-items:center;justify-content:space-between}
.cookie-content p{flex:1}
}

.cookie-modal{position:fixed;inset:0;background:rgba(0,0,0,0.6);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-lg);max-width:500px;width:100%;max-height:90vh;overflow-y:auto}
.cookie-modal-header{display:flex;justify-content:space-between;align-items:center;padding:1.5rem;border-bottom:1px solid var(--border)}
.cookie-modal-header h3{margin:0}
.cookie-modal-close{background:none;border:none;font-size:1.5rem;cursor:pointer;color:var(--text-light);padding:0;line-height:1}
.cookie-modal-close:hover{color:var(--text)}
.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:0.25rem}
.cookie-option-info p{font-size:0.875rem;color:var(--text-light);margin:0}
.cookie-toggle{position:relative;width:50px;height:26px}
.cookie-toggle input{opacity:0;width:0;height:0}
.cookie-toggle-slider{position:absolute;inset:0;background:var(--border);border-radius:26px;cursor:pointer;transition:background var(--transition)}
.cookie-toggle-slider::before{content:'';position:absolute;width:20px;height:20px;background:#fff;border-radius:50%;top:3px;left:3px;transition:transform var(--transition)}
.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:0.6;cursor:not-allowed}
.cookie-modal-footer{padding:1.5rem;border-top:1px solid var(--border);display:flex;justify-content:flex-end;gap:1rem}

.industries-grid{display:flex;flex-wrap:wrap;gap:1.5rem}
.industry-item{flex:1 1 calc(50% - 0.75rem);background:var(--bg);padding:1.5rem;border-radius:var(--radius);border-left:4px solid var(--primary);box-shadow:var(--shadow)}
.industry-item h4{margin-bottom:0.5rem}
.industry-item p{color:var(--text-light);font-size:0.9rem;margin:0}

@media(min-width:768px){
.industry-item{flex:1 1 calc(33.333% - 1rem)}
}

.comparison-table{width:100%;border-collapse:collapse;background:var(--bg);border-radius:var(--radius-lg);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:nth-child(even){background:var(--bg-alt)}
.check-icon{color:var(--success);font-weight:bold}

.benefits-list{display:flex;flex-direction:column;gap:1rem}
.benefit-item{display:flex;gap:1rem;align-items:flex-start;padding:1.5rem;background:var(--bg);border-radius:var(--radius);box-shadow:var(--shadow)}
.benefit-icon{width:48px;height:48px;background:var(--success);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.benefit-icon svg{width:24px;height:24px;color:#fff}
.benefit-content h4{margin-bottom:0.5rem}
.benefit-content p{color:var(--text-light);margin:0;font-size:0.95rem}

.quote-block{background:linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 100%);padding:4rem 2rem;border-radius:var(--radius-lg);text-align:center;color:#fff;margin:3rem 0}
.quote-block blockquote{font-size:1.5rem;font-style:italic;max-width:800px;margin:0 auto 1.5rem;line-height:1.6}
.quote-block cite{font-style:normal;opacity:0.9}

.achievements-grid{display:flex;flex-wrap:wrap;gap:2rem}
.achievement-card{flex:1 1 250px;background:var(--bg);padding:2rem;border-radius:var(--radius-lg);text-align:center;box-shadow:var(--shadow)}
.achievement-icon{width:70px;height:70px;margin:0 auto 1rem;background:var(--accent);border-radius:50%;display:flex;align-items:center;justify-content:center}
.achievement-icon svg{width:35px;height:35px;color:#fff}
.achievement-card h3{margin-bottom:0.5rem;font-size:1.125rem}
.achievement-card p{color:var(--text-light);font-size:0.9rem;margin:0}

.insights-grid{display:flex;flex-wrap:wrap;gap:2rem}
.insight-card{flex:1 1 300px;background:var(--bg);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow)}
.insight-header{background:var(--primary);padding:1.5rem;color:#fff}
.insight-header span{font-size:0.875rem;opacity:0.8;text-transform:uppercase}
.insight-header h3{margin-top:0.5rem;color:#fff;font-size:1.25rem}
.insight-body{padding:1.5rem}
.insight-body p{color:var(--text-light);margin:0}

.trust-badges{display:flex;flex-wrap:wrap;justify-content:center;gap:3rem;padding:2rem 0}
.trust-badge{display:flex;flex-direction:column;align-items:center;gap:1rem}
.trust-badge svg{width:60px;height:60px;color:var(--primary)}
.trust-badge span{font-size:0.875rem;color:var(--text-light);text-align:center}

.service-cards{display:flex;flex-wrap:wrap;gap:2rem}
.service-card{flex:1 1 300px;background:var(--bg);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);transition:transform var(--transition)}
.service-card:hover{transform:translateY(-5px)}
.service-card-header{background:linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 100%);padding:2rem;text-align:center}
.service-card-header svg{width:60px;height:60px;color:#fff;margin-bottom:1rem}
.service-card-header h3{color:#fff;margin:0}
.service-card-body{padding:1.5rem}
.service-card-body p{color:var(--text-light);margin-bottom:1rem}
.service-card-price{font-size:1.75rem;font-weight:700;color:var(--primary);text-align:center;padding:1rem;background:var(--bg-alt);margin:-1.5rem -1.5rem 1.5rem;border-bottom:1px solid var(--border)}
.service-card-price span{font-size:0.875rem;font-weight:400;color:var(--text-light)}
.service-card-features{list-style:none;padding:0;margin:0}
.service-card-features li{padding:0.5rem 0;padding-left:1.5rem;position:relative;color:var(--text-light);font-size:0.95rem}
.service-card-features li::before{content:'✓';position:absolute;left:0;color:var(--success);font-weight:bold}

.philosophy-block{display:flex;flex-direction:column;gap:3rem;align-items:center}
.philosophy-text{max-width:600px}
.philosophy-text h2{margin-bottom:1.5rem}
.philosophy-text p{color:var(--text-light);font-size:1.125rem}
.philosophy-visual svg{width:300px;height:300px}

@media(min-width:768px){
.philosophy-block{flex-direction:row}
}

.skip-link{position:absolute;top:-40px;left:0;background:var(--primary);color:#fff;padding:0.5rem 1rem;z-index:10001;transition:top 0.3s}
.skip-link:focus{top:0}

@media(prefers-reduced-motion:reduce){
*{animation:none !important;transition-duration:0.01ms !important}
}