

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    /*background-color: var(--bg-dark);*/
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}


/* 🌐 TOP NAVIGATION BAR STYLES */
.top-nav {
    width: 100%;
    background: rgba(10, 15, 30, 0.5); /* Sleek dark backdrop transparent layer */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(2, 136, 209, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* AUTH BUTTON (LOGGED OUT) */
.nav-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(2, 136, 209, 0.2), rgba(0, 176, 255, 0.1));
    border: 1px solid rgba(2, 136, 209, 0.4);
    color: #38BDF8;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.nav-login-btn:hover {
    background: rgba(2, 136, 209, 0.3);
    border-color: rgba(0, 176, 255, 0.8);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}
.nav-login-btn .btn-arrow {
    transition: transform 0.2s ease;
}
.nav-login-btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* PROFILE DROPDOWN (LOGGED IN) */
.profile-dropdown {
    position: relative;
    display: inline-block;
}
.profile-trigger {
    background: rgba(2, 136, 209, 0.05);
    border: 1px solid rgba(2, 136, 209, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.profile-trigger:hover {
    border-color: rgba(2, 136, 209, 0.5);
    background: rgba(2, 136, 209, 0.1);
}
.profile-avatar {
    width: 26px;
    height: 26px;
    background: #38BDF8;
    color: #0a0f1e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}
.dropdown-chevron {
    color: #38BDF8;
    transition: transform 0.2s ease;
}
.profile-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

/* DROPDOWN MENU PANEL */

.dropdown-menu {
    /*display: none;*/
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    width: 200px;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(2, 136, 209, 0.25);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 1010;

    visibility: hidden;
    opacity: 0;
    /* Transition both properties, but delay visibility by 1 second */
    transition: visibility 0s 1s, opacity 1s;
}
.profile-dropdown:hover .dropdown-menu {
    /*display: block;*/
    visibility: visible;
    opacity: 1;
    /* Remove the 1-second delay so it opens instantly on hover */
    transition-delay: 0s;
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}
.dropdown-item:hover {
    background: rgba(2, 136, 209, 0.1);
    color: #38BDF8;
}
.dropdown-item .item-dot {
    width: 4px;
    height: 4px;
    background: transparent;
    border-radius: 50%;
    transition: all 0.2s ease;
}
.dropdown-item:hover .item-dot {
    background: #38BDF8;
    box-shadow: 0 0 6px #38BDF8;
}
.dropdown-divider {
    height: 1px;
    background: rgba(2, 136, 209, 0.15);
    margin: 4px 0;
}
.dropdown-item.logout-btn {
    color: #f87171;
}
.dropdown-item.logout-btn:hover {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
}
.dropdown-item.logout-btn:hover .logout-dot {
    background: #f87171;
    box-shadow: 0 0 6px #f87171;
}

/* 📱 SCREEN RESPONSIVENESS FIXES */
@media (max-width: 480px) {
    /* Hide the minor badge on small screens to save valuable header space */
    .nav-container {
        padding: 12px 10px;
    }

    /* Slightly scale down the heroic banner typography so it doesn't break sentences awkwardly */
    h1 {
        font-size: 2.4rem;
    }

    .lead-text {
        font-size: 1.05rem;
        padding: 0 10px;
    }
}




/* 🚀 HEADER & HERO AREA PANELS */
header {
    text-align: center;
    padding: 50px 0 30px;
    position: relative;
}
.logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(2, 136, 209, 0.08);
    border: 1px solid rgba(2, 136, 209, 0.3);
    color: #38BDF8;
    /*padding: 6px 18px;*/
    border-radius: 30px;
    /*font-size: 0.8rem;*/
    font-weight: 700;
    letter-spacing: 1px;
    /*margin-bottom: 24px;*/
    /*text-transform: uppercase;*/
    animation: pulseBorder 2s infinite alternate;

    margin-bottom: 0;
    padding: 4px 12px;
    font-size: 0.75rem;
}
@keyframes pulseBorder {
    0% {
        border-color: rgba(2, 136, 209, 0.3);
    }
    100% {
        border-color: rgba(0, 176, 255, 0.8);
        box-shadow: 0 0 12px var(--primary-glow);
    }
}
.logo-badge-dot {
    width: 6px;
    height: 6px;
    background-color: #38BDF8;
    border-radius: 50%;
    box-shadow: 0 0 8px #38BDF8;
}
h1 {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 20px;
}
h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lead-text {
    color: var(--text-muted);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Balanced Hero Section Layout split evenly */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
}
@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.terminal-window {
    background-color: #04060F;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.7), 0 0 40px rgba(2,136,209,0.08);
    font-family: 'Fira Code', monospace;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 410px;
    transition: border-color 0.3s;
}


@media(max-width: 768px) {
    .terminal-window {
        height: auto;
    }
}
.terminal-window:hover {
    border-color: var(--primary);
}
.terminal-header {
    background-color: #0A0D1A;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}
.terminal-title {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Three Window Dots (Green, Yellow, Red) with Custom Terminal Glows */
.terminal-dots {
    display: flex;
    gap: 8px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.green {
    background-color: #10B981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}
.dot.yellow {
    background-color: #F59E0B;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}
.dot.red {
    background-color: #EF4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.terminal-body {
    padding: 24px;
    font-size: 0.9rem;
    color: #E2E8F0;
    flex-grow: 1;
    overflow-y: auto;
}
.cmd-line {
    color: #38BDF8;
    margin-bottom: 16px;
    font-weight: 500;
}
.typing-text {
    color: #FFF;
    border-right: 2px solid var(--primary);
    white-space: nowrap;
    animation: typing 3.5s steps(25, end) infinite, blink 0.6s step-end infinite alternate;
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
}
@keyframes typing {
    0%, 90%, 100% {
        width: 0;
    }
    35%, 85% {
        width: 195px;
    }
}
@keyframes blink {
    50% {
        border-color: transparent;
    }
}
.output-block {
    margin-top: 16px;
    color: #94A3B8;
    line-height: 1.7;
}
.text-green {
    color: #10B981;
    font-weight: 600;
}
.text-cyan {
    color: #38BDF8;
    font-weight: 600;
}
.log-stream {
    margin-top: 20px;
    border-top: 1px dashed var(--border-color);
    padding-top: 16px;
}
.log-line {
    animation: fadeInLog 7s infinite linear;
    opacity: 0;
    margin-bottom: 6px;
    font-size: 0.85rem;
}
@keyframes fadeInLog {
    0%, 12% {
        opacity: 0;
        transform: translateY(6px);
    }
    18%, 88% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
    }
}
.glass-card {
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    height: 410px;
}


@media(max-width: 768px) {
    .glass-card {
        height: auto;
    }
}

.card-heading {
    font-size: 1.4rem;
    font-weight: 700;
    /*margin-bottom: 24px;*/
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}
.card-heading svg {
    color: var(--primary);
}
.download-container-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 24px;
}
@media(min-width: 480px) {
    .download-container-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.action-dl-link {
    background-color: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease-in-out;
}
.action-dl-link:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -5px rgba(2,136,209,0.3);
}
.action-dl-link .platform-name {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 3px;
}
.action-dl-link .platform-details {
    font-size: 0.8rem;
    color: var(--text-muted);
    z-index: 2;
}
.curl-box {
    background-color: #04060F;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    margin-bottom: 15px;
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
}

/* 📊 REAL-TIME METRICS VISITOR STATS SECTION */
.metrics-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 20px;
}
.metric-card {
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform 0.25s, border-color 0.25s;
}
.metric-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}
.metric-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFF;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}
.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* GRAPHICAL WORKFLOW DIAGRAM ARCHITECTURE */
.process-section {
    margin-top: 50px;
    background: linear-gradient(180deg, var(--surface-dark) 0%, #060917 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 45px;
    position: relative;
}
.diagram-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
    position: relative;
}
@media(min-width: 768px) {
    .diagram-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
.diagram-node {
    flex: 1;
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 26px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}
.diagram-node:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(2, 136, 209, 0.15);
}
.icon-box {
    width: 54px;
    height: 54px;
    background: rgba(2, 136, 209, 0.1);
    border: 1px solid var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #38BDF8;
    position: relative;
    overflow: hidden;
}
.diagram-node h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.diagram-node p {
    font-size: 0.88rem;
    color: var(--text-muted);
}
.diagram-pipe {
    display: none;
    flex-grow: 1;
    height: 4px;
    background: var(--border-color);
    position: relative;
    overflow: hidden;
}
@media(min-width: 768px) {
    .diagram-pipe {
        display: block;
    }
}
.diagram-pipe::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #00B0FF, transparent);
    animation: pipeFlow 2.5s infinite linear;
}
@keyframes pipeFlow {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}
/* 🛠️ UPGRADED 2-COLUMN RECIPES GRID SYSTEM DESIGN LAYOUT */
.recipe-section {
    margin-top: 60px;
}
.recipe-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
}
@media (min-width: 900px) {
    .recipe-grid-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px){
    .recipe-grid-container {
        width: 100%;
        display: block;
    }
}

