* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0f0f1a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

body.light-mode {
    background: #f5f5f5;
    color: #333;
}

a {
    color: #e94560;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ff6b81;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(233, 69, 96, 0.2);
    transition: background 0.3s;
}

body.light-mode header {
    background: rgba(245, 245, 245, 0.9);
    border-bottom-color: rgba(233, 69, 96, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #e94560, #ff6b81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

body.light-mode .logo {
    background: linear-gradient(135deg, #e94560, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
    position: relative;
    padding: 5px 0;
}

body.light-mode nav a {
    color: #555;
}

nav a.active,
nav a:hover {
    color: #e94560;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e94560;
    border-radius: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #e94560;
    border-radius: 2px;
    transition: 0.3s;
}

.dark-toggle {
    background: none;
    border: 1px solid #e94560;
    color: #e94560;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.dark-toggle:hover {
    background: #e94560;
    color: #fff;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-box input {
    padding: 8px 15px;
    border: 1px solid #333;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 13px;
    width: 180px;
    transition: 0.3s;
}

body.light-mode .search-box input {
    background: #fff;
    color: #333;
    border-color: #ddd;
}

.search-box input:focus {
    outline: none;
    border-color: #e94560;
    width: 220px;
}

.search-box button {
    background: #e94560;
    border: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.search-box button:hover {
    background: #ff6b81;
}

.banner {
    margin-top: 80px;
    position: relative;
    height: 550px;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s;
}

.banner-slide.active {
    opacity: 1;
}

.banner-content {
    text-align: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    max-width: 700px;
}

body.light-mode .banner-content {
    background: rgba(255, 255, 255, 0.7);
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #e94560, #ff6b81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 25px;
}

body.light-mode .banner-content p {
    color: #555;
}

.banner-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #e94560;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.banner-btn:hover {
    background: #ff6b81;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.banner-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.banner-dots span.active {
    background: #e94560;
    transform: scale(1.3);
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #e94560;
    margin: 15px auto 0;
    border-radius: 2px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

body.light-mode .glass-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.story-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #bbb;
}

body.light-mode .story-text p {
    color: #555;
}

.story-image {
    flex: 1;
    text-align: center;
}

.story-image svg {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #e94560;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #e94560;
    border-radius: 50%;
    border: 3px solid #0f0f1a;
}

body.light-mode .timeline-item::before {
    border-color: #f5f5f5;
}

.timeline-item h3 {
    font-size: 20px;
    color: #e94560;
}

.timeline-item p {
    color: #aaa;
}

body.light-mode .timeline-item p {
    color: #666;
}

.team-member {
    text-align: center;
    padding: 30px 20px;
}

.team-member svg {
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-member p {
    color: #aaa;
    font-size: 14px;
}

body.light-mode .team-member p {
    color: #777;
}

.product-card {
    text-align: center;
    padding: 30px;
}

.product-card svg {
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.product-card p {
    color: #aaa;
    font-size: 14px;
}

body.light-mode .product-card p {
    color: #666;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-mode .faq-item {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(233, 69, 96, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #e94560;
    transition: 0.3s;
}

.faq-item.open .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: #bbb;
    font-size: 14px;
}

body.light-mode .faq-answer {
    color: #555;
}

.faq-item.open .faq-answer {
    display: block;
}

.howto-steps {
    counter-reset: step;
}

.howto-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.howto-step::before {
    counter-increment: step;
    content: counter(step);
    background: #e94560;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.howto-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.howto-step p {
    color: #aaa;
    font-size: 14px;
}

body.light-mode .howto-step p {
    color: #666;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.partner-logos svg {
    opacity: 0.6;
    transition: 0.3s;
}

.partner-logos svg:hover {
    opacity: 1;
}

.testimonial-card {
    padding: 30px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 60px;
    color: #e94560;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: #ccc;
}

body.light-mode .testimonial-card p {
    color: #555;
}

.testimonial-card .author {
    font-weight: 600;
    color: #e94560;
}

.news-card {
    padding: 25px;
}

.news-card .date {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.news-card p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 15px;
}

body.light-mode .news-card p {
    color: #666;
}

.news-card .read-more {
    color: #e94560;
    font-weight: 600;
    font-size: 14px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.contact-info svg {
    flex-shrink: 0;
}

.map-placeholder {
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #888;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .map-placeholder {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(233, 69, 96, 0.2);
}

body.light-mode footer {
    background: rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #e94560;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #aaa;
    display: block;
    margin-bottom: 10px;
}

body.light-mode .footer-col p,
body.light-mode .footer-col a {
    color: #666;
}

.footer-col a:hover {
    color: #e94560;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #888;
}

body.light-mode .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.footer-bottom a {
    color: #888;
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: #e94560;
}

.breadcrumb {
    padding: 20px 0;
    font-size: 13px;
    color: #888;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #888;
}

.breadcrumb a:hover {
    color: #e94560;
}

.breadcrumb span {
    color: #aaa;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #e94560;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    transition: 0.3s;
    z-index: 999;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .banner {
        height: 450px;
    }
    .banner-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }
    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(15, 15, 26, 0.95);
        padding: 20px;
        border-radius: 15px;
        margin-top: 10px;
        gap: 15px;
    }
    body.light-mode nav {
        background: rgba(245, 245, 245, 0.95);
    }
    nav.show {
        display: flex;
    }
    .nav-toggle {
        display: flex;
    }
    .search-box {
        width: 100%;
    }
    .search-box input {
        width: 100%;
    }
    .banner {
        height: 350px;
        margin-top: 70px;
    }
    .banner-content h1 {
        font-size: 28px;
    }
    .banner-content p {
        font-size: 15px;
    }
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .story-content {
        flex-direction: column;
    }
    .section-title {
        font-size: 28px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 300px;
    }
    .banner-content h1 {
        font-size: 22px;
    }
    .banner-content p {
        font-size: 13px;
    }
    .banner-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    section {
        padding: 50px 0;
    }
    .container {
        padding: 0 15px;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.count-up {
    font-size: 48px;
    font-weight: 800;
    color: #e94560;
    display: inline-block;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0f1a;
}

::-webkit-scrollbar-thumb {
    background: #e94560;
    border-radius: 4px;
}

body.light-mode ::-webkit-scrollbar-track {
    background: #f5f5f5;
}