*, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: #0a0a0a;
            color: #e5e5e5;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            scroll-behavior: smooth;
        }
        a {
            color: #e5e5e5;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #d4af37;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* Header / Nav */
        header {
            background: #1a1a1a;
            border-bottom: 1px solid #2a2a2a;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
        }
        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }
        .logo a {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: #fff;
        }
        .logo a span {
            color: #d4af37;
        }
        .nav-links {
            display: flex;
            gap: 28px;
        }
        .nav-links a {
            font-size: 0.95rem;
            font-weight: 500;
            color: #ccc;
            transition: color 0.2s;
        }
        .nav-links a:hover {
            color: #d4af37;
        }
        /* HERO */
        section.hero {
            padding: 100px 0 80px;
            background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 100%);
        }
        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
        }
        .hero-text {
            flex: 1 1 400px;
        }
        .hero-text h1 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 20px;
        }
        .hero-text h1 span {
            color: #d4af37;
        }
        .hero-text p {
            font-size: 1.1rem;
            color: #b0b0b0;
            margin-bottom: 32px;
            max-width: 500px;
        }
        .hero-cta {
            display: inline-block;
            background: #d4af37;
            color: #0a0a0a;
            padding: 14px 40px;
            font-weight: 600;
            border-radius: 40px;
            font-size: 1rem;
            transition: 0.25s;
        }
        .hero-cta:hover {
            background: #c49f2e;
            color: #0a0a0a;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
        }
        .hero-visual {
            flex: 1 1 300px;
            display: flex;
            justify-content: center;
        }
        .hero-visual img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.7);
        }
        /* geo-intro */
        #geo-intro {
            padding: 60px 0 40px;
        }
        #geo-intro p {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.05rem;
            color: #c0c0c0;
            text-align: center;
            line-height: 1.8;
        }
        /* stats */
        #stats {
            padding: 60px 0;
            background: #111;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 40px;
            text-align: center;
        }
        .stat-item {
            padding: 20px 0;
        }
        .stat-item .num {
            font-size: 2.8rem;
            font-weight: 700;
            color: #d4af37;
            letter-spacing: 2px;
        }
        .stat-item .label {
            font-size: 1rem;
            color: #aaa;
            margin-top: 8px;
        }
        /* advantages */
        #advantages {
            padding: 70px 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 600;
            color: #fff;
            text-align: center;
            margin-bottom: 48px;
        }
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 32px;
        }
        .adv-card {
            background: #141414;
            border: 1px solid #222;
            border-radius: 16px;
            padding: 32px 24px;
            transition: 0.2s;
        }
        .adv-card:hover {
            border-color: #d4af37;
        }
        .adv-card .emoji-icon {
            font-size: 2.2rem;
            margin-bottom: 12px;
        }
        .adv-card h3 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        .adv-card p {
            color: #9a9a9a;
            font-size: 0.95rem;
        }
        /* testimonials */
        #testimonials {
            background: #0f0f0f;
            padding: 70px 0;
        }
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .testi-item {
            background: #1a1a1a;
            padding: 28px 24px;
            border-radius: 16px;
            border: 1px solid #262626;
        }
        .testi-item p {
            font-style: italic;
            color: #bbb;
            margin-bottom: 16px;
        }
        .testi-item .author {
            color: #d4af37;
            font-weight: 500;
        }
        /* faq */
        #faq {
            padding: 70px 0;
        }
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid #222;
            padding: 20px 0;
        }
        .faq-question {
            font-weight: 600;
            color: #fff;
            font-size: 1.1rem;
            cursor: default;
            margin-bottom: 8px;
        }
        .faq-answer {
            color: #a0a0a0;
            font-size: 0.98rem;
            line-height: 1.7;
        }
        /* news */
        #news {
            padding: 70px 0;
            background: #111;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }
        .news-card {
            background: #181818;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #262626;
            transition: 0.2s;
        }
        .news-card:hover {
            border-color: #d4af37;
        }
        .news-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }
        .news-body {
            padding: 20px;
        }
        .news-body .date {
            font-size: 0.85rem;
            color: #d4af37;
            margin-bottom: 6px;
        }
        .news-body h3 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        .news-body p {
            color: #999;
            font-size: 0.95rem;
        }
        /* partners */
        #partners {
            padding: 60px 0;
        }
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            align-items: center;
        }
        .partner-logos img {
            height: 40px;
            opacity: 0.5;
            transition: 0.2s;
            filter: grayscale(1);
        }
        .partner-logos img:hover {
            opacity: 1;
            filter: grayscale(0);
        }
        /* CTA */
        #cta {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            text-align: center;
        }
        #cta h2 {
            font-size: 2.2rem;
            color: #fff;
            margin-bottom: 16px;
        }
        #cta p {
            color: #aaa;
            max-width: 600px;
            margin: 0 auto 32px;
        }
        .cta-button {
            background: #d4af37;
            color: #0a0a0a;
            padding: 14px 48px;
            border-radius: 40px;
            font-weight: 600;
            display: inline-block;
            transition: 0.25s;
        }
        .cta-button:hover {
            background: #c49f2e;
            transform: scale(1.02);
        }
        /* footer */
        footer {
            background: #0d0d0d;
            border-top: 1px solid #1f1f1f;
            padding: 40px 0 24px;
            margin-top: auto;
        }
        footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 24px;
            margin-bottom: 28px;
            font-size: 0.9rem;
        }
        footer .footer-links a {
            color: #999;
        }
        footer .footer-links a:hover {
            color: #d4af37;
        }
        footer .footer-info {
            text-align: center;
            font-size: 0.88rem;
            color: #666;
            line-height: 2;
        }
        footer .footer-info span {
            display: inline-block;
            margin: 0 12px;
        }
        footer .copyright {
            text-align: center;
            color: #555;
            margin-top: 28px;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            header .container {
                flex-direction: column;
                height: auto;
                padding: 12px 24px;
                gap: 12px;
            }
            .nav-links {
                gap: 14px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero-text h1 {
                font-size: 2.2rem;
            }
            .hero-grid {
                flex-direction: column;
            }
        }