﻿* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #0b1120;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    transition: all 0.25s ease;
}

main {
    display: block;
}

/* Header */
.gpl-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 12, 24, 0.70);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}

.gpl-header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 18px 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gpl-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.gpl-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1f2937, #0f172a);
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    color: #d4af37;
}

    .gpl-mark svg {
        width: 24px;
        height: 24px;
    }

.gpl-logo-text {
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 20px;
    color: #ffffff;
}

    .gpl-logo-text span {
        color: #d4af37;
    }

.gpl-nav-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}

.gpl-nav {
    display: flex;
    align-items: center;
}

    .gpl-nav a {
        color: #e5e7eb;
        margin-left: 26px;
        text-decoration: none;
        font-size: 14px;
        position: relative;
    }

        .gpl-nav a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 1px;
            background: #d4af37;
            transition: width 0.25s ease;
        }

        .gpl-nav a:hover::after {
            width: 100%;
        }

.gpl-nav-cta {
    padding: 12px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #d4af37, #b38b22);
    color: #111827;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.22);
}

    .gpl-nav-cta:hover {
        color: #111827;
        transform: translateY(-2px);
    }

.gpl-mobile-menu {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.14);
    background: rgba(255, 255, 255, 0.03);
    padding: 0;
    cursor: pointer;
}

    .gpl-mobile-menu span {
        display: block;
        width: 18px;
        height: 2px;
        margin: 4px auto;
        background: #ffffff;
        transition: all 0.25s ease;
    }

    .gpl-mobile-menu.open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .gpl-mobile-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .gpl-mobile-menu.open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

.gpl-mobile-nav {
    display: none;
    padding: 0 18px 18px;
    background: rgba(8, 12, 24, 0.94);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}

    .gpl-mobile-nav.open {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .gpl-mobile-nav a {
        text-decoration: none;
        color: #e5e7eb;
        padding: 12px 0;
    }

.gpl-mobile-nav-cta {
    margin-top: 6px;
    padding: 14px 16px !important;
    border-radius: 14px;
    background: linear-gradient(135deg, #d4af37, #b38b22);
    color: #111827 !important;
    font-weight: 800;
    text-align: center;
}

/* Shared */
.gpl-gridline {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.22), transparent);
}

.gpl-section-light {
    background: #f8fafc;
    color: #0f172a;
    padding: 100px 44px;
}

.gpl-section-alt {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    color: #0f172a;
    padding: 100px 44px;
}

.gpl-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.gpl-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f8f3de;
    color: #8b6a16;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.gpl-title h2 {
    font-size: 52px;
    letter-spacing: -1.4px;
    margin: 0 0 12px;
}

.gpl-title p {
    color: #64748b;
    font-size: 18px;
    margin: 0;
}

/* Hero */
.gpl-hero {
    background: radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.12), transparent 22%), radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.05), transparent 18%), linear-gradient(180deg, #090d18, #111827);
    position: relative;
    overflow: hidden;
}

    .gpl-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
        pointer-events: none;
    }

.gpl-hero-content {
    max-width: 1440px;
    margin: 0 auto;
    min-height: 92vh;
    padding: 100px 44px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.gpl-badge {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.06);
    font-size: 13px;
    letter-spacing: 0.4px;
    color: #f5deb3;
    animation: gplFadeUp 0.8s ease both;
}

.gpl-hero h1 {
    font-size: 84px;
    line-height: 0.95;
    letter-spacing: -3px;
    margin: 18px 0;
    animation: gplFadeUp 0.95s ease both;
}

