*{margin:0;padding:0;box-sizing:border-box}
:root{--primary:#0066cc;--primary-dark:#0052a3;--primary-light:#00a8ff;--accent:#00d4ff;--text-dark:#1a1a1a;--text-gray:#666;--text-light:#999;--bg-light:#f8f9fa;--bg-white:#fff;--border-color:#e5e7eb;--shadow-sm:0 1px 2px rgba(0,0,0,.05);--shadow-md:0 4px 6px rgba(0,0,0,.1);--shadow-lg:0 10px 15px rgba(0,0,0,.1);--shadow-xl:0 20px 25px rgba(0,0,0,.15);--radius-sm:.45rem;--radius-md:.65rem;--radius-lg:.75rem;--radius-xl:.95rem;--transition:all .3s ease}
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;line-height:1.6;color:var(--text-dark);background:var(--bg-white)}
.container{width:100%;max-width:1280px;margin:0 auto;padding:0 1rem}
@media(min-width:640px){.container{padding:0 1.5rem}}
@media(min-width:1024px){.container{padding:0 2rem}}
.navbar{position:fixed;top:0;left:0;right:0;background:rgba(255,255,255,.95);backdrop-filter:blur(10px);box-shadow:var(--shadow-md);z-index:1000}
.nav-container{display:flex;align-items:center;justify-content:space-between;padding-top:1rem;padding-bottom:1rem}
.logo{display:flex;align-items:center;gap:.5rem;text-decoration:none;font-weight:700;font-size:1.25rem;color:var(--primary)}
.logo-icon{width:2rem;height:2rem;background:linear-gradient(135deg,#0066cc,#00a8ff);border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700}
.desktop-menu{display:none;align-items:center;gap:2rem}
@media(min-width:1024px){.desktop-menu{display:flex}}
.menu-item{position:relative}
.menu-item>a{text-decoration:none;color:var(--text-dark);font-weight:500;transition:color .2s;display:flex;align-items:center;gap:.25rem}
.menu-item>a:hover{color:var(--primary)}
.dropdown-content{position:absolute;left:0;top:100%;margin-top:.5rem;width:14rem;background:var(--bg-white);box-shadow:var(--shadow-lg);border-radius:var(--radius-md);opacity:0;visibility:hidden;transform:translateY(-10px);transition:all .2s ease}
.menu-item:hover .dropdown-content{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown-content a{display:block;padding:.75rem 1rem;color:var(--text-gray);text-decoration:none;transition:all .2s;border-radius:var(--radius-md)}
.dropdown-content a:first-child{border-top-left-radius:var(--radius-md);border-top-right-radius:var(--radius-md)}
.dropdown-content a:last-child{border-bottom-left-radius:var(--radius-md);border-bottom-right-radius:var(--radius-md)}
.dropdown-content a:hover{background:#f3f4f6;color:var(--primary)}
.mobile-menu-btn{display:flex;background:none;border:none;padding:.5rem;cursor:pointer;color:var(--text-dark)}
@media(min-width:1024px){.mobile-menu-btn{display:none}}
.mobile-menu{display:none;background:var(--bg-white);border-top:1px solid var(--border-color)}
.mobile-menu.active{display:block}
@media(min-width:1024px){.mobile-menu{display:none!important}}
.mobile-menu-items{padding:1rem}
.mobile-menu-item{display:flex;align-items:center;justify-content:space-between}
.mobile-menu-link{display:block;padding:.75rem 0;color:var(--text-dark);text-decoration:none;font-weight:500;flex:1}
.mobile-submenu-btn{background:none;border:none;padding:.5rem;cursor:pointer;color:var(--text-gray);transition:transform .2s}
.mobile-submenu-btn.active{transform:rotate(180deg)}
.mobile-submenu{display:none;background:var(--bg-light);border-left:3px solid var(--primary);margin-left:1rem;padding:.5rem 0}
.mobile-submenu.active{display:block}
.mobile-submenu a{display:block;padding:.5rem 1rem;color:var(--text-gray);text-decoration:none;font-size:.875rem}
.mobile-submenu a:hover{color:var(--primary)}
.hero{min-height:100vh;display:flex;flex-direction:column;position:relative;overflow:hidden;padding-bottom:80px}
@media(min-width:768px){.hero{padding-bottom:0}}
.hero-bg{position:absolute;inset:0;background-size:cover;background-position:center}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(15,23,42,.9),rgba(30,58,138,.75),transparent);background:linear-gradient(to bottom,rgba(15,23,42,.6),transparent,rgba(15,23,42,.6))}
.hero-wrapper{display:flex;flex-direction:column;flex:1;justify-content:center;padding-top:6rem}
@media(min-width:768px){.hero-wrapper{flex-direction:row;align-items:center;padding-top:7rem}}
.hero-content{position:relative;z-index:10;max-width:100%;margin-bottom:2rem}
@media(min-width:768px){.hero-content{max-width:50%;margin-bottom:0}}
@media(min-width:1024px){.hero-content{max-width:45%}}
.hero-badge{display:inline-flex;align-items:center;gap:.5rem;padding:.375rem .75rem;background:rgba(59,130,246,.2);border:1px solid rgba(59,130,246,.3);border-radius:9999px;color:#93c5fd;font-size:.875rem;margin-bottom:1.5rem}
.hero-badge-dot{width:.5rem;height:.5rem;background:#22d3ee;border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.5}}
.hero h1{font-size:2.5rem;font-weight:900;line-height:1.1;margin-bottom:1.5rem;color:#fff}
@media(min-width:768px){.hero h1{font-size:3.5rem}}
@media(min-width:1024px){.hero h1{font-size:4rem}}
.hero h1 span{background:linear-gradient(to right,#22d3ee,#93c5fd);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero p{font-size:1.125rem;color:#bfdbfe;margin-bottom:2rem;line-height:1.8;max-width:36rem}
.hero-buttons{display:flex;gap:1rem;flex-wrap:wrap}
.hero-image{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-xl);position:relative;z-index:10;display:none;width:100%;margin-top:2rem}
@media(min-width:768px){.hero-image{display:block;width:45%;margin-top:0;margin-left:auto;max-width:600px}}
@media(min-width:1024px){.hero-image{width:50%;max-width:700px}}
.hero-image img{width:100%;height:auto;display:block}
.stats-bar{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(to right,rgba(30,58,138,.9),rgba(30,64,175,.9));backdrop-filter:blur(10px);border-top:1px solid rgba(255,255,255,.1);z-index:20}
.stats-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;padding:1.5rem 0}
@media(min-width:768px){.stats-grid{grid-template-columns:repeat(4,1fr);padding:2rem 0}}
.stats-bar .container{position:relative}
@media(min-width:768px){.stats-bar{position:relative;background:linear-gradient(to right,rgba(30,58,138,.95),rgba(30,64,175,.95))}}
.stat-item{text-align:center}
.stat-value{font-size:1.875rem;font-weight:900;color:#22d3ee}
.stat-label{font-size:.875rem;color:#93c5fd;margin-top:.25rem}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.75rem 1.5rem;font-size:1rem;font-weight:600;text-decoration:none;border-radius:var(--radius-md);transition:var(--transition);cursor:pointer;border:none}
.btn-primary{background:linear-gradient(to right,#3b82f6,#06b6d4);color:#fff}
.btn-primary:hover{box-shadow:0 10px 15px -3px rgba(59,130,246,.4);transform:translateY(-2px)}
.btn-outline{background:rgba(255,255,255,.1);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.3);color:#fff}
.btn-outline:hover{background:rgba(255,255,255,.2)}
.btn-white{background:#fff;color:var(--primary)}
.btn-white:hover{box-shadow:var(--shadow-xl)}
.products{padding:6rem 0;background:var(--bg-light)}
.section-title{font-size:2rem;font-weight:900;text-align:center;margin-bottom:.75rem;color:var(--text-dark)}
.section-subtitle{text-align:center;color:var(--text-gray);margin-bottom:4rem}
@media(min-width:768px){.section-title{font-size:2.5rem}}
.products-grid{display:grid;grid-template-columns:1fr;gap:2rem}
@media(min-width:768px){.products-grid{grid-template-columns:1fr 1fr}}
.product-card{display:block;text-decoration:none;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md);transition:var(--transition);border:1px solid var(--border-color)}
.product-card:hover{box-shadow:var(--shadow-xl);transform:translateY(-4px);border-color:#bfdbfe}
.product-image{overflow:hidden}
.product-image img{width:100%;height:14rem;object-fit:cover;transition:transform .5s}
.product-card:hover .product-image img{transform:scale(1.05)}
.product-content{padding:1.5rem;background:linear-gradient(135deg,#eff6ff,var(--bg-white))}
.product-content h3{font-size:1.25rem;font-weight:700;color:var(--text-dark);margin-bottom:.5rem}
.product-content h3:hover{color:var(--primary)}
.product-content p{color:var(--text-gray);font-size:.875rem;margin-bottom:1rem}
.product-feature{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:var(--text-gray);margin-bottom:.375rem}
.product-feature svg{width:1rem;height:1rem;color:var(--primary);flex-shrink:0}
.learn-more{display:inline-flex;align-items:center;gap:.25rem;color:var(--primary);font-weight:600;font-size:.875rem;transition:gap .2s}
.product-card:hover .learn-more{gap:.5rem}
.advantages{padding:6rem 0;background:var(--bg-white)}
.advantages-grid{display:grid;grid-template-columns:1fr;gap:2rem}
@media(min-width:768px){.advantages-grid{grid-template-columns:repeat(3,1fr)}}
.advantage-card{padding:2rem;border-radius:var(--radius-lg);background:var(--bg-light);border:1px solid var(--border-color);transition:var(--transition)}
.advantage-card:hover{border-color:#bfdbfe;box-shadow:var(--shadow-lg)}
.advantage-icon{width:3rem;height:3rem;border-radius:var(--radius-xl);display:flex;align-items:center;justify-content:center;font-size:1.5rem;margin-bottom:1.25rem;transition:transform .3s}
.advantage-card:hover .advantage-icon{transform:scale(1.1)}
.advantage-icon.yellow{background:linear-gradient(135deg,#fbbf24,#fb923c)}
.advantage-icon.blue{background:linear-gradient(135deg,#3b82f6,#22d3ee)}
.advantage-icon.green{background:linear-gradient(135deg,#34d399,#2dd4bf)}
.advantage-card h3{font-size:1.25rem;font-weight:700;color:var(--text-dark);margin-bottom:.75rem}
.advantage-card p{color:var(--text-gray)}
.cases-section{padding:6rem 0;background:linear-gradient(to bottom right,#1e3a8a,#1e40af)}
.cases-container{display:grid;grid-template-columns:1fr;gap:3rem;align-items:center}
@media(min-width:768px){.cases-container{grid-template-columns:1fr 1fr}}
.cases-tag{display:inline-flex;align-items:center;gap:.5rem;padding:.375rem .75rem;background:rgba(59,130,246,.2);border:1px solid rgba(59,130,246,.3);border-radius:9999px;color:#93c5fd;font-size:.875rem;margin-bottom:1.5rem}
.cases-content h2{font-size:2rem;font-weight:900;color:#fff;margin-bottom:1.5rem}
@media(min-width:768px){.cases-content h2{font-size:2.5rem}}
.cases-content h2 span{color:#22d3ee}
.cases-content>p{color:#93c5fd;margin-bottom:2rem;line-height:1.8}
.cases-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-bottom:2rem}
.case-item{display:flex;align-items:flex-start;gap:.75rem;padding:1rem;background:rgba(255,255,255,.05);border-radius:var(--radius-md);border:1px solid rgba(255,255,255,.1)}
.case-item-icon{font-size:1.5rem}
.case-item h4{font-size:.875rem;font-weight:600;color:#fff}
.case-item p{font-size:.75rem;color:#60a5fa;margin-top:.125rem}
.cases-reviews{position:relative}
.review-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
.review-card{background:rgba(255,255,255,.1);backdrop-filter:blur(10px);border-radius:var(--radius-lg);padding:1.25rem;border:1px solid rgba(255,255,255,.1)}
.review-stars{display:flex;gap:.25rem;margin-bottom:.75rem}
.review-stars svg{width:1rem;height:1rem;color:#fbbf24;fill:#fbbf24}
.review-card p{font-size:.875rem;color:#93c5fd}
.review-author{margin-top:.75rem;font-size:.75rem;color:#60a5fa}
.review-highlight{background:linear-gradient(135deg,rgba(59,130,246,.2),rgba(6,182,212,.2));border-radius:var(--radius-lg);padding:1.25rem;border:1px solid rgba(59,130,246,.2)}
.review-highlight .stat{font-size:2.5rem;font-weight:900;color:#22d3ee}
.review-highlight .stat-label{font-size:.875rem;color:#60a5fa}
.cta-section{padding:5rem 0;background:var(--bg-white);text-align:center}
.cta-section h2{font-size:2rem;font-weight:900;color:var(--text-dark);margin-bottom:1rem}
@media(min-width:768px){.cta-section h2{font-size:2.5rem}}
.cta-section p{color:var(--text-gray);margin-bottom:2rem;font-size:1.125rem}
.page-hero{position:relative;padding:7rem 0 4rem;background:linear-gradient(to bottom right,#1e3a8a,#1e40af,#4338ca);overflow:hidden}
.page-hero-bg{position:absolute;inset:0;opacity:.2}
.page-hero-bg img{width:100%;height:100%;object-fit:cover}
.page-hero-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(15,23,42,.9),rgba(30,58,138,.7))}
.page-hero-content{position:relative;z-index:10}
.breadcrumb{padding:1rem 0;background:rgba(255,255,255,.05);border-bottom:1px solid rgba(255,255,255,.1)}
.breadcrumb a{color:#60a5fa;text-decoration:none;font-size:.875rem;transition:color .2s}
.breadcrumb a:hover{color:#fff}
.breadcrumb span{margin:0 .5rem;color:#93c5fd}
.breadcrumb-sep{color:#60a5fa}
.features-section{padding:5rem 0;background:var(--bg-gray-50)}
.features-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:768px){.features-grid{grid-template-columns:repeat(3,1fr)}}
.feature-card{background:#fff;border-radius:var(--radius-lg);padding:1.5rem;border:1px solid var(--border-color);transition:var(--transition)}
.feature-card:hover{border-color:#bfdbfe;box-shadow:var(--shadow-xl);transform:translateY(-4px)}
.feature-card-icon{width:3rem;height:3rem;border-radius:var(--radius-xl);display:flex;align-items:center;justify-content:center;font-size:1.5rem;margin-bottom:1rem;transition:transform .3s}
.feature-card:hover .feature-card-icon{transform:scale(1.1)}
.feature-card h3{font-size:1.125rem;font-weight:700;color:var(--text-dark);margin-bottom:.5rem}
.feature-card:hover h3{color:var(--primary)}
.feature-card p{color:var(--text-gray);font-size:.875rem;margin-bottom:1rem}
.feature-list{margin-bottom:1.25rem}
.feature-list li{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:var(--text-gray);margin-bottom:.375rem}
.feature-list svg{width:.875rem;height:.875rem;color:var(--primary);flex-shrink:0}
.scenarios-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:768px){.scenarios-grid{grid-template-columns:repeat(2,1fr)}}
.scenario-card{padding:1.5rem;background:var(--bg-light);border-radius:var(--radius-lg);border:1px solid var(--border-color);transition:var(--transition)}
.scenario-card:hover{border-color:#bfdbfe;box-shadow:var(--shadow-lg)}
.scenario-card-header{display:flex;align-items:flex-start;gap:1rem;margin-bottom:1rem}
.scenario-card-icon{font-size:1.875rem}
.scenario-card h3{font-size:1.125rem;font-weight:700;color:var(--text-dark)}
.scenario-card p{color:var(--text-gray);font-size:.875rem;margin-bottom:1rem}
.scenario-list{margin-bottom:0}
.scenario-list li{font-size:.875rem;color:var(--text-gray)}
.metrics-bar{padding:3rem 0;background:var(--bg-white);border-bottom:1px solid var(--border-color)}
.metrics-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
@media(min-width:768px){.metrics-grid{grid-template-columns:repeat(4,1fr)}}
.metric-card{text-align:center;padding:1.5rem;background:var(--bg-light);border-radius:var(--radius-lg)}
.metric-value{font-size:1.875rem;font-weight:900;color:var(--primary)}
.metric-label{font-size:.875rem;color:var(--text-gray);margin-top:.25rem}
.progress-card{background:linear-gradient(135deg,#1e3a8a,#312e81);border-radius:var(--radius-lg);padding:2rem;color:#fff}
.progress-card h3{font-size:1.25rem;font-weight:700;margin-bottom:1.5rem}
.progress-item{margin-bottom:1rem}
.progress-header{display:flex;justify-content:space-between;margin-bottom:.25rem}
.progress-label{font-size:.875rem;color:#93c5fd}
.progress-value{font-size:.875rem;color:#22d3ee;font-weight:600}
.progress-bar{height:.5rem;background:rgba(255,255,255,.1);border-radius:9999px;overflow:hidden}
.progress-fill{height:100%;background:linear-gradient(to right,#60a5fa,#22d3ee);border-radius:9999px}
.cta-blue{padding:4rem 0;background:linear-gradient(to right,#2563eb,#06b6d4)}
.cta-blue h2{font-size:2rem;font-weight:900;color:#fff;text-align:center;margin-bottom:1rem}
.cta-blue p{color:#bfdbfe;text-align:center;margin-bottom:2rem}
.steps-grid{display:grid;grid-template-columns:1fr;gap:1rem}
@media(min-width:768px){.steps-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.steps-grid{grid-template-columns:repeat(4,1fr)}}
.step-item{display:flex;align-items:flex-start;gap:1rem}
.step-num{width:2rem;height:2rem;border-radius:50%;background:rgba(99,102,241,.3);border:1px solid rgba(99,102,241,.5);display:flex;align-items:center;justify-content:center;color:#a5b4fc;font-size:.875rem;font-weight:700;flex-shrink:0}
.step-content{flex:1}
.step-title{font-size:.875rem;font-weight:600;color:#fff}
.step-desc{font-size:.75rem;color:#a5b4fc;margin-top:.125rem}
.int-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:768px){.int-grid{grid-template-columns:repeat(3,1fr)}}
.int-card{padding:1.5rem;background:var(--bg-light);border-radius:var(--radius-lg);border:1px solid var(--border-color);text-align:center;transition:var(--transition)}
.int-card:hover{border-color:#bfdbfe;box-shadow:var(--shadow-lg)}
.int-icon{font-size:1.875rem;margin-bottom:.75rem}
.int-card h3{font-size:1rem;font-weight:700;color:var(--text-dark);margin-bottom:.5rem}
.int-card p{font-size:.875rem;color:var(--text-gray)}
.defect-grid{display:grid;grid-template-columns:1fr;gap:1rem}
@media(min-width:768px){.defect-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.defect-grid{grid-template-columns:repeat(3,1fr)}
}.defect-card{background:#fff;border-radius:var(--radius-lg);padding:1.25rem;border:1px solid var(--border-color);transition:var(--transition)}
.defect-card:hover{border-color:#fed7aa;box-shadow:var(--shadow-lg)}
.defect-card h3{font-size:.875rem;font-weight:700;color:var(--text-dark);margin-bottom:.25rem}
.defect-card p{font-size:.875rem;color:var(--text-gray)}
.cost-card{background:linear-gradient(135deg,#9a3412,#b91c1c);border-radius:var(--radius-lg);padding:2rem;color:#fff}
.cost-card h3{font-size:1.25rem;font-weight:700;margin-bottom:1.5rem}
.cost-item{display:flex;align-items:flex-start;gap:.75rem;padding:.75rem;background:rgba(255,255,255,.1);border-radius:var(--radius-md);margin-bottom:.75rem}
.cost-item:last-child{margin-bottom:0}
.cost-item svg{width:1.25rem;height:1.25rem;color:#fdba74;flex-shrink:0;margin-top:.125rem}
.cost-title{font-size:.875rem;font-weight:600;color:#fff}
.cost-desc{font-size:.75rem;color:#fed7aa;margin-top:.125rem}
.cost-cta{background:linear-gradient(135deg,#ea580c,#dc2626);border-radius:var(--radius-lg);padding:2rem;color:#fff;text-align:center}
.cost-cta h2{font-size:1.5rem;font-weight:900;margin-bottom:.75rem}
.cost-cta p{color:#fed7aa;margin-bottom:1.5rem}
.cases-list{display:grid;grid-template-columns:1fr;gap:2rem}
@media(min-width:768px){.cases-list{grid-template-columns:repeat(2,1fr)}}
.case-card-full{bg:#fff;border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--border-color);transition:var(--transition)}
.case-card-full:hover{border-color:#bfdbfe;box-shadow:var(--shadow-xl);transform:translateY(-4px)}
.case-image{position:relative;height:12rem;overflow:hidden}
.case-image img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.case-card-full:hover .case-image img{transform:scale(1.05)}
.case-image-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.7),transparent)}
.case-tag{position:absolute;top:1rem;left:1rem;padding:.25rem .75rem;font-size:.75rem;font-weight:600;color:#fff;border-radius:9999px}
.case-tag.blue{background:linear-gradient(135deg,#3b82f6,#2563eb)}
.case-tag.green{background:linear-gradient(135deg,#22c55e,#14b8a6)}
.case-tag.indigo{background:linear-gradient(135deg,#6366f1,#8b5cf6)}
.case-tag.cyan{background:linear-gradient(135deg,#06b6d4,#0ea5e9)}
.case-body{padding:1.5rem}
.case-body h3{font-size:1.125rem;font-weight:700;color:var(--text-dark);margin-bottom:.5rem}
.case-body:hover h3{color:var(--primary)}
.case-body>p{font-size:.875rem;color:var(--text-gray);margin-bottom:1rem;line-height:1.6}
.case-results{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:.75rem}
.case-result{background:#f0fdf4;color:#15803d;font-size:.75rem;padding:.25rem .625rem;border-radius:9999px;border:1px solid #bbf7d0}
.case-tags{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1rem}
.case-tag-item{background:#eff6ff;color:#1d4ed8;font-size:.75rem;padding:.25rem .625rem;border-radius:9999px}
.news-section{padding:5rem 0;background:var(--bg-light)}
.news-hero{padding:3rem 0;background:#fff;border-bottom:1px solid var(--border-color)}
.news-categories{display:flex;gap:.75rem;overflow-x:auto;padding-bottom:.5rem}
.news-cat-btn{padding:.5rem 1rem;border-radius:9999px;font-size:.875rem;font-weight:500;white-space:nowrap;transition:var(--transition);border:none;cursor:pointer}
.news-cat-btn.active{background:var(--primary);color:#fff}
.news-cat-btn:not(.active){background:#f3f4f6;color:#4b5563}
.news-cat-btn:not(.active):hover{background:#eff6ff;color:var(--primary)}
.news-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:768px){.news-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.news-grid{grid-template-columns:repeat(3,1fr)}
}.news-card{background:#fff;border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--border-color);transition:var(--transition)}
.news-card:hover{border-color:#bfdbfe;box-shadow:var(--shadow-xl);transform:translateY(-2px)}
.news-card-image{height:10rem;background:linear-gradient(135deg,#dbeafe,#e0e7ff);display:flex;align-items:center;justify-content:center}
.news-card-image img{width:100%;height:100%;object-fit:cover}
.news-card-image-placeholder{font-size:3rem}
.news-card-body{padding:1.25rem}
.news-meta{display:flex;align-items:center;gap:.75rem;margin-bottom:.75rem}
.news-category{padding:.25rem .625rem;font-size:.75rem;font-weight:600;border-radius:9999px}
.news-category.blue{background:#dbeafe;color:#1d4ed8}
.news-category.green{background:#dcfce7;color:#15803d}
.news-category.orange{background:#ffedd5;color:#c2410c}
.news-date{display:flex;align-items:center;gap:.25rem;font-size:.75rem;color:#9ca3af}
.news-card h3{font-size:1rem;font-weight:700;color:var(--text-dark);margin-bottom:.5rem;line-height:1.4}
.news-card:hover h3{color:var(--primary)}
.news-card-desc{font-size:.875rem;color:var(--text-gray);margin-bottom:.75rem;line-height:1.6}
.news-tags{display:flex;flex-wrap:wrap;gap:.375rem}
.news-tag{background:#f3f4f6;color:#4b5563;font-size:.75rem;padding:.125rem .5rem;border-radius:9999px}
.featured-news{background:#fff;border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--border-color);transition:var(--transition)}
.featured-news:hover{border-color:#bfdbfe;box-shadow:var(--shadow-xl)}
.featured-grid{display:grid;grid-template-columns:1fr}
@media(min-width:768px){.featured-grid{grid-template-columns:1fr 1fr}}
.featured-image{height:16rem;background:linear-gradient(135deg,#3b82f6,#06b6d4);display:flex;align-items:center;justify-content:center;position:relative}
@media(min-width:768px){.featured-image{height:auto;min-height:20rem}}
.featured-placeholder{font-size:5rem}
.featured-badge{position:absolute;top:1rem;left:1rem;padding:.25rem .625rem;background:rgba(255,255,255,.2);color:#fff;font-size:.75rem;font-weight:600;border-radius:9999px;backdrop-filter:blur(10px)}
.featured-body{padding:2rem;display:flex;flex-direction:column;justify-content:center}
.featured-body h2{font-size:1.5rem;font-weight:900;color:var(--text-dark);margin-bottom:1rem}
.featured-body>p{color:var(--text-gray);margin-bottom:1.5rem;line-height:1.8}
.featured-tags{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1.5rem}
.featured-tag{display:flex;align-items:center;gap:.25rem;padding:.25rem .625rem;background:#eff6ff;color:#1d4ed8;font-size:.75rem;border-radius:9999px}
.about-hero{padding:7rem 0 4rem;background:linear-gradient(to bottom right,#1e3a8a,#1e40af,#4338ca);overflow:hidden}
.about-hero-bg{position:absolute;inset:0;opacity:.15}
.about-hero-bg img{width:100%;height:100%;object-fit:cover}
.about-hero-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(15,23,42,.9),rgba(30,58,138,.7))}
.about-grid{display:grid;grid-template-columns:1fr;gap:3rem;align-items:center}
@media(min-width:768px){.about-grid{grid-template-columns:1fr 1fr}}
.about-content h2{font-size:1.875rem;font-weight:900;color:var(--text-dark);margin-bottom:1.5rem}
@media(min-width:768px){.about-content h2{font-size:2rem}}
.about-content p{color:var(--text-gray);margin-bottom:1rem;line-height:1.8}
.about-content strong{color:var(--text-dark)}
.about-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:2rem}
.about-stat{background:linear-gradient(135deg,#eff6ff,#ecfeff);border-radius:var(--radius-lg);padding:1.5rem;text-align:center;border:1px solid #bfdbfe}
.about-stat-value{font-size:1.875rem;font-weight:900;color:var(--primary)}
.about-stat-label{font-size:.875rem;color:var(--text-gray);margin-top:.25rem}
.about-info{display:grid;grid-template-columns:1fr;gap:1rem;margin-top:2rem}
@media(min-width:768px){.about-info{max-width:32rem}}
.info-item{display:flex;align-items:flex-start;gap:.75rem}
.info-item svg{width:1.25rem;height:1.25rem;color:var(--primary);flex-shrink:0;margin-top:.125rem}
.info-item span{font-size:.875rem;color:var(--text-gray)}
.values-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:768px){.values-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.values-grid{grid-template-columns:repeat(4,1fr)}}
.value-card{background:#fff;border-radius:var(--radius-lg);padding:1.5rem;border:1px solid var(--border-color);text-align:center;transition:var(--transition)}
.value-card:hover{border-color:#bfdbfe;box-shadow:var(--shadow-lg)}
.value-icon{font-size:2.5rem;margin-bottom:1rem}
.value-card h3{font-size:1rem;font-weight:700;color:var(--text-dark);margin-bottom:.5rem}
.value-card p{font-size:.875rem;color:var(--text-gray);line-height:1.6}
.timeline{position:relative;max-width:32rem;margin:0 auto}
.timeline::before{content:'';position:absolute;left:.75rem;top:0;bottom:0;width:2px;background:#dbeafe}
@media(min-width:1024px){.timeline::before{left:50%;transform:translateX(-50%)}}
.timeline-item{position:relative;padding-left:3rem;padding-bottom:2rem}
.timeline-item:last-child{padding-bottom:0}
.timeline-item::before{content:'';position:absolute;left:.375rem;top:.25rem;width:1rem;height:1rem;background:var(--primary);border-radius:50%}
@media(min-width:1024px){.timeline-item::before{left:50%;transform:translateX(-50%)}}
.timeline-item:nth-child(even){}
@media(min-width:1024px){.timeline-item:nth-child(even){padding-left:0;padding-right:3rem;margin-left:50%}.timeline-item:nth-child(even)::before{left:auto;right:.375rem;transform:translateX(50%)}}
.timeline-year{font-size:1.125rem;font-weight:900;color:var(--primary);margin-bottom:.5rem}
.timeline-title{font-size:1rem;font-weight:700;color:var(--text-dark);margin-bottom:.25rem}
.timeline-desc{font-size:.875rem;color:var(--text-gray)}
.subpages-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:768px){.subpages-grid{grid-template-columns:repeat(3,1fr)}}
.subpage-card{background:#fff;border-radius:var(--radius-lg);padding:1.5rem;border:1px solid var(--border-color);transition:var(--transition)}
.subpage-card:hover{border-color:#bfdbfe;box-shadow:var(--shadow-lg)}
.subpage-card-icon{font-size:1.875rem;margin-bottom:.75rem}
.subpage-card h3{font-size:1rem;font-weight:700;color:var(--text-dark);margin-bottom:.5rem}
.subpage-card:hover h3{color:var(--primary)}
.subpage-card p{font-size:.875rem;color:var(--text-gray);margin-bottom:1rem}
.contact-section{padding:5rem 0;background:var(--bg-white)}
.contact-grid{display:grid;grid-template-columns:1fr;gap:3rem}
@media(min-width:768px){.contact-grid{grid-template-columns:1fr 1fr}}
.contact-info h2,.contact-form h2{font-size:1.5rem;font-weight:700;color:var(--text-dark);margin-bottom:1.5rem}
.contact-item{margin-bottom:1.5rem}
.contact-item h3{font-size:1rem;font-weight:600;color:var(--primary);margin-bottom:.5rem}
.contact-item p{color:var(--text-gray)}
.contact-form{background:var(--bg-light);padding:2rem;border-radius:var(--radius-lg)}
.form-group{margin-bottom:1.5rem}
.form-group label{display:block;font-size:.875rem;font-weight:600;color:var(--text-dark);margin-bottom:.5rem}
.form-group input,.form-group textarea{width:100%;padding:.75rem;border:1px solid var(--border-color);border-radius:var(--radius-md);font-size:1rem;font-family:inherit;transition:border-color .2s}
.form-group input:focus,.form-group textarea:focus{outline:none;border-color:var(--primary)}
.form-group textarea{resize:vertical;min-height:120px}
.form-group input::placeholder,.form-group textarea::placeholder{color:var(--text-light)}
.footer{background:#111827;color:#fff;padding:4rem 0}
.footer-grid{display:grid;grid-template-columns:1fr;gap:2.5rem}
@media(min-width:768px){.footer-grid{grid-template-columns:repeat(4,1fr)}}
.footer-brand{display:flex;align-items:center;gap:.75rem;margin-bottom:1rem}
.footer-brand-icon{width:2.5rem;height:2.5rem;background:linear-gradient(135deg,#2563eb,#06b6d4);border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;font-weight:700}
.footer-brand h3{font-size:1.125rem;font-weight:700;color:#fff}
.footer-brand p{font-size:.75rem;color:#9ca3af}
.footer-company>p{font-size:.875rem;color:#9ca3af;line-height:1.6;margin-bottom:1.5rem}
.footer-links h4{font-size:1rem;font-weight:600;color:#fff;margin-bottom:1rem}
.footer-links ul{list-style:none}
.footer-links li{margin-bottom:.625rem}
.footer-links a{color:#9ca3af;text-decoration:none;font-size:.875rem;transition:color .2s}
.footer-links a:hover{color:#3b82f6}
.footer-cta p{font-size:.875rem;color:#9ca3af;margin-bottom:1rem}
.footer-bottom{border-top:1px solid #374151;padding-top:1.5rem;display:flex;flex-direction:column;gap:.5rem;text-align:center}
@media(min-width:768px){.footer-bottom{flex-direction:row;justify-content:space-between;text-align:left}}
.footer-bottom p{font-size:.875rem;color:#9ca3af}
