/* Rolls-Royce Imperial Style - Auto-themed */
:root {
    --pgjf-primary: #0C200E;
    --pgjf-accent: #89ca1c;
    --pgjf-gold: #7fc816;
    --pgjf-gold-light: #f5dd21;
    --pgjf-gold-dark: #c8b40a;
    --pgjf-bg: #F5F3FF;
    --pgjf-bg-dark: #0a0a0a;
    --pgjf-bg-gradient: linear-gradient(135deg, #131518 0%, #0f0f0f 50%, #102321 100%);
    --pgjf-text: #0C200E;
    --pgjf-text-light: #641fd7;
    --pgjf-border: #c5b0f5;
    --pgjf-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --pgjf-shadow-hover: rgba(0, 0, 0, 0.25);
    --pgjf-shadow-gold: rgba(245,214,10,0.3);
    --pgjf-success: #25aa46;
    --pgjf-danger: #e43e41;
    --pgjf-overlay: rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--pgjf-text);
    background: var(--pgjf-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(245,217,10,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(195,161,98,0.03) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    background-attachment: fixed;
    font-size: 16px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(245,216,10,0.01) 2px, rgba(245,214,10,0.01) 4px);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.pgjf-container {
    max-width:100%;
    margin: 0 auto;
    padding: 0 24px;
}

/* Price Ticker */
.pgjf-ticker {
    background: linear-gradient(135deg, #0a0a0a 0%, #1f1d15 50%, #0a0a0a 100%);
    color: #ffffff;
    padding: 19px 0;
    border-bottom: 1px solid rgba(245,220,10,0.2);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pgjf-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pgjf-gold), transparent);
    animation: pgjf-shimmer 3s infinite;
}

@keyframes pgjf-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.pgjf-ticker-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    flex-wrap: wrap;
    padding: 0 21px;
}

.pgjf-ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    padding: 11px 14px;
    border-radius: 9px;
    transition: all 0.3s;
    position: relative;
}

.pgjf-ticker-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245,207,10,0.1);
    border-radius: 11px;
    opacity: 0;
    transition: opacity 0.3s;
}

.pgjf-ticker-item:hover::before {
    opacity: 1;
}

.pgjf-ticker-item:hover {
    transform: translateY(-2px);
}

.pgjf-ticker-metal {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.pgjf-ticker-price {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pgjf-gold), var(--pgjf-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(245,214,10,0.5);
    position: relative;
}

.pgjf-ticker-change {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pgjf-ticker-change svg {
    width: 15px;
    height: 12px;
    flex-shrink: 0;
}

.pgjf-ticker-change--up {
    color: var(--pgjf-success);
}

.pgjf-ticker-change--down {
    color: var(--pgjf-danger);
}

.pgjf-ticker-separator {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

.pgjf-ticker-update {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pgjf-ticker-live {
    width: 9px;
    height: 8px;
    background: var(--pgjf-success);
    border-radius: 50%;
    display: inline-block;
    animation: pgjf-pulse 2s infinite;
}

@keyframes pgjf-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Header */
.pgjf-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-bottom: 2px solid var(--pgjf-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(22px) saturate(180%);
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.pgjf-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--pgjf-gold), transparent);
}

.pgjf-header-container {
    max-width:100%;
    margin: 0 auto;
    padding: 16px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pgjf-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: var(--pgjf-primary);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.6px;
}

.pgjf-logo-icon {
    width: 37px;
    height: 40px;
    background: linear-gradient(135deg, var(--pgjf-gold) 0%, var(--pgjf-gold-light) 50%, var(--pgjf-gold-dark) 100%);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pgjf-primary);
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 4px 15px var(--pgjf-shadow-gold);
    position: relative;
    overflow: hidden;
}

.pgjf-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: pgjf-rotate 3s infinite;
}

@keyframes pgjf-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pgjf-logo-text {
    font-weight: 600;
}

.pgjf-nav {
    display: flex;
    gap: 31px;
    align-items: center;
}

.pgjf-nav-link {
    color: var(--pgjf-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 5px 16px;
    border-radius: 11px;
}

.pgjf-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245,218,10,0.1), rgba(194,162,98,0.05));
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.pgjf-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--pgjf-gold), transparent);
    border-radius: 3px;
    transition: transform 0.4s;
}