.gpl-gradient-text {
    background: linear-gradient(135deg, #ffffff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gpl-hero p {
    font-size: 20px;
    color: #d1d5db;
    line-height: 1.8;
    max-width: 640px;
    margin: 0;
    animation: gplFadeUp 1.1s ease both;
}

.gpl-buttons {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: gplFadeUp 1.2s ease both;
}

.gpl-btn-primary,
.gpl-btn-ghost {
    display: inline-block;
    padding: 16px 26px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.gpl-btn-primary {
    background: linear-gradient(135deg, #d4af37, #b38b22);
    color: #111827;
    box-shadow: 0 16px 38px rgba(212, 175, 55, 0.25);
}

    .gpl-btn-primary:hover {
        color: #111827;
        transform: translateY(-2px) scale(1.01);
    }

.gpl-btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
}

    .gpl-btn-ghost:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.07);
        transform: translateY(-2px);
    }

.gpl-dark-ghost {
    color: #0f172a;
    border-color: #cbd5e1;
    background: #ffffff;
}

    .gpl-dark-ghost:hover {
        color: #0f172a;
        background: #f8fafc;
    }

.gpl-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
    animation: gplFadeUp 1.35s ease both;
}

.gpl-stat {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.12);
    text-align: center;
    backdrop-filter: blur(10px);
}

    .gpl-stat strong {
        display: block;
        font-size: 28px;
        color: #d4af37;
        margin-bottom: 6px;
    }

    .gpl-stat span {
        color: #e5e7eb;
    }

.gpl-hero-visual {
    position: relative;
    min-height: 560px;
    animation: gplFloatIn 1.2s ease both;
}

.gpl-panel {
    position: absolute;
    inset: 0 0 auto 0;
    padding: 20px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.12);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.gpl-metric {
    padding: 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

    .gpl-metric:hover {
        transform: translateY(-4px);
        border-color: rgba(212, 175, 55, 0.24);
    }

    .gpl-metric:last-child {
        margin-bottom: 0;
    }

    .gpl-metric small {
        display: block;
        color: #d4af37;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }

    .gpl-metric strong {
        font-size: 24px;
        color: #ffffff;
    }

.gpl-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.16);
    animation: gplSpin 18s linear infinite;
}

    .gpl-orbit.one {
        width: 430px;
        height: 430px;
        right: 20px;
        top: 70px;
    }

    .gpl-orbit.two {
        width: 520px;
        height: 520px;
        right: -20px;
        top: 20px;
        animation-duration: 26s;
    }

.gpl-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f5deb3, #d4af37 55%, #7c5a12);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

    .gpl-orb.a {
        width: 14px;
        height: 14px;
        right: 120px;
        top: 120px;
    }

    .gpl-orb.b {
        width: 10px;
        height: 10px;
        right: 40px;
        top: 260px;
    }

    .gpl-orb.c {
        width: 18px;
        height: 18px;
        right: 180px;
        top: 420px;
    }

/* Cards / Services */
.gpl-cards {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.gpl-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .gpl-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 48px rgba(15, 23, 42, 0.10);
    }

.gpl-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #d4af37;
    margin-bottom: 16px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
}

    .gpl-icon-wrap svg {
        width: 24px;
        height: 24px;
    }

.gpl-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.gpl-card p {
    margin: 0 0 18px;
    color: #475569;
    line-height: 1.75;
}

.gpl-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.gpl-card li {
    color: #64748b;
    padding: 6px 0;
    border-top: 1px solid #f1f5f9;
}

.gpl-service-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.gpl-service-panel {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

    .gpl-service-panel h3 {
        font-size: 30px;
        letter-spacing: -0.8px;
        margin: 0 0 10px;
    }

    .gpl-service-panel p {
        color: #475569;
        line-height: 1.8;
        margin: 0 0 18px;
    }

    .gpl-service-panel ul {
        list-style: none;
        padding: 0;
        margin: 0 0 24px;
    }

    .gpl-service-panel li {
        padding: 10px 0;
        border-top: 1px solid #f1f5f9;
        color: #475569;
    }

.gpl-service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #8b6a16;
    font-weight: 800;
}

/* Executive band */
.gpl-executive-band {
    background: linear-gradient(135deg, #111827, #1f2937);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 100px 44px;
}

    .gpl-executive-band::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, rgba(212, 175, 55, 0.14), transparent 34%);
    }

