/* =============================== 
   GLOBAL
================================ */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #0f172a;
    color: #e5e7eb;
}

a {
    text-decoration: none;
    color: inherit;
}



/* ===============================
   NAVBAR
================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #020617;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.logo {
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo-img {
    width: 280px;
    height: 80px;
    border-radius: 10px;
    object-fit: contain;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: #e5e7eb;
}

.nav-links .btn {
    background: #22c55e;
    padding: 6px 14px;
    border-radius: 5px;
    color: #020617;
    font-weight: bold;
}

/* HAMBURGER MENU */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #22c55e;
    margin: 4px 0;
    border-radius: 3px;
}

/* ===============================
   MOBILE NAVBAR
================================ */
@media (max-width: 900px) {

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 20px;
        background: #020617;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 12px;
        width: 220px;
        display: none;
        box-shadow: 0 0 20px rgba(34,197,94,0.25);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
    }
}


/* ===============================
   CONTAINER & FORMS
================================ */
.container {
    padding: 40px;
}

.form {
    max-width: 400px;
}

.form input,
.form button {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border: none;
}


/* ===============================
   REGISTER FORM
================================ */

.register-form {
    max-width: 700px;
    margin: auto;
    background: #020617;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(34,197,94,0.25);
}

.register-form input,
.register-form select,
.register-form textarea {
    width: 100%;
    min-height: 42px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #22c55e40;
    background: #0f172a;
    color: #e5e7eb;
    box-sizing: border-box;
}

.register-form input::placeholder,
.register-form textarea::placeholder {
    color: #94a3b8;
}

.register-form input:focus,
.register-form select:focus,
.register-form textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.22);
}

.register-form select option {
    background: #0f172a;
    color: #e5e7eb;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group.full {
    grid-column: span 2;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 12px;
    background: #0f172a;
    border: 1px solid #22c55e40;
    border-radius: 8px;
    color: #e5e7eb;
}

.form-group label {
    position: absolute;
    top: -9px;
    left: 12px;
    font-size: 12px;
    background: #020617;
    padding: 0 6px;
    color: #22c55e;
}

.phone-group {
    display: flex;
    gap: 10px;
}

.phone-group select {
    width: 35%;
}

.phone-group input {
    width: 65%;
}

.password-group {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #22c55e;
}

.btn-primary {
    width: 100%;
    margin-top: 25px;
    padding: 14px;
    background: #22c55e;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    color: #020617;
}

.form-footer {
    text-align: center;
    margin-top: 15px;
}

.form-footer a {
    color: #22c55e;
    font-weight: bold;
}

/* MOBILE */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }
}


/* ===============================
   HERO SECTION
================================ */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
    min-height: 80vh;
}

.hero-left {
    width: 50%;
}

.text-slider {
    font-size: 32px;
    font-weight: bold;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.text-slider span {
    color: #22c55e;
}

.slide {
    opacity: 0;
    transform: translateY(20px);
    transition: 1s;
    position: absolute;
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

/* ===============================
   HERO ANIMATION (NO IMAGES)
================================ */

.hero-right {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* AI CORE CONTAINER */
.ai-core {
    position: relative;
    width: 260px;
    height: 260px;
}

/* CENTER CORE */
.core {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #020617;
    font-size: 22px;
    box-shadow: 0 0 40px rgba(34,197,94,0.8);
    animation: pulse 2.5s infinite ease-in-out;
}

/* RINGS */
.ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(34,197,94,0.35);
    animation: spin linear infinite;
}

.ring-1 {
    animation-duration: 14s;
}

.ring-2 {
    inset: 25px;
    animation-duration: 10s;
    animation-direction: reverse;
}

.ring-3 {
    inset: 50px;
    animation-duration: 6s;
}

/* ANIMATIONS */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 20px rgba(34,197,94,0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 60px rgba(34,197,94,1);
        transform: scale(1.08);
    }
    100% {
        box-shadow: 0 0 20px rgba(34,197,94,0.6);
        transform: scale(1);
    }
}


/* ===============================
   HERO LIVE TRADING CHART
================================ */

/* SVG CHART */
.chart {
    position: absolute;
    top: -40px;
    left: -30px;
    width: 320px;
    height: 140px;
    z-index: 1;
}

.chart-line {
    fill: none;
    stroke: #22c55e;
    stroke-width: 3;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawLine 5s infinite ease-in-out;
    filter: drop-shadow(0 0 8px #22c55e);
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 600;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    70% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -600;
        opacity: 0;
    }
}

/* ===============================
   FLOATING CRYPTO TICKERS
================================ */

.ticker {
    position: absolute;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    background: #020617;
    border: 1px solid #22c55e60;
    color: #22c55e;
    animation: floatTicker 6s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(34,197,94,0.4);
    z-index: 2;
}

/* INDIVIDUAL POSITIONS */
.ticker.btc {
    top: 20px;
    left: -30px;
    animation-delay: 0s;
}

.ticker.eth {
    bottom: 15px;
    right: -20px;
    animation-delay: 2s;
}

.ticker.usdt {
    top: 50%;
    right: -40px;
    animation-delay: 4s;
}

/* FLOAT ANIMATION */
@keyframes floatTicker {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-18px) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
}


