        :root {
            --green-deep: #0f5a49;
            --green-mid: #1e6f5c;
            --green-light: #289672;
            --green-pale: #e6f4ef;
            --green-surface: #f4faf7;
            --text-primary: #1a2c3e;
            --text-secondary: #2c4b5f;
            --text-muted: #4a6a7a;
            --white: #ffffff;
            --card-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
            --card-hover-shadow: 0 20px 40px -12px rgba(15, 90, 73, 0.14);
            --radius-xl: 32px;
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-full: 60px;
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans SC', sans-serif;
            background: linear-gradient(165deg, #f6faf8 0%, #edf4f0 30%, #f8fbf9 70%, #eef5f1 100%);
            background-attachment: fixed;
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== HEADER ========== */
        header {
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(30, 111, 92, 0.08);
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
            transition: var(--transition);
        }

        .nav-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 14px 0;
            gap: 16px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            font-size: 30px;
            font-weight: 900;
            background: linear-gradient(135deg, #1e6f5c, #289672);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
        }

        .logo-text {
            font-weight: 750;
            font-size: 1.55rem;
            letter-spacing: -0.4px;
            background: linear-gradient(135deg, #1a3b34, #1e6f5c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .nav-links {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 520;
            color: var(--text-secondary);
            transition: var(--transition);
            font-size: 0.95rem;
            padding: 7px 15px;
            border-radius: 24px;
            white-space: nowrap;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--green-mid);
            background: rgba(30, 111, 92, 0.06);
        }

        .nav-links a.active {
            font-weight: 650;
            background: rgba(30, 111, 92, 0.1);
        }

        .nav-download-btn {
            background: var(--green-mid);
            color: #fff !important;
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 620;
            transition: var(--transition);
            box-shadow: 0 2px 10px rgba(30, 111, 92, 0.25);
        }
        .nav-download-btn:hover {
            background: var(--green-deep);
            box-shadow: 0 6px 18px rgba(15, 90, 73, 0.35);
            transform: translateY(-2px);
        }

        /* ========== HERO ========== */
        .hero {
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;
            justify-content: space-between;
            padding: 50px 0 36px;
            gap: 36px;
        }

        .hero-left {
            flex: 1.25;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-badge {
            background: rgba(30, 111, 92, 0.1);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 16px;
            border-radius: 40px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--green-mid);
            margin-bottom: 18px;
            width: fit-content;
            border: 1px solid rgba(30, 111, 92, 0.15);
        }

        .hero-left h1 {
            font-size: clamp(2.2rem, 4.5vw, 3.4rem);
            font-weight: 850;
            line-height: 1.18;
            background: linear-gradient(145deg, #143829 0%, #1e6f5c 55%, #289672 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 16px;
            letter-spacing: -0.6px;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 560px;
            margin-bottom: 10px;
            font-weight: 450;
        }

        .hero-desc {
            font-size: 1rem;
            color: var(--text-muted);
            max-width: 540px;
            margin-bottom: 26px;
            line-height: 1.65;
        }

        .hero-platforms {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }
        .platform-tag {
            background: #fff;
            border: 1px solid #dce8e3;
            padding: 6px 14px;
            border-radius: 24px;
            font-size: 0.82rem;
            font-weight: 540;
            color: var(--text-secondary);
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }
        .platform-tag:hover {
            border-color: var(--green-mid);
            background: var(--green-pale);
            color: var(--green-deep);
        }

        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .btn-primary {
            background: var(--green-mid);
            color: #fff;
            padding: 13px 30px;
            border-radius: 44px;
            text-decoration: none;
            font-weight: 620;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 1rem;
            box-shadow: 0 4px 16px rgba(30, 111, 92, 0.3);
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            background: var(--green-deep);
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(15, 90, 73, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 1.8px solid var(--green-mid);
            color: var(--green-mid);
            padding: 13px 28px;
            border-radius: 44px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 1rem;
        }
        .btn-outline:hover {
            background: rgba(30, 111, 92, 0.07);
            border-color: var(--green-deep);
            color: var(--green-deep);
        }

        .hero-stats-mini {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .hero-stats-mini strong {
            color: var(--green-mid);
            font-size: 1.3rem;
            font-weight: 750;
            display: block;
            line-height: 1.2;
        }

        .hero-right {
            flex: 0.85;
            min-width: 260px;
            background: linear-gradient(155deg, #ffffff 0%, #f8fdfa 100%);
            padding: 28px 24px;
            border-radius: var(--radius-xl);
            box-shadow: 0 18px 40px -14px rgba(15, 90, 73, 0.12);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(30, 111, 92, 0.08);
            gap: 10px;
        }
        .hero-right .shield-icon {
            font-size: 4.5rem;
            line-height: 1;
        }
        .hero-right h3 {
            color: var(--green-deep);
            font-weight: 700;
            font-size: 1.3rem;
        }
        .hero-right p {
            color: #3a6b5e;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        .hero-right .tg-badge {
            background: #eef6f2;
            border-radius: 32px;
            padding: 10px 18px;
            font-size: 0.85rem;
            font-weight: 550;
            color: #1e5a4f;
        }

        /* ========== SECTION TITLES ========== */
        .section-title {
            text-align: center;
            font-size: clamp(1.7rem, 3vw, 2.2rem);
            font-weight: 750;
            margin-bottom: 12px;
            color: #1a2c3e;
            letter-spacing: -0.3px;
        }
        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            max-width: 620px;
            margin: 0 auto 40px;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ========== CLIENT CARDS GRID ========== */
        .clients-section {
            padding: 50px 0 40px;
        }
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 22px;
        }
        .client-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 24px 22px;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.04);
            display: flex;
            flex-direction: column;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }
        .client-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #1e6f5c, #289672, #5cc9a0);
            opacity: 0;
            transition: var(--transition);
            border-radius: 0 0 4px 4px;
        }
        .client-card:hover::before {
            opacity: 1;
        }
        .client-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-hover-shadow);
            border-color: #d4ebe2;
        }
        .client-card .card-icon {
            font-size: 2.2rem;
            line-height: 1;
        }
        .client-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1e5a4f;
            margin: 0;
        }
        .client-card .card-platform {
            font-size: 0.78rem;
            color: var(--text-muted);
            font-weight: 500;
            background: #f4f8f6;
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            width: fit-content;
        }
        .client-card .card-desc {
            font-size: 0.9rem;
            color: #4a6a7a;
            line-height: 1.5;
        }
        .client-card .card-protocols {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: auto;
        }
        .protocol-tag {
            font-size: 0.7rem;
            padding: 3px 9px;
            border-radius: 16px;
            background: #eef6f2;
            color: #1e6f5c;
            font-weight: 550;
            white-space: nowrap;
        }
        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: var(--green-mid);
            text-decoration: none;
            font-weight: 620;
            font-size: 0.9rem;
            margin-top: 6px;
            transition: var(--transition);
        }
        .card-link:hover {
            color: var(--green-deep);
            gap: 8px;
        }

        /* ========== CAPABILITIES ========== */
        .capabilities-section {
            padding: 40px 0;
        }
        .cap-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .cap-item {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 22px 20px;
            border: 1px solid rgba(30, 111, 92, 0.06);
            transition: var(--transition);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .cap-item:hover {
            box-shadow: 0 10px 28px -10px rgba(15, 90, 73, 0.1);
            border-color: #c8e3d8;
            transform: translateY(-3px);
        }
        .cap-icon {
            font-size: 2rem;
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: var(--green-pale);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .cap-content h4 {
            font-size: 1rem;
            font-weight: 680;
            color: #1e5a4f;
            margin-bottom: 4px;
        }
        .cap-content p {
            font-size: 0.85rem;
            color: #4a6a7a;
            line-height: 1.5;
            margin: 0;
        }
        .cap-content a {
            color: var(--green-mid);
            font-weight: 550;
            text-decoration: none;
            font-size: 0.82rem;
        }
        .cap-content a:hover {
            text-decoration: underline;
        }

        /* ========== QUICK START ========== */
        .quickstart-section {
            padding: 44px 0;
        }
        .steps-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .step-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 28px 22px;
            text-align: center;
            flex: 1 1 220px;
            max-width: 280px;
            box-shadow: var(--card-shadow);
            border: 1px solid rgba(0, 0, 0, 0.03);
            transition: var(--transition);
            position: relative;
        }
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-hover-shadow);
        }
        .step-number {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1e6f5c, #289672);
            color: #fff;
            font-weight: 800;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            box-shadow: 0 4px 14px rgba(30, 111, 92, 0.3);
        }
        .step-card h4 {
            font-weight: 700;
            color: #1e5a4f;
            margin-bottom: 6px;
        }
        .step-card p {
            font-size: 0.85rem;
            color: #4a6a7a;
            margin-bottom: 12px;
        }
        .step-card a {
            color: var(--green-mid);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .step-card a:hover {
            color: var(--green-deep);
        }

        /* ========== SEO CONTENT HUB ========== */
        .content-hub-section {
            padding: 40px 0;
        }
        .hub-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 18px;
        }
        .hub-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 20px 18px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .hub-card:hover {
            box-shadow: var(--card-hover-shadow);
            border-color: #d4ebe2;
            transform: translateY(-4px);
        }
        .hub-card h4 {
            font-weight: 680;
            color: #1e5a4f;
            font-size: 1rem;
        }
        .hub-card p {
            font-size: 0.84rem;
            color: #4a6a7a;
            line-height: 1.5;
            flex-grow: 1;
        }
        .hub-card a {
            color: var(--green-mid);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.88rem;
            align-self: flex-start;
            transition: var(--transition);
        }
        .hub-card a:hover {
            color: var(--green-deep);
            text-decoration: underline;
        }

        /* ========== SPONSOR ========== */
        .sponsor-area {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 32px 26px;
            margin: 36px 0 50px;
            text-align: center;
            border: 1px solid #d9e8e2;
            box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.04);
        }
        .sponsor-title {
            font-size: 1.5rem;
            font-weight: 650;
            margin-bottom: 8px;
            color: #1a2c3e;
        }
        .sponsor-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 22px 0;
        }
        .sponsor-card {
            background: #fafffd;
            padding: 14px 24px;
            border-radius: 50px;
            font-weight: 600;
            border: 1px solid #cde6dc;
            transition: var(--transition);
            font-size: 0.9rem;
        }
        .sponsor-card:hover {
            background: #eef9f5;
            border-color: var(--green-mid);
            transform: translateY(-2px);
        }
        .sponsor-thanks {
            font-size: 0.8rem;
            background: #eef6f2;
            display: inline-block;
            padding: 6px 18px;
            border-radius: 50px;
            color: #1e5a4f;
        }

        /* ========== BOTTOM CTA ========== */
        .bottom-cta-section {
            padding: 30px 0 50px;
        }
        .bottom-cta {
            background: linear-gradient(145deg, #0f3d30 0%, #1a5c48 40%, #1e6f5c 100%);
            border-radius: var(--radius-xl);
            padding: 44px 28px;
            text-align: center;
            color: #fff;
            box-shadow: 0 18px 40px -10px rgba(15, 90, 73, 0.35);
            position: relative;
            overflow: hidden;
        }
        .bottom-cta::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .bottom-cta h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 750;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .bottom-cta p {
            font-size: 1rem;
            opacity: 0.9;
            max-width: 560px;
            margin: 0 auto 24px;
            position: relative;
            z-index: 1;
        }
        .bottom-cta .btn-cta-large {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            color: var(--green-deep);
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            z-index: 1;
            box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
        }
        .bottom-cta .btn-cta-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
            background: #f0faf6;
        }
        .bottom-cta .cta-sub-links {
            margin-top: 18px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 18px;
            position: relative;
            z-index: 1;
            font-size: 0.9rem;
        }
        .bottom-cta .cta-sub-links a {
            color: #c8e8db;
            text-decoration: none;
            font-weight: 520;
            transition: var(--transition);
        }
        .bottom-cta .cta-sub-links a:hover {
            color: #fff;
            text-decoration: underline;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: #0b241e;
            color: #b0d3c6;
            padding: 44px 0 20px;
            border-top-left-radius: 28px;
            border-top-right-radius: 28px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 28px;
        }
        .footer-content h4 {
            color: #e2f5ec;
            margin-bottom: 10px;
            font-size: 1rem;
        }
        .footer-content p {
            font-size: 0.85rem;
            line-height: 1.6;
        }
        .footer-content a {
            color: #b0d3c6;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-content a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .footer-copyright {
            text-align: center;
            padding-top: 30px;
            font-size: 0.8rem;
            border-top: 1px solid #2d554a;
            margin-top: 18px;
            opacity: 0.75;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 900px) {
            .hero {
                flex-direction: column;
                gap: 24px;
                padding: 32px 0 20px;
            }
            .hero-right {
                flex: unset;
                width: 100%;
            }
            .nav-bar {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                gap: 4px;
                flex-wrap: wrap;
            }
            .nav-links a {
                font-size: 0.85rem;
                padding: 6px 10px;
            }
            .clients-grid {
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            }
            .cap-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero-left h1 {
                font-size: 1.8rem;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 10px;
            }
            .hero-buttons a,
            .hero-buttons button {
                text-align: center;
                justify-content: center;
            }
            .steps-row {
                flex-direction: column;
                align-items: center;
                gap: 16px;
            }
            .step-card {
                max-width: 100%;
                width: 100%;
            }
        }