.gn-pricing-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.gn-pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.gn-card-header {
    position: relative;
    padding: 40px 30px 35px;
    border-radius: 24px 24px 0 0;
    text-align: center;
}
.gn-card-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: inherit;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}
.gn-header-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}
.gn-icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}
.gn-icon-wrap i {
    font-size: 24px;
    color: #fff;
}
.gn-plan-name {
    display: block;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.gn-price-display {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
}
.gn-price-amount {
    font-size: 58px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.gn-price-currency {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
}
.gn-price-period {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.gn-card-body {
    padding: 35px 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gn-delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f0f4ff, #e8ecff);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #5b4bba;
    margin-bottom: 22px;
    align-self: flex-start;
}
.gn-delivery-badge i {
    font-size: 16px;
}
.gn-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex: 1;
}
.gn-feature-list li {
    display: flex;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px dashed #eee;
}
.gn-feature-list li:last-child {
    border-bottom: none;
}
.gn-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 14px;
    flex-shrink: 0;
}
.gn-text {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: #444;
}
.gn-toggle-btn {
    background: none;
    border: none;
    color: #724ebf;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 5px 10px;
}
.gn-toggle-btn:hover {
    color: #5a3ca5;
}
.gn-buy-btn {
    display: block;
    text-align: center;
    padding: 16px 30px;
    background: linear-gradient(135deg, #A249ED 0%, #6135D7 100%);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(162, 73, 237, 0.35);
}
.gn-buy-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 35px rgba(162, 73, 237, 0.45);
    color: #fff;
}
.content-body h1, .content-body h2, .content-body h3 { font-weight: 700; color: #1a1a1a; margin-top: 1.5rem; margin-bottom: 1rem; }
.content-body p { margin-bottom: 1rem; line-height: 1.7; color: #666; }
.content-body ul { padding-left: 1.5rem; margin-bottom: 1rem; color: #666; }
.content-body li { margin-bottom: 0.5rem; }
.content-body a { color: #724ebf; text-decoration: underline; }