/* ===============================
   SERVICES
================================ */
.services {
    padding: 70px 40px;
    text-align: center;
    background: #0f172a;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #020617;
    padding: 25px;
    width: 280px;
    border-radius: 12px;
    transition: transform 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-10px);
}

/* ===============================
   INVESTMENT PLANS
================================ */
.plans {
    padding: 80px 40px;
    text-align: center;
    background: #0f172a;
    border-top: 1px solid #22c55e20;
}

.plans .subtitle {
    color: #9ca3af;
    margin-bottom: 40px;
}

.plan-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.plan {
    background: #020617;
    padding: 30px;
    width: 280px;
    border-radius: 15px;
    border: 1px solid #22c55e30;
    transition: transform 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.plan:hover {
    transform: translateY(-10px);
}

.plan h3 {
    color: #22c55e;
}

.plan .amount {
    font-size: 18px;
    margin: 15px 0;
}

.plan .roi {
    font-size: 22px;
    font-weight: bold;
    color: #22c55e;
    margin: 10px 0;
}

.plan ul {
    list-style: none;
    padding: 0;
}

.plan ul li {
    margin: 8px 0;
}

.plan.popular {
    border: 2px solid #22c55e;
    box-shadow: 0 0 25px rgba(34,197,94,0.3);
}

.plan.premium {
    border: 2px solid #16a34a;
    box-shadow: 0 0 30px rgba(34,197,94,0.4);
}

/* ===============================
   SECTION DIVIDER
================================ */
.section-divider {
    height: 90px;
    background: linear-gradient(
        to bottom,
        #0f172a,
        #020617
    );
}

/* ===============================
   GAS PACKAGES
================================ */
.gas {
    padding: 80px 40px;
    background: #020617;
    text-align: center;
}

.gas .subtitle {
    color: #9ca3af;
    margin-bottom: 50px;
}

.gas-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.gas-card {
    background: #0f172a;
    padding: 30px;
    width: 260px;
    border-radius: 15px;
    border: 1px solid #22c55e30;
    transition: transform 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.gas-card:hover {
    transform: translateY(-10px);
}

.gas-card h3 {
    color: #22c55e;
}

.gas-card .price {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
}

.gas-card .limit {
    font-size: 14px;
    color: #9ca3af;
}

.gas-card.popular {
    border: 2px solid #22c55e;
    box-shadow: 0 0 25px rgba(34,197,94,0.3);
}

.gas-card.premium {
    border: 2px solid #16a34a;
    box-shadow: 0 0 35px rgba(34,197,94,0.45);
}

/* GAS INFO BOXES */
.gas-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.info-box {
    background: #0f172a;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #22c55e;
    text-align: left;
    opacity: 1;
    transform: translateY(0);
}

.info-box.warning {
    border-left-color: #f59e0b;
}

/* ===============================
   REFERRALS
================================ */
.referrals {
    padding: 80px 40px;
    background: #020617;
    text-align: center;
    border-top: 1px solid #22c55e30;
}

.referrals .subtitle {
    color: #9ca3af;
    margin-bottom: 40px;
}

.referral-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.ref-card {
    background: #0f172a;
    padding: 30px;
    width: 320px;
    border-radius: 15px;
    border: 1px solid #22c55e30;
    opacity: 1;
    transform: translateY(0);
}

.levels {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.levels li {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
}

/* ===============================
   WHY TREE (WHY US)
================================ */
.why-tree {
    padding: 80px 40px;
    text-align: center;
    background: #0f172a;
}

.tree {
    margin-top: 40px;
}

.tree-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.tree-node {
    background: #020617;
    padding: 18px 25px;
    border-radius: 12px;
    min-width: 200px;
    box-shadow: 0 0 15px rgba(34,197,94,0.2);
    transition: transform 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.tree-node:hover {
    transform: scale(1.05);
}

.tree-node.main {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #020617;
    font-weight: bold;
}

/* ===============================
   FOOTER
================================ */
/* ===============================
   FOOTER
================================ */
.footer {
    margin-top: 120px; /* separates footer from all sections */
    padding: 60px 40px 30px;
    background: #020617;
    font-size: 14px;
    border-top: 2px solid #22c55e30;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    color: #22c55e;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    color: #9ca3af;
}

.footer-column ul li a {
    color: #9ca3af;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #22c55e;
}

/* SOCIAL ICONS */
.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    border-radius: 50%;
    border: 1px solid #22c55e40;
    color: #22c55e;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #22c55e;
    color: #020617;
    box-shadow: 0 0 12px #22c55e;
}

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
    border-top: 1px solid #22c55e20;
    padding-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}


/* ===============================
   FADE-IN ANIMATION CLASS
================================ */
.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.6s ease-out;
}




/* ===============================
   HERO RESPONSIVE FIX
================================ */
@media (max-width: 900px) {

    .hero {
        flex-direction: column;
        padding: 60px 20px;
        min-height: auto;
        text-align: center;
    }

    .hero-left {
        width: 100%;
        margin-bottom: 40px;
    }

    .text-slider {
        font-size: 22px;
        height: auto; /* allow natural height */
    }

    .slide {
        position: relative; /* prevent clipping */
        transform: translateY(0);
        opacity: 0;
    }

    .slide.active {
        opacity: 1;
    }
}



@media (max-width: 480px) {
    .text-slider {
        font-size: 18px;
        line-height: 1.4;
    }
}






/* ===============================
   PHONE LAYOUT POLISH
================================ */
html {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    overflow-x: hidden;
}

@media (max-width: 900px) {
    .navbar {
        min-height: 78px;
        padding: 10px 18px;
        justify-content: center;
    }

    .brand-logo-img {
        width: 150px;
        height: 54px;
    }

    .menu-toggle {
        position: absolute;
        right: 22px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
    }

    .nav-links {
        top: 68px;
        right: 14px;
        left: 14px;
        width: auto;
        max-width: none;
        z-index: 1001;
    }

    .container {
        padding: 0;
    }

    .hero {
        flex-direction: column;
        gap: 24px;
        padding: 42px 18px 56px;
        min-height: 620px;
        overflow: hidden;
    }

    .hero-right {
        order: 1;
        width: 100%;
        min-height: 240px;
    }

    .hero-left {
        order: 2;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .ai-core {
        width: 230px;
        height: 230px;
    }

    .chart {
        left: -22px;
        top: -24px;
        width: 280px;
        height: 118px;
    }

    .text-slider {
        height: 108px;
        font-size: 23px;
        line-height: 1.25;
        text-align: left;
    }

    .slide {
        position: absolute;
        inset: 0 auto auto 0;
        width: 100%;
    }

    .slide.active {
        position: absolute;
    }

    .services,
    .why-tree,
    .plans,
    .gas,
    .referrals {
        padding: 58px 18px;
    }

    .service-cards,
    .plan-cards,
    .gas-cards,
    .referral-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        justify-items: center;
    }

    .card,
    .plan,
    .gas-card,
    .ref-card {
        width: min(100%, 330px);
    }

    .gas-info {
        grid-template-columns: 1fr;
    }

    .footer {
        margin-top: 40px;
        padding: 44px 18px 28px;
    }
}

@media (max-width: 480px) {
    .navbar {
        min-height: 74px;
    }

    .brand-logo-img {
        width: 128px;
        height: 46px;
    }

    .hero {
        padding-top: 34px;
        min-height: 600px;
    }

    .ai-core {
        width: 210px;
        height: 210px;
    }

    .core {
        width: 78px;
        height: 78px;
        font-size: 20px;
    }

    .text-slider {
        font-size: 21px;
        height: 112px;
    }
}

.package-levels {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.package-levels li {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 9px;
    border: 1px solid #22c55e30;
    border-radius: 8px;
    background: rgba(34, 197, 94, 0.06);
    color: #d1fae5;
    font-size: 13px;
}

.home-icon {
    display: inline-block;
    margin-right: 6px;
    color: #22c55e;
    font-style: normal;
    line-height: 1;
}
/* ===============================
   PREMIUM HOME PACKAGE SECTIONS
================================ */
.package-showcase {
    position: relative;
    padding: 92px 7vw 78px;
    background:
        radial-gradient(circle at 50% 12%, rgba(34, 197, 94, 0.12), transparent 32%),
        radial-gradient(circle at 10% 80%, rgba(34, 197, 94, 0.08), transparent 30%),
        #071122;
    color: #f8fafc;
    overflow: hidden;
}

.package-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.28;
    pointer-events: none;
}

.package-showcase > * {
    position: relative;
    z-index: 1;
}

.showcase-badge {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 9px 22px;
    border: 1px solid rgba(74, 222, 128, 0.75);
    border-radius: 999px;
    color: #6ee781;
    background: rgba(2, 6, 23, 0.72);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.showcase-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

.showcase-heading span {
    width: min(180px, 18vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.8), transparent);
    position: relative;
}

.showcase-heading span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px;
    width: 9px;
    height: 9px;
    border: 2px solid #6ee781;
    transform: translateY(-50%) rotate(45deg);
    background: #071122;
}