.pgjf-nav-link:hover {
    color: var(--pgjf-gold);
    transform: translateY(-2px);
}

.pgjf-nav-link:hover::before {
    opacity: 1;
}

.pgjf-nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.pgjf-nav-link--active {
    color: var(--pgjf-gold);
    background: linear-gradient(135deg, rgba(245,222,10,0.15), rgba(196,165,103,0.1));
    box-shadow: 0 2px 10px rgba(245,209,10,0.2);
}

.pgjf-nav-link--active::after {
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, transparent, var(--pgjf-gold), var(--pgjf-gold-light), var(--pgjf-gold), transparent);
    height: 3px;
}

.pgjf-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.pgjf-menu-toggle.active .pgjf-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.pgjf-menu-toggle.active .pgjf-menu-line:nth-child(2) {
    opacity: 0;
}

.pgjf-menu-toggle.active .pgjf-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.pgjf-menu-line {
    width: 24px;
    height: 2px;
    background: var(--pgjf-primary);
    transition: all 0.3s ease;
}

.pgjf-mobile-nav {
    display: none;
    flex-direction: column;
    padding: 23px 22px;
    background: var(--pgjf-bg);
    border-top: 1px solid var(--pgjf-border);
}

.pgjf-mobile-nav.active {
    display: flex;
}

.pgjf-mobile-link {
    padding: 15px 0;
    color: var(--pgjf-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--pgjf-border);
}

.pgjf-mobile-link:last-child {
    border-bottom: none;
}

/* Hero Section */
.pgjf-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #131518 30%, #0f0f0f 50%, #142123 70%, #0a0a0a 100%);
    color: #ffffff;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pgjf-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(245,215,10,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(207,162,96,0.1) 0%, transparent 50%);
    animation: pgjf-pulse 4s ease-in-out infinite;
}

.pgjf-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(245,222,10,0.03) 100px,
        rgba(245,212,10,0.03) 200px
    );
    animation: pgjf-drift 20s linear infinite;
}

@keyframes pgjf-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes pgjf-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.pgjf-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 26px;
    position: relative;
    z-index: 2;
}

.pgjf-hero-badge {
    display: inline-block;
    padding: 9px 28px;
    background: linear-gradient(135deg, rgba(245,210,10,0.2) 0%, rgba(203,169,94,0.15) 100%);
    border: 2px solid rgba(245,213,10,0.4);
    border-radius: 48px;
    font-size: 14px;
    font-weight: 700;
    color: var(--pgjf-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 31px;
    box-shadow: 0 5px 17px rgba(245,219,10,0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.pgjf-hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: pgjf-shine 3s infinite;
}

@keyframes pgjf-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.pgjf-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 22px 0;
    color: #ffffff;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 4px 20px rgba(245,213,10,0.3),
        0 0 40px rgba(245,219,10,0.1);
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, var(--pgjf-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pgjf-title-glow 3s ease-in-out infinite;
}

@keyframes pgjf-title-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

.pgjf-hero-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 43px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pgjf-hero-actions {
    display: flex;
    gap: 17px;
    justify-content: center;
    flex-wrap: wrap;
}

.pgjf-btn {
    display: inline-flex;
    align-items: center;
    padding: 19px 31px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pgjf-btn-primary {
    background: linear-gradient(135deg, var(--pgjf-gold) 0%, var(--pgjf-gold-light) 50%, var(--pgjf-gold-dark) 100%);
    color: var(--pgjf-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(245,210,10,0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pgjf-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.pgjf-btn-primary:hover::before {
    left: 100%;
}

.pgjf-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245,220,10,0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.pgjf-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.pgjf-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.pgjf-btn-secondary:hover::before {
    left: 100%;
}

.pgjf-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Rating Section */
.pgjf-rating-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 38px 0;
    border-top: 3px solid rgba(245,207,10,0.2);
    border-bottom: 2px solid rgba(245,221,10,0.2);
    position: relative;
    overflow: hidden;
}

.pgjf-rating-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(245,211,10,0.02) 50px, rgba(245,220,10,0.02) 51px);
    pointer-events: none;
}

.pgjf-rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.8);
    padding: 23px 38px;
    border-radius: 51px;
    box-shadow: 0 11px 29px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(245,211,10,0.2);
    position: relative;
    z-index: 1;
}

.pgjf-rating-label {
    font-size: 14px;
    color: var(--pgjf-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.pgjf-stars {
    display: flex;
    gap: 3px;
}

.pgjf-star {
    font-size: 21px;
    color: #deded9;
}

.pgjf-star--filled {
    color: var(--pgjf-gold);
    text-shadow: 0 0 10px rgba(245,209,10,0.5);
    animation: pgjf-star-twinkle 2s ease-in-out infinite;
}

@keyframes pgjf-star-twinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.pgjf-rating-number {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pgjf-primary), var(--pgjf-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding: 0 10px;
}

.pgjf-rating-number::before,
.pgjf-rating-number::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pgjf-gold), transparent);
}

