```css
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
:root {
    --bg: #f8f9fa;
    --text: #1a1a2e;
    --primary: #e94560;
    --secondary: #16213e;
    --accent: #0f3460;
    --glass: rgba(255, 255, 255, 0.15);
    --card-bg: #fff;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --radius: 16px;
    --gradient: linear-gradient(135deg, #e94560, #0f3460);
    --glass-border: rgba(255, 255, 255, 0.2);
    --hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.dark-mode {
    --bg: #0f0f1a;
    --text: #e0e0e0;
    --card-bg: #1a1a2e;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --glass: rgba(0, 0, 0, 0.3);
    --glass-border: rgba(255, 255, 255, 0.08);
}
body {
    background: var(--bg);
    color: var(--text);
    transition: all 0.3s ease;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
a {
    color: var(--primary);
    text-decoration: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}
.nav-links a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}
.nav-links a:hover {
    color: var(--primary);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
#darkModeToggle {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}
#darkModeToggle:hover {
    background: var(--primary);
    color: #fff;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
    border-radius: 2px;
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 60px;
    background: var(--hero-gradient);
    background-attachment: fixed;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900'%3E%3Cpath fill='rgba(255,255,255,0.05)' d='M0,0L1440,0L1440,900L0,900Z'/%3E%3C/svg%3E") no-repeat center/cover;
    opacity: 0.3;
}
.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: #fff;
    color: var(--secondary);
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.4);
}
.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.btn-outline:hover {
    background: #fff;
    color: var(--secondary);
    transform: translateY(-3px);
}
.banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}
.slide-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.slide {
    min-width: 100%;
    padding: 20px;
}
.slide img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.dot.active {
    background: #fff;
    transform: scale(1.3);
}
section {
    padding: 80px 20px;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}
.section-title p {
    color: var(--text);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}
.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #fff;
}
.card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text);
}
.card p {
    color: var(--text);
    opacity: 0.8;
    line-height: 1.7;
}
.glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-item {
    padding: 30px;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}
.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}
.stat-label {
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 8px;
    color: var(--text);
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.case-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 1px solid var(--glass-border);
}
.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.case-img {
    height: 200px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}
.case-body {
    padding: 24px;
}
.case-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.case-body p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    transition: all 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
}
.testimonial-card p {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 16px;
    opacity: 0.9;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
}
.testimonial-author strong {
    font-size: 1rem;
}
.faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
    cursor: pointer;
    transition: all 0.3s;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 0;
}
.faq-question span {
    transition: transform 0.3s;
    font-size: 1.4rem;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 16px;
    opacity: 0.8;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 12px 16px;
}
.faq-item.active .faq-question span {
    transform: rotate(45deg);
}
.howto-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    counter-reset: step;
}
.howto-step {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    position: relative;
}
.howto-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -12px;
    left: -12px;
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}
.howto-step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.howto-step p {
    opacity: 0.8;
    font-size: 0.95rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}
.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    flex-shrink: 0;
}
footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 20px 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}
.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}
.footer-bottom a {
    color: var(--primary);
    margin: 0 8px;
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
    transition: all 0.3s;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}
.back-to-top.show {
    display: flex;
}
.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.5);
}
.search-sim {
    display: flex;
    max-width: 500px;
    margin: 20px auto;
    background: var(--card-bg);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}
.search-sim input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 1rem;
    outline: none;
}
.search-sim button {
    padding: 14px 28px;
    background: var(--gradient);
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}
.search-sim button:hover {
    opacity: 0.9;
}
.breadcrumb {
    display: flex;
    gap: 8px;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--text);
    opacity: 0.6;
}
.breadcrumb span {
    color: var(--text);
    opacity: 0.4;
}
.breadcrumb .current {
    color: var(--primary);
    opacity: 1;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.news-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 1px solid var(--glass-border);
}
.news-card:hover {
    transform: translateY(-4px);
}
.news-img {
    height: 180px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.2);
}
.news-body {
    padding: 20px;
}
.news-body .date {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 8px;
    display: block;
}
.news-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.news-body p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
}
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    align-items: center;
}
.partner-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.7;
    transition: all 0.3s;
}
.partner-item:hover {
    opacity: 1;
    transform: scale(1.05);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.team-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}
.team-card:hover {
    transform: translateY(-4px);
}
.team-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient);
    margin: 0 auto 16px;
    display: block;
}
.team-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.team-card p {
    opacity: 0.7;
    font-size: 0.9rem;
}
.related-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.related-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}
.related-item:hover {
    transform: translateY(-3px);
}
.related-item h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}
.related-item p {
    font-size: 0.85rem;
    opacity: 0.7;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.pagination a {
    padding: 10px 18px;
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text);
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
    font-weight: 500;
}
.pagination a:hover,
.pagination a.active {
    background: var(--gradient);
    color: #fff;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--glass);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        border-bottom: 1px solid var(--glass-border);
    }
    .nav-links.open {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .slide {
        padding: 10px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
    font-size: 1.05rem;
}
.article-content p {
    margin-bottom: 20px;
}
.article-content h2,
.article-content h3 {
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--text);
}
.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--glass);
    font-size: 0.8rem;
    margin: 4px;
    border: 1px solid var(--glass-border);
}
.sitemap-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    list-style: none;
}
.sitemap-list li a {
    color: var(--text);
    opacity: 0.8;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.sitemap-list li a:hover {
    color: var(--primary);
    padding-left: 4px;
}
.privacy-policy,
.disclaimer {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 0.95rem;
    opacity: 0.9;
}
.privacy-policy h3,
.disclaimer h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text);
}
.prev-next {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 16px;
}
.prev-next a {
    padding: 12px 24px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
    flex: 1;
    text-align: center;
}
.prev-next a:hover {
    background: var(--gradient);
    color: #fff;
}
```