.showcase-heading span:first-child::after {
    left: -5px;
    right: auto;
}

.showcase-heading h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.showcase-heading h2 strong {
    color: #42d66e;
}

.package-showcase .subtitle {
    color: #cbd5e1;
    text-align: center;
    font-size: 19px;
    margin: 14px 0 44px;
}

.premium-package-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    align-items: stretch;
}

.premium-package-card {
    position: relative;
    min-height: 520px;
    padding: 44px 36px 32px;
    border: 1px solid rgba(74, 222, 128, 0.55);
    border-radius: 18px;
    background:
        radial-gradient(circle at 50% 0%, rgba(74, 222, 128, 0.14), transparent 30%),
        linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
    box-shadow: inset 0 0 36px rgba(148, 163, 184, 0.05), 0 24px 55px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.premium-package-card::after {
    content: "";
    position: absolute;
    top: 24px;
    right: 24px;
    width: 86px;
    height: 86px;
    background-image: radial-gradient(rgba(74, 222, 128, 0.28) 1px, transparent 1px);
    background-size: 11px 11px;
    opacity: 0.42;
}

.premium-package-card.is-popular {
    border-color: #4ade80;
    box-shadow: 0 0 28px rgba(74, 222, 128, 0.42), inset 0 0 45px rgba(74, 222, 128, 0.08);
}

.premium-package-card.is-gold {
    border-color: rgba(251, 191, 36, 0.8);
    box-shadow: inset 0 0 34px rgba(251, 191, 36, 0.06), 0 24px 55px rgba(0, 0, 0, 0.35);
}

.corner-ribbon {
    position: absolute;
    top: 18px;
    right: -42px;
    width: 178px;
    padding: 10px 0;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #9af06a, #22c55e);
    color: #06120b;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 3;
}

.package-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(74, 222, 128, 0.75);
    background: radial-gradient(circle, rgba(74, 222, 128, 0.28), rgba(15, 23, 42, 0.86));
    color: #6ee781;
    font-size: 34px;
    box-shadow: 0 0 24px rgba(74, 222, 128, 0.2);
}