.pgjf-rating-number::before {
    left: -30px;
}

.pgjf-rating-number::after {
    right: -30px;
}

.pgjf-rating-reviews {
    font-size: 14px;
    color: var(--pgjf-text-light);
}

/* Section Dividers */
.pgjf-section-divider {
    height: 100px;
    position: relative;
    margin: 79px 0;
    overflow: hidden;
}

.pgjf-section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(245,215,10,0.2) 20%, 
        var(--pgjf-gold) 50%, 
        rgba(245,208,10,0.2) 80%, 
        transparent
    );
    transform: translateY(-50%);
}

.pgjf-section-divider::after {
    content: '●';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pgjf-gold), var(--pgjf-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--pgjf-primary);
    box-shadow: 
        0 0 30px rgba(245,222,10,0.5),
        inset 0 2px 5px rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Main Content */
.pgjf-main {
    padding: 62px 0;
    position: relative;
}

.pgjf-article {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.pgjf-article::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        transparent, 
        var(--pgjf-gold) 10%, 
        var(--pgjf-gold-light) 50%, 
        var(--pgjf-gold) 90%, 
        transparent
    );
    border-radius: 1px;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .pgjf-article::before {
        display: none;
    }
}

.pgjf-intro {
    margin-bottom: 53px;
    padding: 29px;
    background: linear-gradient(135deg, rgba(245,215,10,0.05) 0%, rgba(197,167,100,0.03) 100%);
    border-radius: 18px;
    border-left: 4px solid var(--pgjf-gold);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
}

.pgjf-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(245,210,10,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.pgjf-lead {
    font-size: 21px;
    line-height: 1.8;
    color: var(--pgjf-text);
    margin-bottom: 26px;
    font-weight: 500;
    position: relative;
    padding-left: 17px;
}

.pgjf-lead::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    font-family: 'Playfair Display', serif;
    color: var(--pgjf-gold);
    opacity: 0.3;
    line-height: 1;
}

.pgjf-article h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pgjf-primary) 0%, var(--pgjf-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 61px 0 33px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 19px;
}

.pgjf-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--pgjf-gold), var(--pgjf-gold-light), transparent);
    border-radius: 2px;
}

.pgjf-article h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--pgjf-primary);
    margin: 38px 0 21px 0;
}

.pgjf-article p {
    margin-bottom: 27px;
    line-height: 1.9;
    color: var(--pgjf-text);
    position: relative;
    padding-left: 19px;
}

.pgjf-article p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--pgjf-gold);
    border-radius: 50%;
    box-shadow: 0 0 13px rgba(245,216,10,0.5);
    opacity: 0.6;
}

.pgjf-article p:first-of-type::before {
    display: none;
}

.pgjf-list,
.pgjf-list-ordered {
    margin: 28px 0;
    padding-left: 33px;
    position: relative;
}

.pgjf-list::before,
.pgjf-list-ordered::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--pgjf-gold), var(--pgjf-gold-light), var(--pgjf-gold-dark));
    border-radius: 1px;
}

.pgjf-list li,
.pgjf-list-ordered li {
    margin-bottom: 18px;
    line-height: 1.8;
    color: var(--pgjf-text);
    padding-left: 9px;
    position: relative;
    transition: all 0.3s;
}