.gpl-executive-inner {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
}

    .gpl-executive-inner h2 {
        font-size: 58px;
        margin: 0 0 14px;
        letter-spacing: -1.5px;
    }

    .gpl-executive-inner p {
        margin: 0 auto;
        color: #e5e7eb;
        font-size: 20px;
        max-width: 760px;
        line-height: 1.8;
    }

.gpl-trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.gpl-trust-box {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.12);
    color: #e5e7eb;
}

/* Process */
.gpl-process {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.gpl-step {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
    transition: transform 0.25s ease;
}

    .gpl-step:hover {
        transform: translateY(-5px);
    }

.gpl-step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111827;
    color: #d4af37;
    font-weight: 800;
    margin-bottom: 14px;
}

.gpl-step h3 {
    margin: 0 0 12px;
}

.gpl-step p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

/* Testimonial */
.gpl-testimonial {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
    text-align: center;
    position: relative;
}

    .gpl-testimonial::before {
        content: '“';
        position: absolute;
        top: 10px;
        left: 24px;
        font-size: 82px;
        color: #f8f3de;
        line-height: 1;
    }

    .gpl-testimonial p {
        font-size: 24px;
        line-height: 1.7;
        color: #334155;
        margin: 0 0 14px;
    }

    .gpl-testimonial span {
        color: #64748b;
    }

/* Contact forms */
.gpl-home-contact-wrap,
.gpl-contact-page-wrap {
    max-width: 920px;
    margin: 0 auto;
}

.gpl-home-contact-card,
.gpl-contact-page-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

.gpl-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gpl-form-field {
    margin-bottom: 20px;
    text-align: left;
}

    .gpl-form-field label {
        display: block;
        margin-bottom: 8px;
        font-weight: 700;
        color: #0f172a;
    }

.gpl-form-input,
.gpl-form-textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 16px;
    color: #0f172a;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .gpl-form-input:focus,
    .gpl-form-textarea:focus {
        border-color: #d4af37;
        box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
    }

.gpl-form-textarea {
    resize: vertical;
    min-height: 140px;
}

.gpl-validation {
    display: block;
    margin-top: 6px;
    color: #dc2626;
    font-size: 14px;
}

.gpl-submit-btn {
    min-width: 180px;
}

.gpl-home-contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.gpl-form-alert {
    border-radius: 18px;
    padding: 16px 18px;
    margin-bottom: 22px;
    font-weight: 600;
}

.gpl-form-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.gpl-form-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.gpl-cta {
    text-align: center;
}

/* Footer */
.gpl-footer {
    background: #0b1120;
    color: #94a3b8;
}

.gpl-footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 28px 44px;
    text-align: center;
    font-size: 14px;
}

/* Animations */
@keyframes gplSpin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes gplFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gplFloatIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .gpl-hero-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .gpl-hero h1 {
        font-size: 62px;
    }

    .gpl-hero-visual {
        min-height: 480px;
    }

    .gpl-service-grid {
        grid-template-columns: 1fr;
    }

    .gpl-trust-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .gpl-header-inner {
        padding: 14px 18px;
    }

    .gpl-nav,
    .gpl-nav-cta {
        display: none;
    }

    .gpl-mobile-menu {
        display: block;
    }

    .gpl-mobile-nav {
        display: none;
    }

        .gpl-mobile-nav.open {
            display: flex;
        }

    .gpl-hero-content,
    .gpl-section-light,
    .gpl-section-alt,
    .gpl-executive-band {
        padding-left: 20px;
        padding-right: 20px;
    }

    .gpl-hero-content {
        gap: 34px;
        min-height: auto;
        padding-top: 42px;
    }

    .gpl-hero h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .gpl-hero p,
    .gpl-title p,
    .gpl-executive-inner p {
        font-size: 17px;
    }

    .gpl-title h2,
    .gpl-executive-inner h2 {
        font-size: 34px;
    }

    .gpl-stats,
    .gpl-trust-row,
    .gpl-cards,
    .gpl-process,
    .gpl-form-grid {
        grid-template-columns: 1fr;
    }

    .gpl-panel {
        position: relative;
    }

    .gpl-orbit {
        display: none;
    }

    .gpl-hero-visual {
        min-height: auto;
    }

    .gpl-testimonial {
        padding: 30px 22px;
    }

        .gpl-testimonial p {
            font-size: 20px;
        }

    .gpl-home-contact-card,
    .gpl-contact-page-card {
        padding: 24px;
    }

    .gpl-footer-inner {
        padding: 24px 20px;
    }
}
/* Dashboard Page */

