 * {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        body {
            font-family: Arial, sans-serif;
            background: #07111f;
            color: #e5edf8;
            line-height: 1.6
        }

        a {
            text-decoration: none;
            color: inherit
        }

        .container {
            width: min(1180px, 92%);
            margin: auto
        }

        .header {
            position: sticky;
            top: 0;
            z-index: 10;
            background: rgba(7, 17, 31, .92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, .08)
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: #fff
        }

        .logo span {
            color: #38bdf8
        }

        .menu {
            display: flex;
            gap: 22px;
            font-size: 15px;
            color: #cbd5e1
        }

        .btn {
            display: inline-block;
            background: #38bdf8;
            color: #06121f;
            padding: 13px 22px;
            border-radius: 999px;
            font-weight: 700
        }

        .btn.dark {
            background: #111827;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .15)
        }

        .hero {
            padding: 95px 0 80px;
            background: radial-gradient(circle at top right, #0ea5e955, transparent 40%), linear-gradient(135deg, #07111f, #0f172a)
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 50px;
            align-items: center
        }

        .badge {
            display: inline-block;
            background: #0f2a44;
            color: #7dd3fc;
            padding: 8px 14px;
            border-radius: 999px;
            margin-bottom: 20px;
            font-weight: 700
        }

        h1 {
            font-size: 56px;
            line-height: 1.05;
            margin-bottom: 22px;
            color: #fff
        }

        .hero p {
            font-size: 19px;
            color: #cbd5e1;
            margin-bottom: 28px
        }

        .hero-card {
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 26px;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .35)
        }

        .status {
            display: flex;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .08)
        }

        .status strong {
            color: #38bdf8
        }

        .section {
            padding: 80px 0
        }

        .section h2 {
            text-align: center;
            font-size: 40px;
            margin-bottom: 16px;
            color: #fff
        }

        .section .lead {
            text-align: center;
            color: #cbd5e1;
            max-width: 780px;
            margin: 0 auto 45px
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px
        }

        .card {
            background: #0f172a;
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 22px;
            padding: 28px
        }

        .card h3 {
            font-size: 23px;
            margin-bottom: 12px;
            color: #fff
        }

        .card p,
        .card li {
            color: #cbd5e1
        }

        .card ul {
            padding-left: 20px;
            margin-top: 15px
        }

        .price {
            font-size: 42px;
            font-weight: 900;
            color: #38bdf8;
            margin: 18px 0
        }

        .price small {
            font-size: 15px;
            color: #94a3b8
        }

        .feature {
            display: flex;
            gap: 14px;
            margin-bottom: 16px
        }

        .icon {
            width: 38px;
            height: 38px;
            border-radius: 12px;
            background: #082f49;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #38bdf8;
            font-weight: 900
        }

        .cta {
            background: linear-gradient(135deg, #0284c7, #0f172a);
            border-radius: 28px;
            padding: 55px;
            text-align: center
        }

        .cta h2 {
            font-size: 38px
        }

        .footer {
            padding: 35px 0;
            border-top: 1px solid rgba(255, 255, 255, .08);
            color: #94a3b8;
            text-align: center
        }

        @media(max-width:850px) {

            .hero-grid,
            .grid {
                grid-template-columns: 1fr
            }

            h1 {
                font-size: 40px
            }

            .menu {
                display: none
            }
        }

        .lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-menu {
  display: none;
  position: absolute;
  background: #111;
  min-width: 120px;
  border-radius: 8px;
  overflow: hidden;
  z-index: 9999;
}

.lang-dropdown:hover .lang-menu {
  display: block;
}

.lang-menu a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
}

.lang-menu a:hover {
  background: #222;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    color: inherit;
}

.logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.logo strong {
    color: #ffcc00;
}

.hamburger {
    display: none;
    background: transparent;
    border: 0;
    color: inherit;
    font-size: 30px;
    cursor: pointer;
}

.mobile-panel-btn {
    display: none;
}

.lang-dropdown {
    position: relative;
}

.lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111827;
    min-width: 120px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 9999;
}

.lang-dropdown:hover .lang-menu {
    display: block;
}

.lang-menu a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
}

.lang-menu a:hover {
    background: #1f2937;
}

.contact-form {
    max-width: 620px;
    margin: 25px auto 0;
    display: grid;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
}

.form-success {
    margin: 20px auto;
    max-width: 620px;
    padding: 14px;
    border-radius: 12px;
    background: #d1fae5;
    color: #065f46;
}

.form-error {
    margin: 20px auto;
    max-width: 620px;
    padding: 14px;
    border-radius: 12px;
    background: #fee2e2;
    color: #991b1b;
}

.plan-card > div[id^="paypal"] {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .desktop-panel-btn {
        display: none;
    }

    .mobile-panel-btn {
        display: inline-flex;
        justify-content: center;
        margin-top: 10px;
    }

    .nav {
        position: relative;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f172a;
        padding: 20px;
        flex-direction: column;
        gap: 14px;
        border-radius: 0 0 18px 18px;
        z-index: 9999;
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        color: #fff;
    }

    .lang-menu {
        position: static;
        margin-top: 8px;
        display: block;
        background: #1e293b;
    }
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 300px;
    height: auto;
    max-height: 75px;
    object-fit: contain;
    display: block;
}

.logo span {
    display: none;
}

@media (max-width: 768px) {
    .logo img {
        width: 145px;
        max-height: 60px;
    }
}