.pgjf-list li::marker {
    color: var(--pgjf-gold);
    font-weight: 700;
}

.pgjf-list li:hover,
.pgjf-list-ordered li:hover {
    color: var(--pgjf-primary);
    transform: translateX(5px);
}

.pgjf-list-ordered {
    list-style: decimal;
}

.pgjf-image-wrapper {
    margin: 53px 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 
        0 15px 50px var(--pgjf-shadow),
        0 8px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    border: 3px solid rgba(245,217,10,0.2);
}

.pgjf-image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--pgjf-gold), var(--pgjf-gold-light), var(--pgjf-gold-dark), var(--pgjf-gold));
    border-radius: 19px;
    z-index: -1;
    opacity: 0.3;
    animation: pgjf-border-glow 3s ease-in-out infinite;
}

@keyframes pgjf-border-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.pgjf-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.pgjf-image-wrapper:hover .pgjf-article-image {
    transform: scale(1.05);
}

/* Feature Grid */
.pgjf-features {
    margin: 82px 0;
    padding: 67px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 30%, #f8f9fa 70%, #ffffff 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(245,214,10,0.1);
}

.pgjf-features::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245,219,10,0.05) 0%, transparent 70%);
    animation: pgjf-float 8s ease-in-out infinite;
}

.pgjf-features::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201,171,102,0.05) 0%, transparent 70%);
    animation: pgjf-float 10s ease-in-out infinite reverse;
}

@keyframes pgjf-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

.pgjf-features-header {
    text-align: center;
    margin-bottom: 57px;
    position: relative;
    padding-bottom: 30px;
}

.pgjf-features-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--pgjf-gold), var(--pgjf-gold-light), var(--pgjf-gold), transparent);
    border-radius: 3px;
}

.pgjf-features-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--pgjf-primary);
    margin-bottom: 11px;
}

.pgjf-features-subtitle {
    font-size: 17px;
    color: var(--pgjf-text-light);
}

.pgjf-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 33px;
}

.pgjf-feature-card {
    background: linear-gradient(135deg, var(--pgjf-bg) 0%, #fafafa 100%);
    padding: 38px 37px;
    border-radius: 19px;
    box-shadow: 
        0 7px 27px var(--pgjf-shadow),
        0 2px 10px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(245,214,10,0.1);
    position: relative;
    overflow: hidden;
}

.pgjf-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pgjf-gold), var(--pgjf-gold-light), var(--pgjf-gold));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.pgjf-feature-card:hover::before {
    transform: scaleX(1);
}

.pgjf-feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 50px var(--pgjf-shadow-hover),
        0 10px 30px var(--pgjf-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(245,218,10,0.3);
}

.pgjf-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--pgjf-gold) 0%, var(--pgjf-gold-light) 50%, var(--pgjf-gold-dark) 100%);
    border-radius: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 23px;
    color: var(--pgjf-primary);
    box-shadow: 
        0 8px 20px var(--pgjf-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.4s;
}

.pgjf-feature-card:hover .pgjf-feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 
        0 12px 30px var(--pgjf-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.pgjf-feature-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--pgjf-gold-light), var(--pgjf-gold-dark));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.pgjf-feature-card:hover .pgjf-feature-icon::after {
    opacity: 0.3;
}

.pgjf-feature-icon svg {
    width: 28px;
    height: 28px;
}

.pgjf-feature-title {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pgjf-primary), var(--pgjf-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 17px;
    position: relative;
    padding-bottom: 9px;
}

.pgjf-feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--pgjf-gold), transparent);
    border-radius: 2px;
}

.pgjf-feature-desc {
    font-size: 18px;
    color: var(--pgjf-text-light);
    line-height: 1.6;
}

/* Quick Facts Box */
.pgjf-facts-container {
    margin: 48px 0;
}

.pgjf-facts-box {
    background: linear-gradient(135deg, var(--pgjf-bg) 0%, #fafafa 100%);
    border: 3px solid var(--pgjf-gold);
    border-radius: 23px;
    overflow: hidden;
    box-shadow: 
        0 12px 40px var(--pgjf-shadow),
        0 4px 20px var(--pgjf-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
}

.pgjf-facts-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(245,220,10,0.02) 20px, rgba(245,218,10,0.02) 21px);
    pointer-events: none;
}