.is-gold .package-icon {
    border-color: rgba(251, 191, 36, 0.9);
    color: #fbbf24;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.26), rgba(15, 23, 42, 0.86));
}

.premium-package-card h3 {
    margin: 0 0 16px;
    color: #36e079;
    font-size: 23px;
    text-align: center;
    text-transform: uppercase;
}

.is-gold h3,
.is-gold .package-roi,
.is-gold .package-action {
    color: #fbbf24;
}

.package-range,
.gas-price {
    margin: 0;
    color: #f8fafc;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

.gas-price {
    font-size: 36px;
}

.package-range span,
.gas-price span {
    color: #cbd5e1;
    font-size: 18px;
    font-weight: 700;
}

.package-note {
    margin: 8px 0 22px;
    color: #cbd5e1;
    text-align: center;
    font-size: 17px;
}

.package-roi {
    margin: 36px 0 30px;
    padding-top: 28px;
    border-top: 1px dashed rgba(74, 222, 128, 0.45);
    color: #4ade80;
    font-size: 46px;
    font-weight: 900;
    line-height: 0.95;
    text-align: center;
}

.package-roi span {
    display: block;
    margin-top: 8px;
    color: #cbd5e1;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.package-lines,
.gas-levels-list {
    margin-top: auto;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    padding-top: 22px;
}

.package-lines div,
.gas-levels-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    color: #f8fafc;
    font-size: 16px;
}

.package-lines span,
.gas-levels-list span {
    color: #e2e8f0;
}

.package-lines strong,
.gas-levels-list strong {
    white-space: nowrap;
}

.secured-chip {
    padding: 4px 14px;
    border-radius: 999px;
    color: #67e88a;
    background: rgba(34, 197, 94, 0.22);
    text-transform: uppercase;
    font-size: 13px;
}

.package-action {
    margin-top: 28px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 2px solid currentColor;
    border-radius: 9px;
    color: #4ade80;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.package-action:hover,
.is-popular .package-action {
    background: linear-gradient(135deg, #98f66f, #22c55e);
    color: #06120b;
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.26);
}

.package-action:hover {
    transform: translateY(-2px);
}

.package-benefits {
    max-width: 1320px;
    margin: 34px auto 0;
    padding: 22px 28px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.72);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.package-benefits div {
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 16px;
    align-items: center;
}

.package-benefits span {
    grid-row: span 2;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(34, 197, 94, 0.16);
    color: #5ee374;
    font-size: 28px;
}

.package-benefits strong {
    font-size: 16px;
}

.package-benefits p {
    margin: 5px 0 0;
    color: #cbd5e1;
    line-height: 1.45;
}

.gas-showcase {
    background:
        radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.1), transparent 30%),
        radial-gradient(circle at 88% 50%, rgba(251, 191, 36, 0.08), transparent 28%),
        #071122;
}

