/* GlobeTier Core Layout */
.gt-pricing-system {
    background-color: #ffffff !important;
    padding: 60px 0;
    direction: inherit;
}

.gt-header h2 {
    font-weight: 800;
    color: #0a1128;
    margin-bottom: 10px;
}

.gt-header p {
    color: #6b7280;
    margin-bottom: 50px;
}

/* Professional Card Styling */
.gt-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 30px 20px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
}

.gt-card:hover {
    transform: translateY(-10px);
    border-color: #ff8c00;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.gt-card.featured {
    border-color: #ff8c00;
    background: #fff;
}

/* Card Header */
.gt-icon-box {
    width: 48px;
    height: 48px;
    background: #fff8f2;
    color: #ff8c00;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.gt-title small {
    display: block;
    color: #9ca3af;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.gt-title h3 {
    margin: 5px 0 20px;
    font-weight: 800;
    color: #111;
}

/* Pricing Section */
.gt-price-area {
    background: #f9fafb;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #f3f4f6;
    position: relative;
}

.gt-price-area del {
    color: #9ca3af;
    font-size: 14px;
    display: block;
}

.gt-main-price {
    font-size: 26px;
    font-weight: 800;
    color: #ff8c00;
}

.gt-main-price span {
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
}

.gt-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffedd5;
    color: #ff8c00;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 5px;
}

/* Features List */
.gt-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    flex-grow: 1;
}

.gt-features li {
    font-size: 14px;
    padding: 8px 0;
    color: #374151;
    border-bottom: 1px solid #f9fafb;
    display: flex;
    align-items: center;
}

.gt-features li i {
    color: #10b981;
    margin-right: 10px;
    font-size: 16px;
}

/* Panel Logos */
.gt-panel-logos {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.gt-logo-item {
    flex: 1;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gt-logo-item img {
    height: 14px;
    filter: grayscale(1);
}

.gt-card:hover .gt-logo-item img {
    filter: grayscale(0);
}

/* Primary Button */
.gt-btn {
    display: block;
    background: #ff8c00;
    color: #ffffff !important;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none !important;
    transition: 0.3s ease;
}

.gt-btn:hover {
    background: #e67e00;
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(255, 140, 0, 0.4);
}

.gt-gift-tag {
    text-align: center;
    color: #ff8c00;
    font-size: 12px;
    font-weight: 700;
    margin-top: 15px;
    padding: 5px;
    background: #fffaf5;
    border-radius: 6px;
}

/* Responsive Mobile Fixes */
@media (max-width: 767px) {
    .gt-pricing-system { padding: 40px 15px; }
    .gt-card { margin-bottom: 20px; padding: 25px 15px; }
    .gt-header h2 { font-size: 22px; }
}