.pgjf-facts-header {
    background: linear-gradient(135deg, var(--pgjf-gold) 0%, var(--pgjf-gold-light) 50%, var(--pgjf-gold-dark) 100%);
    padding: 27px 37px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    box-shadow: 0 4px 18px rgba(245,208,10,0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pgjf-facts-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.pgjf-facts-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pgjf-primary);
    box-shadow: 
        inset 0 2px 5px rgba(0, 0, 0, 0.2),
        0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pgjf-facts-icon svg {
    width: 24px;
    height: 24px;
}

.pgjf-facts-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--pgjf-primary);
    margin: 0;
}

.pgjf-facts-body {
    padding: 0;
}

.pgjf-fact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 2px solid var(--pgjf-border);
}

.pgjf-fact-row:last-child {
    border-bottom: none;
}

.pgjf-fact-row--highlight {
    background: linear-gradient(90deg, rgba(245,211,10,0.1) 0%, rgba(245,209,10,0.15) 50%, rgba(245,215,10,0.1) 100%);
    border-left: 4px solid var(--pgjf-gold);
    box-shadow: inset 4px 0 10px rgba(245,213,10,0.1);
}

.pgjf-fact-label {
    font-size: 15px;
    color: var(--pgjf-text-light);
    font-weight: 500;
}

.pgjf-fact-value {
    font-size: 17px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pgjf-primary), var(--pgjf-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: right;
    position: relative;
}

.pgjf-fact-row--highlight .pgjf-fact-value {
    background: linear-gradient(135deg, var(--pgjf-gold), var(--pgjf-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pgjf-fact-value--negative {
    color: #d5364e;
}

.pgjf-facts-footer {
    padding: 21px 30px;
    background: rgba(245,222,10,0.1);
}

.pgjf-facts-cta {
    display: block;
    width: 100%;
    padding: 19px;
    background: linear-gradient(135deg, var(--pgjf-gold) 0%, var(--pgjf-gold-light) 50%, var(--pgjf-gold-dark) 100%);
    color: var(--pgjf-primary);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.4s;
    box-shadow: 
        0 6px 20px rgba(245,212,10,0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.pgjf-facts-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.pgjf-facts-cta:hover::before {
    left: 100%;
}

.pgjf-facts-cta:hover {
    background: linear-gradient(135deg, var(--pgjf-gold-light) 0%, var(--pgjf-gold) 50%, var(--pgjf-gold-dark) 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(245,213,10,0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* FAQ Section */
.pgjf-faq-section {
    margin: 61px 0;
}

.pgjf-faq-header {
    text-align: center;
    margin-bottom: 63px;
    position: relative;
    padding-bottom: 29px;
}

.pgjf-faq-header::before {
    content: '❓';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    opacity: 0.1;
    filter: blur(2px);
}

.pgjf-faq-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--pgjf-gold), var(--pgjf-gold-light), var(--pgjf-gold), transparent);
    border-radius: 3px;
}

.pgjf-faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--pgjf-primary);
    margin-bottom: 11px;
}

.pgjf-faq-subtitle {
    font-size: 19px;
    color: var(--pgjf-text-light);
}

.pgjf-faq-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.pgjf-faq-item {
    background: linear-gradient(135deg, var(--pgjf-bg) 0%, #fafafa 100%);
    border: 2px solid var(--pgjf-border);
    border-radius: 19px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.pgjf-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--pgjf-gold), var(--pgjf-gold-dark));
    transform: scaleY(0);
    transition: transform 0.4s;
}

.pgjf-faq-item:hover {
    border-color: rgba(245,210,10,0.5);
    box-shadow: 
        0 8px 25px var(--pgjf-shadow),
        0 0 0 1px rgba(245,216,10,0.1);
    transform: translateX(4px);
}

.pgjf-faq-item:hover::before,
.pgjf-faq-item.active::before {
    transform: scaleY(1);
}

.pgjf-faq-item.active {
    border-color: var(--pgjf-gold);
    box-shadow: 
        0 12px 35px var(--pgjf-shadow),
        0 4px 20px var(--pgjf-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.pgjf-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 21px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.pgjf-faq-question:hover {
    background: rgba(245,219,10,0.05);
}

.pgjf-faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--pgjf-primary);
    line-height: 1.4;
}

.pgjf-faq-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245,217,10,0.15), rgba(203,161,92,0.1));
    border-radius: 50%;
    color: var(--pgjf-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(245,216,10,0.2);
    border: 1px solid rgba(245,214,10,0.2);
}