.recipe-modern-card {
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.recipe-modern-card:hover {
    border-color: rgba(2, 136, 209, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}
.recipe-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.os-badge {
    background-color: rgba(2, 136, 209, 0.08);
    border: 1px solid rgba(2, 136, 209, 0.25);
    color: #38BDF8;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.terminal-code-area {
    background-color: #04060F;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    overflow-x: auto;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    min-height: 250px;
}
.code-lines-wrapper {
    margin-bottom: 54px;
}
.comment-str {
    color: #4B5E7D;
    display: block;
    margin-bottom: 6px;
    font-style: italic;
    overflow-wrap: anywhere;
}
.comment-str:not(:first-child) {
    margin-top: 14px;
}
.code-str {
    color: #E2E8F0;
    display: block;
    overflow-wrap: anywhere;
}

/* 🟢 MATRIX GLOWING GREEN EMBEDDED BUTTONS (BOTTOM RIGHT) */
.terminal-action-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.terminal-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4), 0 0 10px rgba(16, 185, 129, 0.2);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

footer {
    margin-top: 100px;
    border-top: 1px solid var(--border-color);
    background-color: #03050C;
    padding: 70px 0 40px;
    font-size: 0.9rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
@media(min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr;
    }
}
.footer-brand h2 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.footer-brand h2 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-brand p {
    color: var(--text-muted);
    max-width: 330px;
    font-size: 0.88rem;
}
.footer-links h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}
.footer-links ul li a:hover {
    color: #38BDF8;
}
.footer-bottom {
    border-top: 1px solid #141D36;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
@media(min-width: 480px) {
    .footer-bottom {
        flex-direction: row;
    }
}
.footer-bottom p {
    color: #4B5E7D;
    font-size: 0.82rem;
}
.text-white{
    color: white;
}


/* DASHBOARD */

.dashboard-main {
    max-width: 1200px;
    margin: 40px auto;
}
.welcome-header {
    margin-bottom: 32px;
}
.welcome-header h2 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
}
.cyber-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}
.card-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #38BDF8;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-detail-group {
    margin-bottom: 18px;
}
.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.badge-pro {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: var(--color-warning);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}
.upgrade-btn {
    width: 100%;
    background: var(--primary-gradient);
    color: #060913;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 14px;
}