.gas-levels-list {
    margin-top: 26px;
}

.gas-levels-list div {
    max-width: 310px;
    margin: 0 auto;
}

.gas-levels-list span::first-letter {
    color: #4ade80;
}

.premium-info-grid {
    max-width: 1320px;
    margin: 34px auto 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-info-grid .info-box {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 10px 18px;
    padding: 22px;
    border-left: 0;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.76);
}

.premium-info-grid .info-box strong {
    align-self: end;
    font-size: 18px;
}

.premium-info-grid .home-icon {
    grid-row: span 2;
    width: 70px;
    height: 70px;
    margin-right: 0;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid rgba(74, 222, 128, 0.7);
    background: rgba(34, 197, 94, 0.1);
    font-size: 34px;
}

.premium-info-grid .info-box p {
    grid-column: 2;
    margin: 0;
    color: #d1d5db;
    line-height: 1.55;
}

@media (max-width: 1100px) {
    .premium-package-grid,
    .package-benefits,
    .premium-info-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .premium-package-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .package-showcase {
        padding: 66px 18px 56px;
    }

    .showcase-heading {
        gap: 12px;
    }

    .showcase-heading span {
        width: 44px;
    }

    .showcase-heading h2 {
        font-size: 32px;
    }

    .package-showcase .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .premium-package-grid {
        gap: 22px;
    }

    .premium-package-card {
        padding: 34px 22px 26px;
    }

    .package-roi {
        font-size: 40px;
    }

    .package-benefits {
        padding: 18px;
    }

    .package-benefits div {
        grid-template-columns: 52px 1fr;
    }

    .package-benefits span {
        width: 48px;
        height: 48px;
        font-size: 23px;
    }

    .premium-info-grid .info-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .premium-info-grid .home-icon,
    .premium-info-grid .info-box p {
        grid-column: 1;
        margin: 0 auto;
    }
}