.pgjf-faq-item.active .pgjf-faq-icon {
    transform: rotate(180deg) scale(1.1);
    background: linear-gradient(135deg, var(--pgjf-gold), var(--pgjf-gold-light));
    color: var(--pgjf-primary);
    box-shadow: 
        0 4px 15px var(--pgjf-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pgjf-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.pgjf-faq-item.active .pgjf-faq-answer {
    max-height: 1000px;
}

.pgjf-faq-answer-content {
    padding: 0 31px 27px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--pgjf-text);
}

.pgjf-faq-answer-content p {
    margin-bottom: 14px;
}

/* Footer */
.pgjf-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1b1b16 50%, #0a0a0a 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 77px 0 40px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.pgjf-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--pgjf-gold), transparent);
}

.pgjf-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(245,207,10,0.02) 100px, rgba(245,221,10,0.02) 101px);
    animation: pgjf-drift 30s linear infinite;
}

.pgjf-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 47px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    padding-bottom: 43px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pgjf-footer-grid::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pgjf-gold), transparent);
}

.pgjf-footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
}

.pgjf-footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.pgjf-footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 19px;
}

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

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

.pgjf-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 23px;
    display: inline-block;
}

.pgjf-footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    color: var(--pgjf-gold);
}

.pgjf-footer-links a:hover {
    color: var(--pgjf-gold);
    transform: translateX(5px);
}

.pgjf-footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.pgjf-footer-bottom {
    padding-top: 27px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Comparison Table */
.pgjf-comparison-section {
    margin: 58px 0;
}

.pgjf-comparison-table {
    overflow-x: auto;
    margin-top: 31px;
}

.pgjf-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: linear-gradient(135deg, var(--pgjf-bg) 0%, #fafafa 100%);
    border-radius: 19px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px var(--pgjf-shadow),
        0 4px 20px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(245,218,10,0.1);
}

.pgjf-table thead {
    background: linear-gradient(135deg, #0a0a0a 0%, #151b10 50%, #0a0a0a 100%);
    color: #ffffff;
    position: relative;
}

.pgjf-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pgjf-gold), transparent);
}

.pgjf-table th {
    padding: 23px 23px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.pgjf-table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pgjf-gold), transparent);
    opacity: 0.5;
}

.pgjf-table tbody tr {
    border-bottom: 1px solid var(--pgjf-border);
    transition: all 0.3s ease;
    position: relative;
}

.pgjf-table tbody tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--pgjf-gold), var(--pgjf-gold-dark));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.pgjf-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(245,208,10,0.05) 0%, #f8f9fa 10%, #f8f9fa 90%, rgba(245,222,10,0.05) 100%);
    box-shadow: inset 0 0 20px rgba(245,211,10,0.05);
}

.pgjf-table tbody tr:hover::before {
    transform: scaleX(1);
}

.pgjf-table tbody tr:last-child {
    border-bottom: none;
}

.pgjf-table td {
    padding: 23px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--pgjf-text);
}

.pgjf-table td small {
    display: block;
    color: var(--pgjf-text-light);
    font-size: 12px;
    margin-top: 3px;
}