.token-container {
    background: #05070f;
    border: 1px solid rgba(2, 136, 209, 0.2);
    border-radius: 6px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.token-wrapper {
    font-family: monospace;
    color: #A7F3D0;
    overflow-wrap: anywhere;
    margin-right: 10px;
}
.token-toggle-btn {
    background: rgba(2, 136, 209, 0.15);
    border: 1px solid rgba(2, 136, 209, 0.4);
    color: #38BDF8;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.live-status-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 24px;
}
.pulse-indicator {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-success);
}
.stats-subgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.stat-box {
    background: rgba(5, 7, 15, 0.4);
    border: 1px solid rgba(2, 136, 209, 0.1);
    border-radius: 8px;
    padding: 16px;
}

.stat-box.white-border {
    border-left: 3px solid #FFFFFF;
}
.stat-box.success-border {
    border-left: 3px solid var(--color-success);
}
.stat-box.error-border {
    border-left: 3px solid var(--color-error);
}
.stat-num {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 4px;
}

.terminal-block {
    background: #02040a;
    border: 1px solid #1f293d;
    border-radius: 6px;
    padding: 14px;
    font-family: monospace;
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
}

/* 📱 SCREEN RESPONSIVENESS FIXES */
@media (max-width: 480px) {
    /* Slightly scale down the heroic banner typography so it doesn't break sentences awkwardly */
    h1 {
        font-size: 2.4rem;
    }

    .lead-text {
        font-size: 1.05rem;
        padding: 0 10px;
    }
    .stats-subgrid {
        grid-template-columns: 1fr;
    }

    .grid-layout {
        display: block;
    }
}

/* DASHBOARD */



/* PACKAGE */

.pricing-main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 24px;
    text-align: center;
}
.page-title {
    margin-bottom: 40px;
}
.page-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.page-title h2 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-title p {
    color: var(--text-muted);
    margin-top: 6px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
    align-items: stretch;
}
.package-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 32px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.package-card:hover {
    border-color: rgba(2, 136, 209, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: #060913;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px var(--primary-glow);
}

.tier-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.tier-price {
    margin: 20px 0;
}
.price-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: #38BDF8;
}
.price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 24px 0;
    border-top: 1px solid rgba(2, 136, 209, 0.15);
    padding-top: 24px;
}
.feature-item {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.feature-item .check-icon {
    color: var(--color-success);
    font-weight: bold;
    font-size: 1.1rem;
}

.action-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(2, 136, 209, 0.4);
    background: rgba(2, 136, 209, 0.08);
    color: #38BDF8;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: block;
    margin-top: auto;
    transition: all 0.2s;
}
.action-btn:hover {
    background: var(--primary-gradient);
    color: #060913;
    border-color: transparent;
    box-shadow: 0 0 15px var(--primary-glow);
}
.action-btn.active-tier {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--color-success);
    color: var(--color-success);
    cursor: default;
}
.action-btn.active-tier:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    box-shadow: none;
}

@media (max-width: 960px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

/* PACKAGE */