.gpl-dashboard-hero {
    background: linear-gradient(180deg, #0b1120, #111827);
    color: #ffffff;
    padding: 90px 44px;
}

.gpl-dashboard-hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.gpl-dashboard-copy h1 {
    font-size: 64px;
    line-height: 1;
    margin: 16px 0;
    letter-spacing: -2px;
}

.gpl-dashboard-copy p {
    font-size: 20px;
    color: #d1d5db;
    line-height: 1.8;
    max-width: 620px;
}

.gpl-dashboard-bullets {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

    .gpl-dashboard-bullets div {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(212,175,55,0.15);
        padding: 10px 14px;
        border-radius: 999px;
        color: #f5deb3;
        font-size: 14px;
    }

.gpl-dashboard-preview {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.30);
}

.gpl-db-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 18px;
}

.gpl-db-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 22px;
}

    .gpl-db-card.large {
        min-height: 170px;
    }

.gpl-db-label {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 10px;
}

.gpl-db-value {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
}

.gpl-db-trend.up {
    margin-top: 10px;
    color: #22c55e;
    font-weight: 700;
}

.gpl-pricing-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.gpl-pricing-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    padding: 34px;
    text-align: center;
    box-shadow: 0 16px 36px rgba(15,23,42,0.07);
}

    .gpl-pricing-card h3 {
        margin-top: 0;
        font-size: 28px;
    }

.gpl-price {
    font-size: 56px;
    font-weight: 800;
    color: #111827;
    margin: 12px 0 24px;
}

.gpl-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.gpl-pricing-card li {
    padding: 10px 0;
    border-top: 1px solid #f1f5f9;
    color: #475569;
}

@media (max-width: 900px) {
    .gpl-dashboard-hero-inner {
        grid-template-columns: 1fr;
    }

    .gpl-dashboard-copy h1 {
        font-size: 44px;
    }
}

/* Dashboard Preview Fix */

.gpl-dashboard-preview {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.30);
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 640px;
}

/* Top KPI Row */
.gpl-db-top-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Middle Panels */
.gpl-db-mid-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

/* Bottom Panels */
.gpl-db-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gpl-db-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 20px;
    min-height: 120px;
}

.gpl-db-chart-card {
    min-height: 280px;
}