.pgjf-badge {
    display: inline-block;
    padding: 4px 15px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.pgjf-badge--yes {
    background: linear-gradient(135deg, rgba(36,161,70,0.15), rgba(37,167,62,0.1));
    color: var(--pgjf-success);
    border: 1px solid rgba(38,160,75,0.3);
    box-shadow: 0 2px 8px rgba(39,174,67,0.2);
}

.pgjf-badge--no {
    background: linear-gradient(135deg, rgba(212,50,76,0.15), rgba(213,47,68,0.1));
    color: var(--pgjf-danger);
    border: 1px solid rgba(214,53,73,0.3);
    box-shadow: 0 2px 8px rgba(215,51,65,0.2);
}

/* Benefits Section */
.pgjf-benefits-section {
    margin: 81px 0;
    padding: 73px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 30%, #f8f9fa 70%, #ffffff 100%);
    border-radius: 23px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(245,216,10,0.15);
}

.pgjf-benefits-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245,213,10,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pgjf-rotate-slow 20s linear infinite;
}

.pgjf-benefits-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(202,173,100,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pgjf-rotate-slow 25s linear infinite reverse;
}

@keyframes pgjf-rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pgjf-benefits-header {
    text-align: center;
    margin-bottom: 51px;
}

.pgjf-benefits-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--pgjf-primary);
    margin-bottom: 15px;
}

.pgjf-benefits-header p {
    font-size: 17px;
    color: var(--pgjf-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.pgjf-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 43px;
    padding: 0 28px;
}

.pgjf-benefit-item {
    background: linear-gradient(135deg, var(--pgjf-bg) 0%, #fafafa 100%);
    padding: 46px 41px;
    border-radius: 17px;
    box-shadow: 
        0 12px 27px var(--pgjf-shadow),
        0 4px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid rgba(245,216,10,0.1);
    overflow: hidden;
    z-index: 1;
}

.pgjf-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pgjf-gold), var(--pgjf-gold-light), var(--pgjf-gold));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.pgjf-benefit-item:hover::before {
    transform: scaleX(1);
}

.pgjf-benefit-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 20px 60px var(--pgjf-shadow-hover),
        0 10px 40px var(--pgjf-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(245,219,10,0.4);
}

.pgjf-benefit-number {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(245,217,10,0.2), rgba(193,161,96,0.15));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 27px;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 30px rgba(245,221,10,0.3);
    position: relative;
    display: inline-block;
}

.pgjf-benefit-item:hover .pgjf-benefit-number {
    animation: pgjf-number-glow 1s ease-in-out infinite;
}

@keyframes pgjf-number-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.pgjf-benefit-item h3 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pgjf-primary), var(--pgjf-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 13px;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-bottom: 12px;
}

.pgjf-benefit-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--pgjf-gold), var(--pgjf-gold-light), transparent);
    border-radius: 3px;
}

.pgjf-benefit-item p {
    font-size: 18px;
    color: var(--pgjf-text-light);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
/* Decorative Elements */
.pgjf-decorative-coin {
    position: absolute;
    width: 160px;
    height: 120px;
    background: radial-gradient(circle, rgba(245,214,10,0.1) 0%, transparent 70%);
    border-radius: 50%;
    border: 1px solid rgba(245,220,10,0.2);
    pointer-events: none;
    z-index: 0;
}

.pgjf-decorative-coin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 100px;
    border: 2px solid rgba(245,218,10,0.3);
    border-radius: 50%;
}

.pgjf-decorative-coin::after {
    content: '●';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: rgba(245,207,10,0.2);
}

/* Scroll Progress Indicator */
.pgjf-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--pgjf-gold), var(--pgjf-gold-light), var(--pgjf-gold));
    z-index: 9999;
    transition: width 0.1s;
    box-shadow: 0 0 10px rgba(245,221,10,0.5);
}

@media (max-width: 768px) {
    .pgjf-ticker-track {
        gap: 17px;
        font-size: 14px;
    }

    .pgjf-ticker-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .pgjf-ticker-separator {
        display: none;
    }

    .pgjf-table {
        font-size: 12px;
    }

    .pgjf-table th,
    .pgjf-table td {
        padding: 13px;
    }

    .pgjf-benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 23px;
    }

    .pgjf-benefits-header h2 {
        font-size: 28px;
    }
    .pgjf-menu-toggle {
        display: flex;
    }

    .pgjf-nav {
        display: none;
    }

    .pgjf-hero-title {
        font-size: 36px;
    }

    .pgjf-hero-subtitle {
        font-size: 16px;
    }

    .pgjf-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pgjf-btn {
        width: 100%;
        justify-content: center;
    }

    .pgjf-article h2 {
        font-size: 28px;
    }

    .pgjf-features-grid {
        grid-template-columns: 1fr;
        padding: 0 23px;
    }

    .pgjf-features-title,
    .pgjf-faq-title {
        font-size: 28px;
    }

    .pgjf-faq-question {
        padding: 21px;
    }

    .pgjf-faq-answer-content {
        padding: 0 23px 19px;
    }

    .pgjf-fact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pgjf-fact-value {
        text-align: left;
    }
}


