body {
    font-family: system-ui, sans-serif;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #0d0d2b, #1a1a40);
    color: white;
    padding: 120px 0 80px;
}

.hero-image img {
    border-radius: 12px;
}

/* SECTION SPACING */
.section {
    padding: 80px 0;
}

.section-light {
    padding: 80px 0;
    background: #f8f9fc;
}

/* CTA */
.cta {
    background: #0d0d2b;
    color: white;
    padding: 80px 0;
}

/* FOOTER */
.footer {
    background: #fff;
    color: #000;
    padding: 30px 0;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer li {
    margin-bottom: 8px;
}

/* CARD */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* LOGOS */
.logos span {
    font-weight: 600;
    opacity: 0.7;
}

.custom-navbar {
    background: rgba(10, 10, 30, 0.7);
    backdrop-filter: blur(10px);
}

/* PANEL BASE */
.access-panel {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9999;

    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

/* ACTIVE STATE */
.access-panel.active {
    opacity: 1;
    pointer-events: auto;
}

/* PANEL CONTENT (DESKTOP DEFAULT: RIGHT) */
.access-panel-content {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 400px;
    background: #fff;

    transform: translateX(100%);
    transition: 0.3s ease;

    display: flex;
    flex-direction: column;
}

/* OPEN STATE */
.access-panel.active .access-panel-content {
    transform: translateX(0);
}

/* HEADER */
.panel-header {
    padding: 16px;
    border-bottom: 1px solid #eee;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BODY */
.panel-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

/* MOBILE: BOTTOM SHEET */
@media (max-width: 768px) {
    .access-panel-content {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 75%;
        border-radius: 12px 12px 0 0;

        transform: translateY(100%);
    }

    .access-panel.active .access-panel-content {
        transform: translateY(0);
    }
}

/* PANEL CLOSE BUTTON */
.btn-close-panel {
    border: none;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;

    width: 36px;
    height: 36px;
    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #666;
    transition: all 0.2s ease;
}

/* HOVER */
.btn-close-panel:hover {
    background: rgba(0,0,0,0.05);
    color: #000;
}

/* ACTIVE */
.btn-close-panel:active {
    transform: scale(0.95);
}

/* PRICING CARD BASE */
.pricing-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

    display: flex;
    flex-direction: column;
    transition: 0.25s ease;
}

/* HOVER EFFECT */
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* HEADER */
.pricing-header {
    background: linear-gradient(135deg, #1a1a40, #2a2a70);
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.pricing-header.alt {
    background: linear-gradient(135deg, #444, #222);
}

.pricing-header.alt2 {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.pricing-header h2 {
    margin: 10px 0;
}

/* BODY */
.pricing-body {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* LIST */
.pricing-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-body li {
    margin-bottom: 10px;
    color: #555;
}

/* BUTTON FIX TO BOTTOM */
.pricing-body .btn {
    margin-top: auto;
}

/* ENSURE EQUAL HEIGHT */
.row > .col-md-4 {
    display: flex;
}

/* LOGO IN NAVBAR */
.logo-img {
    height: 32px;
    width: auto;
    display: block;
}