* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #0a0e1a;
            color: #e0e8f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #3b82f6;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #60a5fa;
            text-shadow: 0 0 12px rgba(59,130,246,0.4);
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* Navigation */
        .navbar {
            background: rgba(10,14,26,0.92);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(59,130,246,0.15);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, #3b82f6, #60a5fa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
        }
        .nav-links a {
            font-size: 0.95rem;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.3s;
        }
        .nav-links a:hover {
            border-bottom-color: #3b82f6;
        }
        /* Hero */
        .hero {
            padding: 80px 0 100px;
            background: radial-gradient(ellipse at 30% 20%, rgba(59,130,246,0.08), transparent 70%);
            text-align: center;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff, #93c5fd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 24px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 760px;
            margin: 0 auto 40px;
            color: #94a3b8;
        }
        .hero-img {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 20px;
            box-shadow: 0 0 60px rgba(59,130,246,0.2);
            border: 1px solid rgba(59,130,246,0.2);
        }
        .hero-img img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            display: block;
        }
        .btn-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 48px;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            border: none;
            padding: 16px 48px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 24px rgba(59,130,246,0.3);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 40px rgba(59,130,246,0.4);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid rgba(59,130,246,0.6);
            padding: 14px 44px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            color: #93c5fd;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-outline:hover {
            background: rgba(59,130,246,0.1);
            border-color: #3b82f6;
        }
        /* GEO */
        .geo-intro {
            padding: 80px 0;
            border-top: 1px solid rgba(59,130,246,0.08);
        }
        .geo-intro h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: #f1f5f9;
        }
        .geo-intro p {
            font-size: 1.05rem;
            color: #cbd5e1;
            max-width: 900px;
        }
        /* Stats */
        .stats {
            padding: 80px 0;
            background: rgba(59,130,246,0.03);
            border-top: 1px solid rgba(59,130,246,0.06);
            border-bottom: 1px solid rgba(59,130,246,0.06);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 32px;
        }
        .stat-card {
            text-align: center;
            padding: 32px 16px;
            background: rgba(255,255,255,0.02);
            border-radius: 16px;
            border: 1px solid rgba(59,130,246,0.1);
            transition: 0.3s;
        }
        .stat-card:hover {
            border-color: #3b82f6;
            box-shadow: 0 0 30px rgba(59,130,246,0.06);
        }
        .stat-card .num {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #3b82f6, #60a5fa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-card .label {
            font-size: 1rem;
            color: #94a3b8;
            margin-top: 8px;
        }
        /* Advantages */
        .advantages {
            padding: 80px 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 56px;
            color: #f1f5f9;
        }
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 32px;
        }
        .adv-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(59,130,246,0.1);
            border-radius: 20px;
            padding: 32px 24px;
            transition: all 0.3s;
            backdrop-filter: blur(4px);
        }
        .adv-card:hover {
            border-color: #3b82f6;
            transform: translateY(-4px);
            box-shadow: 0 12px 48px rgba(59,130,246,0.08);
        }
        .adv-card .icon {
            font-size: 2.2rem;
            margin-bottom: 16px;
        }
        .adv-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: #e2e8f0;
        }
        .adv-card p {
            color: #94a3b8;
            font-size: 0.95rem;
        }
        /* Brand Story */
        .story {
            padding: 80px 0;
            border-top: 1px solid rgba(59,130,246,0.06);
            border-bottom: 1px solid rgba(59,130,246,0.06);
        }
        .story-flex {
            display: flex;
            gap: 60px;
            align-items: center;
        }
        .story-text {
            flex: 1;
        }
        .story-text h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 24px;
        }
        .story-text p {
            color: #94a3b8;
            margin-bottom: 16px;
        }
        .story-img {
            flex: 1;
        }
        .story-img img {
            width: 100%;
            border-radius: 20px;
            border: 1px solid rgba(59,130,246,0.15);
        }
        /* Featured Events */
        .events {
            padding: 80px 0;
        }
        .event-grid {
            display: grid;
            grid-template-columns: repeat(2,1fr);
            gap: 32px;
        }
        .event-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(59,130,246,0.08);
            border-radius: 20px;
            padding: 28px;
            display: flex;
            gap: 24px;
            transition: 0.3s;
        }
        .event-card:hover {
            border-color: #3b82f6;
        }
        .event-card img {
            width: 140px;
            height: 100px;
            object-fit: cover;
            border-radius: 12px;
            border: 1px solid rgba(59,130,246,0.1);
        }
        .event-info h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .event-info p {
            color: #94a3b8;
            font-size: 0.95rem;
        }
        /* Testimonials */
        .reviews {
            padding: 80px 0;
            background: rgba(59,130,246,0.02);
            border-top: 1px solid rgba(59,130,246,0.06);
        }
        .review-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 32px;
        }
        .review-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(59,130,246,0.08);
            border-radius: 20px;
            padding: 32px;
        }
        .review-card .stars {
            color: #fbbf24;
            margin-bottom: 12px;
        }
        .review-card p {
            color: #94a3b8;
            font-style: italic;
        }
        .review-card .author {
            margin-top: 16px;
            font-weight: 600;
            color: #cbd5e1;
        }
        /* CTA */
        .cta {
            padding: 80px 0;
            text-align: center;
            background: radial-gradient(ellipse at center, rgba(59,130,246,0.06), transparent);
        }
        .cta h2 {
            font-size: 2.4rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .cta p {
            max-width: 600px;
            margin: 0 auto 36px;
            color: #94a3b8;
        }
        /* FAQ */
        .faq {
            padding: 80px 0;
            border-top: 1px solid rgba(59,130,246,0.06);
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(59,130,246,0.08);
            border-radius: 16px;
            padding: 24px 28px;
            transition: 0.3s;
        }
        .faq-item:hover {
            border-color: #3b82f6;
        }
        .faq-item h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #e2e8f0;
            margin-bottom: 8px;
        }
        .faq-item p {
            color: #94a3b8;
            font-size: 0.95rem;
        }
        /* News */
        .news {
            padding: 80px 0;
            border-top: 1px solid rgba(59,130,246,0.06);
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2,1fr);
            gap: 32px;
        }
        .news-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(59,130,246,0.08);
            border-radius: 20px;
            padding: 28px;
            transition: 0.3s;
        }
        .news-card:hover {
            border-color: #3b82f6;
        }
        .news-card .date {
            color: #64748b;
            font-size: 0.85rem;
            margin-bottom: 8px;
        }
        .news-card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: #e2e8f0;
        }
        .news-card p {
            color: #94a3b8;
            font-size: 0.95rem;
        }
        /* Partners */
        .partners {
            padding: 80px 0;
            border-top: 1px solid rgba(59,130,246,0.06);
        }
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            align-items: center;
        }
        .partner-logos img {
            height: 48px;
            opacity: 0.6;
            transition: 0.3s;
            filter: grayscale(0.4);
        }
        .partner-logos img:hover {
            opacity: 1;
            filter: grayscale(0);
        }
        /* Footer */
        .footer {
            padding: 48px 0 32px;
            border-top: 1px solid rgba(59,130,246,0.1);
            background: rgba(0,0,0,0.2);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: #e2e8f0;
        }
        .footer p, .footer a {
            color: #94a3b8;
            font-size: 0.9rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            justify-content: center;
            padding: 24px 0 16px;
            border-top: 1px solid rgba(59,130,246,0.06);
        }
        .footer-links a {
            color: #64748b;
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: #93c5fd;
        }
        .footer-bottom {
            text-align: center;
            color: #475569;
            font-size: 0.85rem;
            padding-top: 16px;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .nav-links { gap: 12px; flex-wrap: wrap; justify-content: center; }
            .stats-grid { grid-template-columns: repeat(2,1fr); }
            .adv-grid { grid-template-columns: 1fr; }
            .story-flex { flex-direction: column; }
            .event-grid { grid-template-columns: 1fr; }
            .event-card { flex-direction: column; }
            .event-card img { width: 100%; height: auto; }
            .review-grid { grid-template-columns: 1fr; }
            .news-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
        }