/* ==================
   Company Logo Styles (110px height)
   ================== */
.fb-company-logo {
    width: 240px;
    height: 165px;
    object-fit: contain;
    background: var(--fb-white);
    border-radius: var(--fb-radius-sm);
    padding: 6px;
    margin-bottom: 9px;
    border: 2px solid var(--fb-gray-200);
}

.fb-company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ==================
   Action Buttons (Go + Review)
   ================== */
.fb-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.fb-btn-primary {
    display: inline-block;
    padding: 12px 21px;
    background: var(--fb-secondary);
    color: var(--fb-dark);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-primary:hover {
    background: var(--fb-secondary-dark);
    color: var(--fb-dark);
    transform: translateY(-1px);
}

.fb-btn-review {
    display: inline-block;
    padding: 8px 25px;
    background: transparent;
    color: var(--fb-primary);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 2px solid var(--fb-primary);
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-review:hover {
    background: var(--fb-primary);
    color: var(--fb-white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fb-company-logo {
        width: 160px;
        height: 100px;
    }

    .fb-action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fb-btn-primary,
    .fb-btn-review {
        padding: 11px 14px;
        font-size: 14px;
    }
}
/* ==================
   UNIVERSAL MOBILE FIX - Company Logos & Table Adaptivity
   Applied to all sites
   ================== */
@media (max-width: 768px) {
    /* Universal logo selectors */
    [class*='company-logo'],
    [class*='CompanyLogo'],
    [class*='company_logo'],
    img[class*='logo'][class*='company'],
    .company-logo,
    .fb-company-logo,
    .catCompanyLogo,
    .tf-company-card__logo,
    .th-company-logo,
    .op-company-logo,
    .card-logo,
    .review-logo {
        width: 140px !important;
        min-width: 140px !important;
        height: auto !important;
        min-height: 80px !important;
        max-height: 100px !important;
        padding: 11px !important;
        margin: 0 auto 10px !important;
        display: block !important;
        object-fit: contain !important;
    }
    
    /* Center company info/cards */
    [class*='company-info'],
    [class*='CompanyInfo'],
    [class*='company_info'],
    .fb-company-info,
    .catCompanyInfo,
    .tf-company-card__info {
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Center company name */
    [class*='company-name'],
    [class*='CompanyName'],
    .catCompanyName,
    .tf-company-card__name {
        text-align: center !important;
    }
    
    /* Center rating/stars */
    [class*='rating'],
    [class*='Rating'],
    [class*='stars'],
    [class*='Stars'],
    .catRating,
    .catStars {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Buttons full width */
    [class*='action-btn'],
    [class*='ActionBtn'],
    [class*='btn-cta'],
    [class*='btn-primary'],
    [class*='btn-review'],
    .catBtnCta,
    .catBtnReview,
    .fb-btn-primary,
    .fb-btn-review,
    .tf-btn-primary,
    .tf-btn-outline {
        display: block !important;
        width: 100% !important;
        padding: 13px 23px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }
    
    /* Site logo bigger */
    [class*='site-logo'] img,
    [class*='SiteLogo'] img,
    .catLogo__icon,
    .tf-logo__icon,
    .th-logo__icon,
    header [class*='logo'] img {
        min-width: 45px !important;
        min-height: 45px !important;
    }
}


/* Max width 1400px for desktop */
.pgjf-wrapper, .pgjf-content, .pgjf-hero-inner, .pgjf-companies-container, 
.pgjf-article, .pgjf-container, .pgjf-footer-inner, .pgjf-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.pgjf-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.pgjf-td-action {
    text-align: center !important;
}
.pgjf-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 11px !important;
}