.gpl-db-label {
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gpl-db-value {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.gpl-db-trend {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
}

    .gpl-db-trend.up {
        color: #22c55e;
    }

/* Fake Chart */
.gpl-db-bars {
    height: 210px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding-top: 10px;
}

    .gpl-db-bars span {
        flex: 1;
        border-radius: 10px 10px 0 0;
        background: linear-gradient(180deg, #d4af37, #8b6a16);
        min-height: 20px;
        box-shadow: 0 8px 18px rgba(212,175,55,0.20);
    }

/* Row Lists */
.gpl-db-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #d1d5db;
    font-size: 14px;
}

    .gpl-db-list-row:first-of-type {
        border-top: none;
        padding-top: 0;
    }

    .gpl-db-list-row strong {
        color: #ffffff;
        font-size: 15px;
    }

/* Responsive */
@media (max-width: 1200px) {
    .gpl-db-top-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gpl-db-mid-grid {
        grid-template-columns: 1fr;
    }

    .gpl-db-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gpl-db-top-grid {
        grid-template-columns: 1fr;
    }

    .gpl-dashboard-preview {
        min-height: auto;
    }

    .gpl-db-chart-card {
        min-height: 240px;
    }

    .gpl-db-bars {
        height: 170px;
    }
}
/* 6 Chart Dashboard Fix */

.gpl-dashboard-preview {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(212,175,55,.12);
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,.30);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* KPI ROW */
.gpl-db-top-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

/* MAIN 6 CHART GRID */
.gpl-chart-grid-6 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.gpl-chart-box.large {
    grid-row: span 2;
    min-height: 320px;
}

/* LOWER ROW */
.gpl-db-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

/* CARDS */
.gpl-db-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 22px;
    padding: 20px;
    min-height: 180px;
    overflow: hidden;
}

.gpl-db-label {
    color: #94a3b8;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.gpl-db-value {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.gpl-db-trend {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
}

    .gpl-db-trend.up {
        color: #22c55e;
    }

/* SVG CHARTS */
.gpl-svg-line {
    width: 100%;
    height: 220px;
    display: block;
}

/* BAR CHART */
.gpl-mini-bars,
.gpl-db-bars {
    height: 150px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: 10px;
}

    .gpl-mini-bars span,
    .gpl-db-bars span {
        flex: 1;
        min-height: 16px;
        border-radius: 8px 8px 0 0;
        background: linear-gradient(180deg,#d4af37,#8b6a16);
    }

/* DONUT */
.gpl-donut-chart {
    width: 120px;
    height: 120px;
    margin: 10px auto 8px;
    border-radius: 50%;
    background: conic-gradient( #3b82f6 0 40%, #d4af37 40% 75%, #334155 75% 100%);
    position: relative;
}

    .gpl-donut-chart:after {
        content: "";
        position: absolute;
        inset: 22px;
        border-radius: 50%;
        background: #111827;
    }

.gpl-mini-legend {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: #cbd5e1;
    margin-top: 8px;
}

/* RADIAL */
.gpl-radial-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130px;
}

.gpl-radial-chart {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    background: conic-gradient(#d4af37 0 76%, #243041 76% 100%);
    position: relative;
}

    .gpl-radial-chart:before {
        content: "";
        position: absolute;
        inset: 16px;
        border-radius: 50%;
        background: #111827;
    }

.gpl-radial-chart {
    position: relative;
    z-index: 1;
}

/* STACK BARS */
.gpl-stack-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

    .gpl-stack-bars div {
        height: 14px;
        background: #1e293b;
        border-radius: 999px;
        overflow: hidden;
    }

    .gpl-stack-bars span {
        display: block;
        height: 100%;
        background: linear-gradient(90deg,#d4af37,#f5d77a);
        border-radius: 999px;
    }

/* DATA ROWS */
.gpl-db-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,.05);
    color: #d1d5db;
    font-size: 14px;
}

    .gpl-db-list-row:first-of-type {
        border-top: none;
        padding-top: 0;
    }

    .gpl-db-list-row strong {
        color: #fff;
    }

/* LEGEND */
.gpl-legend {
    margin-top: 10px;
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: #cbd5e1;
}

.lg {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

    .lg.blue {
        background: #3b82f6;
    }

    .lg.gold {
        background: #d4af37;
    }

    .lg.dark {
        background: #475569;
    }

/* RESPONSIVE */
@media (max-width:1200px) {
    .gpl-chart-grid-6 {
        grid-template-columns: 1fr 1fr;
    }

    .gpl-chart-box.large {
        grid-row: auto;
    }

    .gpl-db-top-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .gpl-db-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:768px) {
    .gpl-chart-grid-6,
    .gpl-db-top-grid {
        grid-template-columns: 1fr;
    }

    .gpl-db-value {
        font-size: 28px;
    }
}
/* Pricing cards force one row side by side */

.gpl-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 24px;
    align-items: stretch;
}

.gpl-pricing-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .gpl-pricing-card ul {
        flex: 1;
    }

/* keep responsive on smaller screens */
@media (max-width: 992px) {
    .gpl-pricing-grid {
        grid-template-columns: 1fr;
    }
}