/*-- ==================================================
   PERFRIG ABOUT US PAGE - UNIFIED DESIGN SYSTEM
================================================== */

:root {
    /* Core colors - same as the site */
    --ps-primary: #06D7F6;
    --ps-secondary: #00FF9C;
    --ps-accent: #0066FF;
    --ps-dark: #0A0A0C;
    --ps-darker: #05080C;
    --ps-card: #14151A;
    --ps-sidebar: #111318;
    --ps-gray: #9CA3AF;
    --ps-light-gray: #6B7280;
    --ps-border-color: rgba(255, 255, 255, 0.05);
    
    /* Gradients - same as the site */
    --ps-gradient-primary: linear-gradient(135deg, #06D7F6, #0055FF);
    --ps-gradient-secondary: linear-gradient(135deg, #00FF9C, #00E5FF);
    --ps-gradient-bg: linear-gradient(135deg, #0A0A0C, #111318);
    --ps-gradient-card: linear-gradient(135deg, #0A0A0C, #14151A);
    --ps-gradient-text: linear-gradient(90deg, #06D7F6, #00FF9C);
    --ps-gradient-border: linear-gradient(135deg, rgba(6,215,246,.4), rgba(0,255,156,.4), rgba(6,215,246,.4));
    
    /* Typography */
    --ps-font-heading: 'Exo 2', 'Inter', 'Segoe UI', sans-serif;
    --ps-font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
    
    /* Spacing */
    --ps-space-xs: 5px;
    --ps-space-sm: 10px;
    --ps-space-md: 20px;
    --ps-space-lg: 30px;
    --ps-space-xl: 40px;
    --ps-space-2xl: 60px;
    
    /* Border radius */
    --ps-radius-sm: 12px;
    --ps-radius-md: 16px;
    --ps-radius-lg: 22px;
    
    /* Shadows */
    --ps-shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.1);
    --ps-shadow-md: 0 10px 25px rgba(0, 0, 0, 0.2);
    --ps-shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.45);
    --ps-shadow-glow: 0 0 35px rgba(6, 215, 246, 0.25);
    
    /* Transitions */
    --ps-transition-slow: 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==================================================
   BASE STYLES
================================================== */

.ps-about-wrapper {
    background-color: var(--ps-dark);
    color: #ffffff;
    font-family: var(--ps-font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding: var(--ps-space-2xl) 0;
    max-width: 100%;
}

.ps-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ps-space-lg);
}

.ps-about-section {
    margin-bottom: var(--ps-space-2xl);
    position: relative;
}

/* ==================================================
   HEADERS - same design as the rest of the site
================================================== */

.ps-about-header {
    text-align: center;
    margin: var(--ps-space-2xl) 0 var(--ps-space-xl);
    position: relative;
    padding: var(--ps-space-xl) 0;
}

.ps-about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--ps-gradient-primary);
    border-radius: 2px;
}

.ps-about-header h1 {
    font-size: 52px;
    font-weight: 800;
    background: var(--ps-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 15px;
    font-family: var(--ps-font-heading);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.ps-about-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--ps-gradient-primary);
    border-radius: 2px;
    animation: ps-linePulse 3s ease-in-out infinite;
}

@keyframes ps-linePulse {
    0%, 100% { width: 100px; opacity: 1; }
    50% { width: 150px; opacity: 0.8; }
}

.ps-section-title {
    font-size: 36px;
    font-weight: 800;
    margin: var(--ps-space-xl) 0 var(--ps-space-lg);
    background: var(--ps-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--ps-font-heading);
    position: relative;
    display: inline-block;
}

.ps-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--ps-gradient-primary);
    border-radius: 2px;
}

.ps-subsection-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--ps-primary);
    margin: var(--ps-space-lg) 0 var(--ps-space-md);
    font-family: var(--ps-font-heading);
    position: relative;
    display: inline-block;
}

.ps-subsection-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--ps-gradient-primary);
    border-radius: 2px;
}

.ps-small-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--ps-primary);
    margin: var(--ps-space-md) 0 var(--ps-space-sm);
    font-family: var(--ps-font-heading);
}

/* ==================================================
   CARDS - same design as article cards
================================================== */

.ps-about-card {
    background: var(--ps-gradient-card);
    border: 1px solid var(--ps-border-color);
    border-radius: var(--ps-radius-lg);
    padding: var(--ps-space-lg);
    transition: all var(--ps-transition-slow);
    position: relative;
    overflow: hidden;
    margin-bottom: var(--ps-space-lg);
    animation: ps-cardFloat 4s ease-in-out infinite;
}

@keyframes ps-cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.ps-about-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--ps-shadow-lg), var(--ps-shadow-glow);
    border-color: rgba(6, 215, 246, 0.3);
    animation: none;
}

.ps-about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ps-gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ps-about-card:hover::before {
    opacity: 1;
}

.ps-about-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--ps-radius-lg);
    padding: 2px;
    background: var(--ps-gradient-border);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ps-about-card:hover::after {
    opacity: 1;
}

/* ==================================================
   INFO CARD (for simple data)
================================================== */

.ps-info-card {
    background: var(--ps-gradient-card);
    border: 1px solid var(--ps-border-color);
    border-radius: var(--ps-radius-lg);
    padding: var(--ps-space-md) var(--ps-space-lg);
    transition: all var(--ps-transition-slow);
    position: relative;
    overflow: hidden;
}

.ps-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ps-shadow-md);
    border-color: rgba(6, 215, 246, 0.3);
}

.ps-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ps-space-xl);
    margin: var(--ps-space-md) 0;
}

.ps-info-item {
    display: flex;
    flex-direction: column;
}

.ps-info-label {
    font-size: 14px;
    color: var(--ps-gray);
    margin-bottom: var(--ps-space-xs);
}

.ps-info-value {
    font-size: 16px;
    color: white;
    font-weight: 500;
}

/* ==================================================
   TEAM GRID
================================================== */

.ps-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--ps-space-lg);
    margin: var(--ps-space-xl) 0;
}

@media (max-width: 1024px) {
    .ps-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ps-team-grid {
        grid-template-columns: 1fr;
    }
}

.ps-team-card {
    background: var(--ps-gradient-card);
    border: 1px solid var(--ps-border-color);
    border-radius: var(--ps-radius-lg);
    padding: var(--ps-space-lg);
    transition: all var(--ps-transition-slow);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.ps-team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ps-shadow-lg), var(--ps-shadow-glow);
    border-color: rgba(6, 215, 246, 0.3);
}

.ps-team-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ps-primary);
    margin-bottom: var(--ps-space-xs);
    font-family: var(--ps-font-heading);
}

.ps-team-role {
    font-size: 16px;
    color: var(--ps-secondary);
    font-weight: 600;
    margin-bottom: var(--ps-space-md);
    padding-bottom: var(--ps-space-sm);
    border-bottom: 1px solid var(--ps-border-color);
}

.ps-team-covers {
    font-size: 14px;
    color: var(--ps-gray);
    line-height: 1.6;
}

/* ==================================================
   VALUES GRID
================================================== */

.ps-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--ps-space-md);
    margin: var(--ps-space-xl) 0;
}

@media (max-width: 1024px) {
    .ps-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ps-values-grid {
        grid-template-columns: 1fr;
    }
}

.ps-value-item {
    background: var(--ps-gradient-card);
    border: 1px solid var(--ps-border-color);
    border-radius: var(--ps-radius-lg);
    padding: var(--ps-space-lg);
    text-align: center;
    transition: all var(--ps-transition-slow);
    height: 100%;
}

.ps-value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--ps-shadow-md);
    border-color: rgba(6, 215, 246, 0.3);
}

.ps-value-item strong {
    display: block;
    font-size: 18px;
    color: var(--ps-primary);
    margin-bottom: var(--ps-space-xs);
    font-family: var(--ps-font-heading);
}

.ps-value-item span {
    font-size: 14px;
    color: var(--ps-gray);
    line-height: 1.5;
}

/* ==================================================
   CONTACT GRID
================================================== */

.ps-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--ps-space-lg);
    margin: var(--ps-space-xl) 0;
}

@media (max-width: 768px) {
    .ps-contact-grid {
        grid-template-columns: 1fr;
    }
}

.ps-contact-item {
    background: var(--ps-gradient-card);
    border: 1px solid var(--ps-border-color);
    border-radius: var(--ps-radius-lg);
    padding: var(--ps-space-lg);
    transition: all var(--ps-transition-slow);
}

.ps-contact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--ps-shadow-md);
    border-color: rgba(6, 215, 246, 0.3);
}

.ps-contact-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ps-primary);
    margin-bottom: var(--ps-space-sm);
    font-family: var(--ps-font-heading);
}

.ps-contact-item p {
    color: var(--ps-gray);
    margin-bottom: var(--ps-space-xs);
}

.ps-contact-email {
    color: var(--ps-secondary);
    font-weight: 600;
    margin-top: var(--ps-space-sm);
}

/* ==================================================
   DIVIDER
================================================== */

.ps-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 215, 246, 0.3), rgba(0, 255, 156, 0.3), transparent);
    margin: var(--ps-space-2xl) 0;
}

/* ==================================================
   PROMISE BOX
================================================== */

.ps-promise-box {
    background: var(--ps-gradient-primary);
    border-radius: var(--ps-radius-lg);
    padding: var(--ps-space-xl);
    text-align: center;
    margin: var(--ps-space-2xl) 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--ps-shadow-lg);
}

.ps-promise-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: ps-shine 3s ease-in-out infinite;
}

@keyframes ps-shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.ps-promise-box h3 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: var(--ps-space-md);
    font-family: var(--ps-font-heading);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ps-promise-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* ==================================================
   TEXT STYLES
================================================== */

.ps-text-large {
    font-size: 18px;
    color: #e5e7eb;
    margin-bottom: var(--ps-space-md);
}

.ps-text-accent {
    color: var(--ps-primary);
    font-weight: 600;
}

.ps-text-gradient {
    background: var(--ps-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.ps-list {
    list-style: none;
    padding: 0;
}

.ps-list li {
    margin-bottom: var(--ps-space-sm);
    padding-left: var(--ps-space-lg);
    position: relative;
    color: var(--ps-gray);
}

.ps-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ps-primary);
    font-weight: 600;
}

.ps-quote-text {
    font-size: 18px;
    line-height: 1.8;
    color: #e5e7eb;
    font-style: italic;
    border-left: 4px solid var(--ps-primary);
    padding-left: var(--ps-space-lg);
    margin: var(--ps-space-lg) 0;
}

.ps-highlight-text {
    font-size: 18px;
    color: var(--ps-primary);
    font-weight: 600;
    text-align: center;
    margin: var(--ps-space-lg) 0;
}

/* ==================================================
   FOOTER
================================================== */

.ps-about-footer {
    margin-top: var(--ps-space-2xl);
    padding: var(--ps-space-xl) 0;
    border-top: 1px solid var(--ps-border-color);
    text-align: center;
}

.ps-footer-tagline {
    font-size: 20px;
    font-weight: 700;
    background: var(--ps-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: var(--ps-space-md) 0;
}

.ps-footer-small {
    font-size: 14px;
    color: var(--ps-gray);
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1024px) {
    .ps-about-header h1 {
        font-size: 42px;
    }
    
    .ps-section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .ps-about-container {
        padding: 0 var(--ps-space-md);
    }
    
    .ps-about-header h1 {
        font-size: 36px;
    }
    
    .ps-section-title {
        font-size: 28px;
    }
    
    .ps-values-grid,
    .ps-team-grid,
    .ps-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .ps-info-grid {
        flex-direction: column;
        gap: var(--ps-space-md);
    }
}

@media (max-width: 480px) {
    .ps-about-header h1 {
        font-size: 28px;
    }
    
    .ps-section-title {
        font-size: 24px;
    }
    
    .ps-about-card,
    .ps-team-card,
    .ps-value-item,
    .ps-contact-item {
        padding: var(--ps-space-md);
    }
}


/*-- ==================================================  AFFILIATE DISCLOSURE - UNIFIED DESIGN SYSTEM ================================================== */


.perfrig-disclosure-wrapper {
    --primary: #06D7F6;
    --secondary: #00FF9C;
    --dark: #0A0A0C;
    --gray: #9CA3AF;
    --text-light: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    
    background-color: var(--dark);
    color: var(--text-light);
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

.perfrig-disclosure-wrapper * {
    box-sizing: border-box;
}

.perfrig-disclosure-wrapper h1 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.perfrig-disclosure-wrapper h2 {
    font-size: 32px;
    color: var(--primary);
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.perfrig-disclosure-wrapper h3 {
    font-size: 24px;
    color: var(--secondary);
    margin: 25px 0 15px;
}

.perfrig-disclosure-wrapper h4 {
    font-size: 18px;
    color: var(--primary);
    margin: 20px 0 10px;
    font-weight: 600;
}

.perfrig-disclosure-wrapper p {
    margin-bottom: 15px;
    color: var(--text-light);
    opacity: 0.9;
}

.perfrig-disclosure-wrapper ul, 
.perfrig-disclosure-wrapper ol {
    margin: 15px 0 20px;
    padding-left: 30px;
}

.perfrig-disclosure-wrapper li {
    margin-bottom: 8px;
    color: var(--text-light);
    opacity: 0.9;
}

.perfrig-disclosure-wrapper a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary);
    transition: all 0.3s ease;
}

.perfrig-disclosure-wrapper a:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.perfrig-disclosure-wrapper code {
    background: rgba(6, 215, 246, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: var(--secondary);
}

hr.disclosure-divider {
    margin: 40px 0;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.disclosure-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.disclosure-date {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
}

.disclosure-section {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.disclosure-section:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(6, 215, 246, 0.1);
    transform: translateY(-2px);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(6, 215, 246, 0.15), rgba(0, 255, 156, 0.15));
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
}

.example-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed var(--primary);
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    font-family: monospace;
}

.warning-box {
    background: rgba(255, 0, 0, 0.1);
    border-left: 4px solid #ff4444;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
}

.warning-box h3 {
    color: #ff4444;
    margin-top: 0;
    border-bottom: none;
}

.promise-section {
    background: linear-gradient(135deg, rgba(6, 215, 246, 0.2), rgba(0, 255, 156, 0.2));
    border: 2px solid var(--primary);
}

.promise-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
}

.promise-box ul {
    list-style: none;
    padding: 0;
}

.promise-box li {
    margin-bottom: 15px;
    font-size: 18px;
}

.promise-icon {
    color: var(--secondary);
    font-weight: bold;
    margin-right: 10px;
    font-size: 20px;
}

.promise-statement {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: rgba(6, 215, 246, 0.1);
    border-radius: 10px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.partner-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.partner-category h4 {
    margin-top: 0;
    color: var(--secondary);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.column {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: scale(1.05);
    border: 1px solid var(--primary);
}

.benefit-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.benefit-item h4 {
    margin: 10px 0;
    color: var(--secondary);
}

.choices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.choice-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.choice-card h3 {
    margin-top: 0;
    color: var(--primary);
    font-size: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    padding: 10px;
    background: rgba(6, 215, 246, 0.1);
    margin-bottom: 5px;
    border-radius: 5px;
}

.disclosure-footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.disclosure-footer p {
    margin: 10px 0;
}

.disclosure-footer strong {
    font-size: 24px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .perfrig-disclosure-wrapper {
        padding: 30px 20px;
    }
    
    .perfrig-disclosure-wrapper h1 {
        font-size: 42px;
    }
    
    .perfrig-disclosure-wrapper h2 {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .perfrig-disclosure-wrapper {
        padding: 25px 15px;
    }
    
    .perfrig-disclosure-wrapper h1 {
        font-size: 36px;
    }
    
    .perfrig-disclosure-wrapper h2 {
        font-size: 26px;
    }
    
    .perfrig-disclosure-wrapper h3 {
        font-size: 22px;
    }
    
    .two-column {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .perfrig-disclosure-wrapper {
        padding: 20px 15px;
    }
    
    .perfrig-disclosure-wrapper h1 {
        font-size: 32px;
    }
    
    .perfrig-disclosure-wrapper h2 {
        font-size: 24px;
    }
    
    .perfrig-disclosure-wrapper h3 {
        font-size: 20px;
    }
    
    .disclosure-section {
        padding: 15px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .choices-grid {
        grid-template-columns: 1fr;
    }
    
    .promise-statement {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .perfrig-disclosure-wrapper h1 {
        font-size: 28px;
    }
    
    .perfrig-disclosure-wrapper h2 {
        font-size: 22px;
    }
    
    .perfrig-disclosure-wrapper h3 {
        font-size: 18px;
    }
    
    .disclosure-date {
        font-size: 16px;
    }
    
    .highlight-box,
    .example-box,
    .warning-box {
        padding: 15px;
    }
    
    .promise-box li {
        font-size: 16px;
    }
    
    .disclosure-footer strong {
        font-size: 20px;
    }
}

/* Print Styles */
@media print {
    .perfrig-disclosure-wrapper {
        background-color: white;
        color: black;
        padding: 0.5in;
    }
    
    .perfrig-disclosure-wrapper h1,
    .perfrig-disclosure-wrapper h2,
    .perfrig-disclosure-wrapper h3,
    .perfrig-disclosure-wrapper h4 {
        color: black;
        -webkit-text-fill-color: black;
        background: none;
    }
    
    .perfrig-disclosure-wrapper a {
        color: black;
        text-decoration: underline;
    }
    
    .disclosure-section:hover {
        transform: none;
        box-shadow: none;
    }
}



/* =================================================  CONTACT US CONTENT  - UNIFIED DESIGN SYSTEM =============================================== */

:root {
    /* Core colors */
    --ps-primary: #06D7F6;
    --ps-secondary: #00FF9C;
    --ps-accent: #0066FF;
    --ps-dark: #0A0A0C;
    --ps-darker: #05080C;
    --ps-card: #14151A;
    --ps-sidebar: #111318;
    --ps-gray: #9CA3AF;
    --ps-light-gray: #6B7280;
    --ps-border-color: rgba(255, 255, 255, 0.05);
    
    /* Gradients */
    --ps-gradient-primary: linear-gradient(135deg, #06D7F6, #0055FF);
    --ps-gradient-secondary: linear-gradient(135deg, #00FF9C, #00E5FF);
    --ps-gradient-bg: linear-gradient(135deg, #0A0A0C, #111318);
    --ps-gradient-card: linear-gradient(135deg, #0A0A0C, #14151A);
    --ps-gradient-text: linear-gradient(90deg, #06D7F6, #00FF9C);
    --ps-gradient-border: linear-gradient(135deg, rgba(6,215,246,.4), rgba(0,255,156,.4), rgba(6,215,246,.4));
    
    /* Typography */
    --ps-font-heading: 'Exo 2', 'Inter', 'Segoe UI', sans-serif;
    --ps-font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
    
    /* Spacing */
    --ps-space-xs: 5px;
    --ps-space-sm: 10px;
    --ps-space-md: 20px;
    --ps-space-lg: 30px;
    --ps-space-xl: 40px;
    --ps-space-2xl: 60px;
    
    /* Radius */
    --ps-radius-sm: 12px;
    --ps-radius-md: 16px;
    --ps-radius-lg: 22px;
    
    /* Shadows */
    --ps-shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.1);
    --ps-shadow-md: 0 10px 25px rgba(0, 0, 0, 0.2);
    --ps-shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.45);
    --ps-shadow-glow: 0 0 35px rgba(6, 215, 246, 0.25);
    
    /* Transitions */
    --ps-transition-slow: 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Extra form variables */
    --pc-primary: #06D7F6;
    --pc-secondary: #00FF9C;
    --pc-dark: #0A0A0C;
    --pc-card: #14151A;
    --pc-gray: #9CA3AF;
    --pc-border: rgba(255, 255, 255, 0.1);
}

/* BASE */

.ps-contact-wrapper {
    background-color: var(--ps-dark);
    color: #ffffff;
    font-family: var(--ps-font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding: var(--ps-space-2xl) 0;
    max-width: 100%;
}

.ps-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ps-space-lg);
}

.ps-contact-section {
    margin-bottom: var(--ps-space-2xl);
    position: relative;
}

/* HEADERS */

.ps-contact-header {
    text-align: center;
    margin: var(--ps-space-2xl) 0 var(--ps-space-xl);
    position: relative;
    padding: var(--ps-space-xl) 0;
}

.ps-contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--ps-gradient-primary);
    border-radius: 2px;
}

.ps-contact-header h1 {
    font-size: 52px;
    font-weight: 800;
    background: var(--ps-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 15px;
    font-family: var(--ps-font-heading);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.ps-contact-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--ps-gradient-primary);
    border-radius: 2px;
    animation: ps-linePulse 3s ease-in-out infinite;
}

@keyframes ps-linePulse {
    0%, 100% { width: 100px; opacity: 1; }
    50% { width: 150px; opacity: 0.8; }
}

.ps-section-title {
    font-size: 36px;
    font-weight: 800;
    margin: var(--ps-space-xl) 0 var(--ps-space-lg);
    background: var(--ps-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--ps-font-heading);
    position: relative;
    display: inline-block;
}

.ps-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--ps-gradient-primary);
    border-radius: 2px;
}

/* TWO COLUMN LAYOUT */

.ps-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ps-space-xl);
    margin: var(--ps-space-xl) 0;
}

@media (max-width: 768px) {
    .ps-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* EMAIL CARD */

.pc-emails-card {
    background: var(--ps-gradient-card);
    border: 1px solid var(--ps-border-color);
    border-radius: var(--ps-radius-lg);
    padding: var(--ps-space-xl);
    transition: all var(--ps-transition-slow);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pc-emails-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ps-shadow-md);
    border-color: rgba(6, 215, 246, 0.3);
}

.pc-emails-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ps-gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pc-emails-card:hover::before {
    opacity: 1;
}

.pc-emails-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--ps-primary);
    margin-bottom: var(--ps-space-lg);
    font-family: var(--ps-font-heading);
    position: relative;
    display: inline-block;
}

.pc-emails-card h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--ps-gradient-primary);
    border-radius: 2px;
}

.pc-email-item {
    margin-bottom: var(--ps-space-lg);
    padding-bottom: var(--ps-space-lg);
    border-bottom: 1px solid var(--ps-border-color);
}

.pc-email-item:last-child {
    border-bottom: none;
}

.pc-email-label {
    display: block;
    font-size: 14px;
    color: var(--ps-gray);
    margin-bottom: var(--ps-space-xs);
}

.pc-email-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--ps-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-all;
}

.pc-email-link:hover {
    color: var(--ps-primary);
    transform: translateX(5px);
}

.pc-response-time {
    margin-top: var(--ps-space-lg);
    padding: var(--ps-space-md);
    background: rgba(6, 215, 246, 0.1);
    border-radius: var(--ps-radius-md);
    border-left: 4px solid var(--ps-primary);
}

.pc-response-time strong {
    color: var(--ps-primary);
    display: block;
    margin-bottom: var(--ps-space-xs);
}

.pc-response-time p {
    color: var(--ps-gray);
    font-size: 14px;
    margin: 0;
}

/* FORM CARD */

.pc-form-card {
    background: var(--ps-gradient-card);
    border: 1px solid var(--ps-border-color);
    border-radius: var(--ps-radius-lg);
    padding: var(--ps-space-xl);
    transition: all var(--ps-transition-slow);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pc-form-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ps-shadow-md);
    border-color: rgba(6, 215, 246, 0.3);
}

.pc-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ps-gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pc-form-card:hover::before {
    opacity: 1;
}

.pc-form-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--ps-primary);
    margin-bottom: var(--ps-space-lg);
    font-family: var(--ps-font-heading);
    position: relative;
    display: inline-block;
}

.pc-form-card h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--ps-gradient-primary);
    border-radius: 2px;
}

.pc-form-group {
    margin-bottom: var(--ps-space-lg);
}

.pc-form-label {
    display: block;
    font-size: 14px;
    color: var(--ps-gray);
    margin-bottom: var(--ps-space-xs);
}

.pc-form-required {
    color: #ff4444;
    margin-left: 2px;
}

.pc-form-input,
.pc-form-select,
.pc-form-textarea {
    width: 100%;
    padding: var(--ps-space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--ps-border-color);
    border-radius: var(--ps-radius-md);
    font-size: 16px;
    font-family: var(--ps-font-body);
    transition: all 0.3s ease;
}



.pc-form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Solid background required — transparent breaks Chrome's text-colour
       resolution when appearance:none is set (OS colour model takes over). */
    background-color: #16161f !important;

    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2306D7F6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right var(--ps-space-md) center;
    background-size: 16px;
    padding-right: 36px;

    /* Selected text colour — !important beats Blocksy parent specificity.
       -webkit-text-fill-color takes precedence over color in Chrome/Safari. */
    color: #D6D6D9 !important;
    -webkit-text-fill-color: #D6D6D9 !important;
}

/* Placeholder state: option with value="" selected, select has required attr. */
.pc-form-select:invalid {
    color: #888 !important;
    -webkit-text-fill-color: #888 !important;
}

/* Dropdown list: solid dark bg so options are readable in the OS picker. */
.pc-form-select option {
    background-color: #1a1a2e;
    color: #D6D6D9;
    -webkit-text-fill-color: #D6D6D9;
}

.pc-form-input:hover,
.pc-form-select:hover,
.pc-form-textarea:hover {
    border-color: rgba(6, 215, 246, 0.3);
}

.pc-form-input:focus,
.pc-form-select:focus,
.pc-form-textarea:focus {
    outline: none;
    border-color: #06D7F6;
    box-shadow: 0 0 0 2px rgba(6, 215, 246, 0.2);
}

.pc-form-input.error,
.pc-form-select.error,
.pc-form-textarea.error {
    border-color: #ff4d4d;
    box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.2);
}

.pc-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.pc-form-button {
    width: 100%;
    padding: var(--ps-space-md) var(--ps-space-lg);
    background: linear-gradient(90deg, var(--ps-primary), var(--ps-secondary));
    color: var(--ps-dark);
    border: none;
    border-radius: var(--ps-radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pc-form-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--ps-shadow-glow);
}

.pc-form-note {
    font-size: 12px;
    color: var(--ps-gray);
    text-align: center;
    margin-top: var(--ps-space-md);
}

.pc-form-note a {
    color: var(--ps-primary);
    text-decoration: none;
}

.pc-form-note a:hover {
    color: var(--ps-secondary);
}

.pf-contact-status {
    display: none;
    margin-bottom: 16px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.5;
}

.pf-contact-status.pf-contact-success {
    background: rgba(0, 163, 42, 0.12);
    color: #00c936;
    border: 1px solid rgba(0, 163, 42, 0.35);
}

.pf-contact-status.pf-contact-error {
    background: rgba(214, 54, 56, 0.1);
    color: #ff5c5e;
    border: 1px solid rgba(214, 54, 56, 0.35);
}

/* WHY CONTACT GRID */

.ps-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--ps-space-lg);
    margin: var(--ps-space-xl) 0;
}

@media (max-width: 768px) {
    .ps-why-grid {
        grid-template-columns: 1fr;
    }
}

.ps-why-item {
    background: var(--ps-gradient-card);
    border: 1px solid var(--ps-border-color);
    border-radius: var(--ps-radius-lg);
    padding: var(--ps-space-lg);
    text-align: center;
    transition: all var(--ps-transition-slow);
}

.ps-why-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--ps-shadow-md);
    border-color: rgba(6, 215, 246, 0.3);
}

.ps-why-icon {
    font-size: 36px;
    display: block;
    margin-bottom: var(--ps-space-sm);
}

.ps-why-item strong {
    display: block;
    font-size: 18px;
    color: var(--ps-primary);
    margin-bottom: var(--ps-space-xs);
    font-family: var(--ps-font-heading);
}

.ps-why-item span {
    font-size: 14px;
    color: var(--ps-gray);
}

/* WHAT TO INCLUDE */

.ps-include-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--ps-space-lg);
    margin: var(--ps-space-xl) 0;
}

@media (max-width: 768px) {
    .ps-include-grid {
        grid-template-columns: 1fr;
    }
}

.ps-include-item {
    background: var(--ps-gradient-card);
    border: 1px solid var(--ps-border-color);
    border-radius: var(--ps-radius-lg);
    padding: var(--ps-space-lg);
    transition: all var(--ps-transition-slow);
}

.ps-include-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--ps-shadow-md);
    border-color: rgba(6, 215, 246, 0.3);
}

.ps-include-item h4 {
    color: var(--ps-primary);
    margin: 0 0 var(--ps-space-sm) 0;
    font-size: 20px;
}

.ps-include-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ps-include-item li {
    margin-bottom: var(--ps-space-xs);
    padding-left: var(--ps-space-lg);
    position: relative;
    color: var(--ps-gray);
    font-size: 14px;
}

.ps-include-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ps-primary);
    font-weight: 600;
}

/* PRIVACY BOX */

.ps-privacy-box {
    background: linear-gradient(135deg, rgba(6, 215, 246, 0.1), rgba(0, 255, 156, 0.1));
    border: 1px solid rgba(6, 215, 246, 0.2);
    border-radius: var(--ps-radius-lg);
    padding: var(--ps-space-lg);
    margin: var(--ps-space-lg) 0;
}

.ps-privacy-box p {
    margin: var(--ps-space-xs) 0;
}

.ps-privacy-box strong {
    color: var(--ps-secondary);
}

.ps-privacy-box ul {
    list-style: none;
    padding: 0;
    margin: var(--ps-space-sm) 0;
}

.ps-privacy-box li {
    margin-bottom: var(--ps-space-xs);
    padding-left: var(--ps-space-lg);
    position: relative;
    color: var(--ps-gray);
}

.ps-privacy-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ps-secondary);
    font-weight: 600;
}

/* NOTE BOX */

.ps-note-box {
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--ps-primary);
    border-radius: 0 var(--ps-radius-md) var(--ps-radius-md) 0;
    padding: var(--ps-space-md);
    margin: var(--ps-space-md) 0;
}

.ps-note-box strong {
    color: var(--ps-primary);
}

/* DIVIDERS */

.ps-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 215, 246, 0.3), rgba(0, 255, 156, 0.3), transparent);
    margin: var(--ps-space-2xl) 0;
}

.ps-divider-light {
    width: 100%;
    height: 1px;
    background: var(--ps-border-color);
    margin: var(--ps-space-xl) 0;
}

/* TEXT */

.ps-text-large {
    font-size: 18px;
    color: #e5e7eb;
    margin-bottom: var(--ps-space-md);
}

.ps-text-accent {
    color: var(--ps-primary);
    font-weight: 600;
}

.ps-text-gradient {
    background: var(--ps-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.ps-text-center {
    text-align: center;
}

.ps-list {
    list-style: none;
    padding: 0;
}

.ps-list li {
    margin-bottom: var(--ps-space-sm);
    padding-left: var(--ps-space-lg);
    position: relative;
    color: var(--ps-gray);
}

.ps-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ps-primary);
    font-weight: 600;
}

/* FOOTER */

.ps-contact-footer {
    margin-top: var(--ps-space-2xl);
    padding: var(--ps-space-xl) 0;
    border-top: 1px solid var(--ps-border-color);
    text-align: center;
}

.ps-footer-tagline {
    font-size: 20px;
    font-weight: 700;
    background: var(--ps-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: var(--ps-space-md) 0;
}

.ps-footer-small {
    font-size: 14px;
    color: var(--ps-gray);
}

.ps-footer-links {
    margin: var(--ps-space-md) 0;
}

.ps-footer-links a {
    color: var(--ps-primary);
    text-decoration: none;
    margin: 0 var(--ps-space-xs);
    transition: color 0.3s ease;
}

.ps-footer-links a:hover {
    color: var(--ps-secondary);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .ps-contact-header h1 {
        font-size: 42px;
    }
    
    .ps-section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .ps-contact-container {
        padding: 0 var(--ps-space-md);
    }
    
    .ps-contact-header h1 {
        font-size: 36px;
    }
    
    .ps-section-title {
        font-size: 28px;
    }
    
    .ps-why-grid,
    .ps-include-grid,
    .ps-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ps-contact-header h1 {
        font-size: 28px;
    }
    
    .ps-section-title {
        font-size: 24px;
    }
    
    .pc-emails-card,
    .pc-form-card {
        padding: var(--ps-space-lg);
    }
    
    .pc-email-link {
        font-size: 16px;
    }
}



/* =================================================  COOKIE POLICY - UNIFIED DESIGN SYSTEM =============================================== */

.perfrig-cookie-wrapper {
    --primary: #06D7F6;
    --secondary: #00FF9C;
    --dark: #0A0A0C;
    --gray: #9CA3AF;
    --text-light: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    
    background-color: var(--dark);
    color: var(--text-light);
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

.perfrig-cookie-wrapper * {
    box-sizing: border-box;
}

.perfrig-cookie-wrapper h1 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.perfrig-cookie-wrapper h2 {
    font-size: 32px;
    color: var(--primary);
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.perfrig-cookie-wrapper h3 {
    font-size: 24px;
    color: var(--secondary);
    margin: 25px 0 15px;
}

.perfrig-cookie-wrapper h4 {
    font-size: 18px;
    color: var(--primary);
    margin: 20px 0 10px;
    font-weight: 600;
}

.perfrig-cookie-wrapper p {
    margin-bottom: 15px;
    color: var(--text-light);
    opacity: 0.9;
}

.perfrig-cookie-wrapper ul, 
.perfrig-cookie-wrapper ol {
    margin: 15px 0 20px;
    padding-left: 30px;
}

.perfrig-cookie-wrapper li {
    margin-bottom: 8px;
    color: var(--text-light);
    opacity: 0.9;
}

.perfrig-cookie-wrapper a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary);
    transition: all 0.3s ease;
}

.perfrig-cookie-wrapper a:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.perfrig-cookie-wrapper code {
    background: rgba(6, 215, 246, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: var(--secondary);
}

hr.cookie-divider {
    margin: 40px 0;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.cookie-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.cookie-date {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
}

.cookie-section {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.cookie-section:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(6, 215, 246, 0.1);
    transform: translateY(-2px);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.reason-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: scale(1.02);
    border: 1px solid var(--primary);
}

.reason-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.reason-item h4 {
    margin: 10px 0;
    color: var(--secondary);
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.cookie-type-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.cookie-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cookie-type-card.essential {
    border-left-color: #ff4444;
}

.cookie-type-card.analytics {
    border-left-color: var(--primary);
}

.cookie-type-card.preference {
    border-left-color: var(--secondary);
}

.cookie-type-card.advertising {
    border-left-color: #ffaa00;
}

.cookie-type-card.affiliate {
    border-left-color: #00cc88;
}

.cookie-type-card h3 {
    margin-top: 0;
    color: var(--text-light);
}

.cookie-type-card .warning {
    color: #ffaa00;
    font-weight: bold;
}

.cookie-type-card .yes {
    color: #00cc88;
    font-weight: bold;
}

.cookie-type-card .note {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 15px;
}

.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th {
    background: var(--primary);
    color: var(--dark);
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table tr:hover {
    background: rgba(6, 215, 246, 0.1);
}

.third-party-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
}

.browser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.browser-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.browser-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.browser-item h4 {
    margin: 10px 0;
    color: var(--secondary);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.impact-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.impact-item h4 {
    color: #ffaa00;
    margin-top: 0;
}

.tracking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.tracking-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
}

.tracking-item h3 {
    margin-top: 0;
    color: var(--secondary);
}

.contact-box {
    background: linear-gradient(135deg, rgba(6, 215, 246, 0.15), rgba(0, 255, 156, 0.15));
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.links-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
}

.links-category h4 {
    margin-top: 0;
    color: var(--secondary);
}

.links-category ul {
    list-style: none;
    padding: 0;
}

.links-category li {
    margin-bottom: 10px;
}

.links-category a {
    display: block;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.links-category a:hover {
    background: rgba(6, 215, 246, 0.1);
    transform: translateX(5px);
}

.commitment-section {
    background: linear-gradient(135deg, rgba(6, 215, 246, 0.15), rgba(0, 255, 156, 0.15));
    border: 2px solid var(--primary);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.commitment-item {
    text-align: center;
    padding: 20px;
}

.commitment-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.commitment-item h4 {
    color: var(--secondary);
    margin: 10px 0;
}

.commitment-statement {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin: 30px 0 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.cookie-footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.cookie-footer p {
    margin: 10px 0;
}

.cookie-footer strong {
    font-size: 24px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cookie-settings-link {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    margin-top: 10px;
}

.cookie-settings-link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .perfrig-cookie-wrapper {
        padding: 30px 20px;
    }
    
    .perfrig-cookie-wrapper h1 {
        font-size: 42px;
    }
    
    .perfrig-cookie-wrapper h2 {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .perfrig-cookie-wrapper {
        padding: 25px 15px;
    }
    
    .perfrig-cookie-wrapper h1 {
        font-size: 36px;
    }
    
    .perfrig-cookie-wrapper h2 {
        font-size: 26px;
    }
    
    .perfrig-cookie-wrapper h3 {
        font-size: 22px;
    }
    
    .cookie-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .perfrig-cookie-wrapper {
        padding: 20px 15px;
    }
    
    .perfrig-cookie-wrapper h1 {
        font-size: 32px;
    }
    
    .perfrig-cookie-wrapper h2 {
        font-size: 24px;
    }
    
    .perfrig-cookie-wrapper h3 {
        font-size: 20px;
    }
    
    .cookie-section {
        padding: 15px;
    }
    
    .reasons-grid,
    .browser-grid,
    .impact-grid,
    .tracking-grid,
    .links-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-statement {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .perfrig-cookie-wrapper h1 {
        font-size: 28px;
    }
    
    .perfrig-cookie-wrapper h2 {
        font-size: 22px;
    }
    
    .perfrig-cookie-wrapper h3 {
        font-size: 18px;
    }
    
    .cookie-date {
        font-size: 16px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px;
        font-size: 14px;
    }
    
    .cookie-footer strong {
        font-size: 20px;
    }
}

/* Print Styles */
@media print {
    .perfrig-cookie-wrapper {
        background-color: white;
        color: black;
        padding: 0.5in;
    }
    
    .perfrig-cookie-wrapper h1,
    .perfrig-cookie-wrapper h2,
    .perfrig-cookie-wrapper h3,
    .perfrig-cookie-wrapper h4 {
        color: black;
        -webkit-text-fill-color: black;
        background: none;
    }
    
    .perfrig-cookie-wrapper a {
        color: black;
        text-decoration: underline;
    }
    
    .cookie-section:hover {
        transform: none;
        box-shadow: none;
    }
}

/* =================================================  Privacy Policy - UNIFIED DESIGN SYSTEM =============================================== */

.perfrig-privacy-wrapper {
    --primary: #06D7F6;
    --secondary: #00FF9C;
    --dark: #0A0A0C;
    --gray: #9CA3AF;
    --text-light: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    
    background-color: var(--dark);
    color: var(--text-light);
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

.perfrig-privacy-wrapper * {
    box-sizing: border-box;
}

.perfrig-privacy-wrapper h1 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.perfrig-privacy-wrapper h2 {
    font-size: 32px;
    color: var(--primary);
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.perfrig-privacy-wrapper h3 {
    font-size: 24px;
    color: var(--secondary);
    margin: 25px 0 15px;
}

.perfrig-privacy-wrapper h4 {
    font-size: 18px;
    color: var(--primary);
    margin: 20px 0 10px;
    font-weight: 600;
}

.perfrig-privacy-wrapper p {
    margin-bottom: 15px;
    color: var(--text-light);
    opacity: 0.9;
}

.perfrig-privacy-wrapper ul, 
.perfrig-privacy-wrapper ol {
    margin: 15px 0 20px;
    padding-left: 30px;
}

.perfrig-privacy-wrapper li {
    margin-bottom: 8px;
    color: var(--text-light);
    opacity: 0.9;
}

.perfrig-privacy-wrapper a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary);
    transition: all 0.3s ease;
}

.perfrig-privacy-wrapper a:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

hr.privacy-divider {
    margin: 40px 0;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.privacy-date {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.privacy-section:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(6, 215, 246, 0.1);
    transform: translateY(-2px);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(6, 215, 246, 0.15), rgba(0, 255, 156, 0.15));
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
}

.warning-box {
    background: rgba(255, 68, 68, 0.1);
    border-left: 4px solid #ff4444;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.info-card h4 {
    margin-top: 0;
    color: var(--secondary);
}

.purposes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.purpose-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.purpose-item:hover {
    transform: scale(1.02);
    border: 1px solid var(--primary);
}

.purpose-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.purpose-item h4 {
    margin: 10px 0;
    color: var(--secondary);
}

.affiliate-box {
    background: rgba(0, 255, 156, 0.1);
    border: 1px solid var(--secondary);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.security-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
}

.security-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.security-item h4 {
    margin: 10px 0;
    color: var(--secondary);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.right-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.right-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.right-item h4 {
    margin: 10px 0;
    color: var(--secondary);
}

.retention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.retention-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.retention-item h4 {
    margin-top: 0;
    color: var(--secondary);
}

.ccpa-box {
    background: rgba(6, 215, 246, 0.1);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border: 2px solid var(--primary);
}

.ccpa-box h4 {
    color: var(--secondary);
    margin-top: 20px;
}

.ccpa-box h4:first-child {
    margin-top: 0;
}

.contact-box {
    background: linear-gradient(135deg, rgba(6, 215, 246, 0.15), rgba(0, 255, 156, 0.15));
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.commitment-section {
    background: linear-gradient(135deg, rgba(6, 215, 246, 0.15), rgba(0, 255, 156, 0.15));
    border: 2px solid var(--primary);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.commitment-item {
    text-align: center;
    padding: 20px;
}

.commitment-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.commitment-item h4 {
    color: var(--secondary);
    margin: 10px 0;
}

.commitment-statement {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin: 30px 0 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.privacy-footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.privacy-footer p {
    margin: 10px 0;
}

.privacy-footer strong {
    font-size: 24px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.note {
    font-style: italic;
    opacity: 0.8;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .perfrig-privacy-wrapper {
        padding: 30px 20px;
    }
    
    .perfrig-privacy-wrapper h1 {
        font-size: 42px;
    }
    
    .perfrig-privacy-wrapper h2 {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .perfrig-privacy-wrapper {
        padding: 25px 15px;
    }
    
    .perfrig-privacy-wrapper h1 {
        font-size: 36px;
    }
    
    .perfrig-privacy-wrapper h2 {
        font-size: 26px;
    }
    
    .perfrig-privacy-wrapper h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .perfrig-privacy-wrapper {
        padding: 20px 15px;
    }
    
    .perfrig-privacy-wrapper h1 {
        font-size: 32px;
    }
    
    .perfrig-privacy-wrapper h2 {
        font-size: 24px;
    }
    
    .perfrig-privacy-wrapper h3 {
        font-size: 20px;
    }
    
    .privacy-section {
        padding: 15px;
    }
    
    .purposes-grid,
    .security-grid,
    .rights-grid,
    .retention-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-statement {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .perfrig-privacy-wrapper h1 {
        font-size: 28px;
    }
    
    .perfrig-privacy-wrapper h2 {
        font-size: 22px;
    }
    
    .perfrig-privacy-wrapper h3 {
        font-size: 18px;
    }
    
    .privacy-date {
        font-size: 16px;
    }
    
    .privacy-footer strong {
        font-size: 20px;
    }
}

/* Print Styles */
@media print {
    .perfrig-privacy-wrapper {
        background-color: white;
        color: black;
        padding: 0.5in;
    }
    
    .perfrig-privacy-wrapper h1,
    .perfrig-privacy-wrapper h2,
    .perfrig-privacy-wrapper h3,
    .perfrig-privacy-wrapper h4 {
        color: black;
        -webkit-text-fill-color: black;
        background: none;
    }
    
    .perfrig-privacy-wrapper a {
        color: black;
        text-decoration: underline;
    }
    
    .privacy-section:hover {
        transform: none;
        box-shadow: none;
    }
}


/* =================================================  REVIEW POLICY - UNIFIED DESIGN SYSTEM =============================================== */

:root {
    /* Core colors */
    --ps-primary: #06D7F6;
    --ps-secondary: #00FF9C;
    --ps-accent: #0066FF;
    --ps-dark: #0A0A0C;
    --ps-darker: #05080C;
    --ps-card: #14151A;
    --ps-sidebar: #111318;
    --ps-gray: #9CA3AF;
    --ps-light-gray: #6B7280;
    --ps-border-color: rgba(255, 255, 255, 0.05);
    
    /* Gradients */
    --ps-gradient-primary: linear-gradient(135deg, #06D7F6, #0055FF);
    --ps-gradient-secondary: linear-gradient(135deg, #00FF9C, #00E5FF);
    --ps-gradient-bg: linear-gradient(135deg, #0A0A0C, #111318);
    --ps-gradient-card: linear-gradient(135deg, #0A0A0C, #14151A);
    --ps-gradient-text: linear-gradient(90deg, #06D7F6, #00FF9C);
    --ps-gradient-border: linear-gradient(135deg, rgba(6,215,246,.4), rgba(0,255,156,.4), rgba(6,215,246,.4));
    
    /* Typography */
    --ps-font-heading: 'Exo 2', 'Inter', 'Segoe UI', sans-serif;
    --ps-font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
    
    /* Spacing */
    --ps-space-xs: 5px;
    --ps-space-sm: 10px;
    --ps-space-md: 20px;
    --ps-space-lg: 30px;
    --ps-space-xl: 40px;
    --ps-space-2xl: 60px;
    
    /* Radius */
    --ps-radius-sm: 12px;
    --ps-radius-md: 16px;
    --ps-radius-lg: 22px;
    
    /* Shadows */
    --ps-shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.1);
    --ps-shadow-md: 0 10px 25px rgba(0, 0, 0, 0.2);
    --ps-shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.45);
    --ps-shadow-glow: 0 0 35px rgba(6, 215, 246, 0.25);
    
    /* Transitions */
    --ps-transition-slow: 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* BASE */

.ps-review-wrapper {
    background-color: var(--ps-dark);
    color: #ffffff;
    font-family: var(--ps-font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding: var(--ps-space-2xl) 0;
    max-width: 100%;
}

.ps-review-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--ps-space-lg);
}

.ps-review-section {
    margin-bottom: var(--ps-space-2xl);
    position: relative;
}

/* HEADERS */

.ps-review-header {
    text-align: center;
    margin: var(--ps-space-2xl) 0 var(--ps-space-xl);
    position: relative;
    padding: var(--ps-space-xl) 0;
}

.ps-review-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--ps-gradient-primary);
    border-radius: 2px;
}

.ps-review-header h1 {
    font-size: 52px;
    font-weight: 800;
    background: var(--ps-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 15px;
    font-family: var(--ps-font-heading);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.ps-review-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--ps-gradient-primary);
    border-radius: 2px;
    animation: ps-linePulse 3s ease-in-out infinite;
}

@keyframes ps-linePulse {
    0%, 100% { width: 100px; opacity: 1; }
    50% { width: 150px; opacity: 0.8; }
}

.ps-section-title {
    font-size: 36px;
    font-weight: 800;
    margin: var(--ps-space-xl) 0 var(--ps-space-lg);
    background: var(--ps-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--ps-font-heading);
    position: relative;
    display: inline-block;
}

.ps-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--ps-gradient-primary);
    border-radius: 2px;
}

.ps-subsection-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--ps-primary);
    margin: var(--ps-space-lg) 0 var(--ps-space-md);
    font-family: var(--ps-font-heading);
    position: relative;
    display: inline-block;
}

.ps-subsection-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--ps-gradient-primary);
    border-radius: 2px;
}

.ps-small-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--ps-primary);
    margin: var(--ps-space-md) 0 var(--ps-space-sm);
    font-family: var(--ps-font-heading);
}

/* DATE */

.ps-review-date {
    text-align: center;
    margin-bottom: var(--ps-space-xl);
    padding: var(--ps-space-md);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--ps-radius-md);
    border: 1px solid var(--ps-border-color);
    font-size: 18px;
    color: var(--ps-gray);
}

.ps-review-date strong {
    color: var(--ps-primary);
}

/* CARDS */

.ps-review-card {
    background: var(--ps-gradient-card);
    border: 1px solid var(--ps-border-color);
    border-radius: var(--ps-radius-lg);
    padding: var(--ps-space-lg);
    transition: all var(--ps-transition-slow);
    position: relative;
    overflow: hidden;
    margin-bottom: var(--ps-space-lg);
}

.ps-review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ps-shadow-md);
    border-color: rgba(6, 215, 246, 0.3);
}

.ps-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ps-gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ps-review-card:hover::before {
    opacity: 1;
}

.ps-review-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--ps-radius-lg);
    padding: 2px;
    background: var(--ps-gradient-border);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ps-review-card:hover::after {
    opacity: 1;
}

/* HIGHLIGHT BOX */

.ps-highlight-box {
    background: linear-gradient(135deg, rgba(6, 215, 246, 0.1), rgba(0, 255, 156, 0.1));
    border-left: 4px solid var(--ps-primary);
    padding: var(--ps-space-md);
    margin: var(--ps-space-md) 0;
    border-radius: 0 var(--ps-radius-md) var(--ps-radius-md) 0;
}

.ps-highlight-box strong {
    color: var(--ps-secondary);
    display: block;
    margin-bottom: var(--ps-space-xs);
}

/* EXAMPLE BOX */

.ps-example-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed var(--ps-primary);
    padding: var(--ps-space-md);
    margin: var(--ps-space-md) 0;
    border-radius: var(--ps-radius-md);
    font-family: monospace;
}

.ps-example-box code {
    background: rgba(6, 215, 246, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--ps-secondary);
}

/* TWO COLUMN GRID */

.ps-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ps-space-lg);
    margin: var(--ps-space-lg) 0;
}

@media (max-width: 768px) {
    .ps-two-column {
        grid-template-columns: 1fr;
    }
}

.ps-column {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--ps-space-md);
    border-radius: var(--ps-radius-md);
}

.ps-column h4 {
    color: var(--ps-primary);
    margin: 0 0 var(--ps-space-sm) 0;
    font-size: 20px;
}

/* LISTS */

.ps-list {
    list-style: none;
    padding: 0;
    margin: var(--ps-space-md) 0;
}

.ps-list li {
    margin-bottom: var(--ps-space-sm);
    padding-left: var(--ps-space-lg);
    position: relative;
    color: var(--ps-gray);
}

.ps-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ps-primary);
    font-weight: 600;
}

.ps-list-disc {
    list-style: disc;
    padding-left: var(--ps-space-lg);
    margin: var(--ps-space-md) 0;
    color: var(--ps-gray);
}

.ps-list-disc li {
    margin-bottom: var(--ps-space-xs);
    color: var(--ps-gray);
}

.ps-list-disc li::marker {
    color: var(--ps-primary);
}

/* CATEGORIES GRID */

.ps-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--ps-space-md);
    margin: var(--ps-space-md) 0;
}

@media (max-width: 768px) {
    .ps-categories-grid {
        grid-template-columns: 1fr;
    }
}

.ps-category-item {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--ps-space-sm) var(--ps-space-md);
    border-radius: var(--ps-radius-md);
    border-left: 3px solid var(--ps-primary);
    color: var(--ps-gray);
    font-size: 14px;
}

/* DIVIDERS */

.ps-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 215, 246, 0.3), rgba(0, 255, 156, 0.3), transparent);
    margin: var(--ps-space-2xl) 0;
}

.ps-divider-light {
    width: 100%;
    height: 1px;
    background: var(--ps-border-color);
    margin: var(--ps-space-xl) 0;
}

/* TEXT */

.ps-text-large {
    font-size: 18px;
    color: #e5e7eb;
    margin-bottom: var(--ps-space-md);
}

.ps-text-accent {
    color: var(--ps-primary);
    font-weight: 600;
}

.ps-text-gradient {
    background: var(--ps-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.ps-text-center {
    text-align: center;
}

.ps-note {
    font-size: 14px;
    color: var(--ps-light-gray);
    font-style: italic;
    margin-top: var(--ps-space-xs);
}

/* CONTACT LIST */

.ps-contact-list {
    background: rgba(6, 215, 246, 0.05);
    border: 1px solid var(--ps-border-color);
    border-radius: var(--ps-radius-md);
    padding: var(--ps-space-md);
    margin: var(--ps-space-md) 0;
}

.ps-contact-list p {
    margin: var(--ps-space-xs) 0;
    color: var(--ps-gray);
}

.ps-contact-list strong {
    color: var(--ps-primary);
}

.ps-contact-email {
    color: var(--ps-secondary);
    font-weight: 600;
}

/* FOOTER */

.ps-review-footer {
    margin-top: var(--ps-space-2xl);
    padding: var(--ps-space-xl) 0;
    border-top: 1px solid var(--ps-border-color);
    text-align: center;
}

.ps-footer-tagline {
    font-size: 20px;
    font-weight: 700;
    background: var(--ps-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: var(--ps-space-md) 0;
}

.ps-footer-small {
    font-size: 14px;
    color: var(--ps-gray);
}

.ps-footer-links {
    margin: var(--ps-space-md) 0;
}

.ps-footer-links a {
    color: var(--ps-primary);
    text-decoration: none;
    margin: 0 var(--ps-space-xs);
    transition: color 0.3s ease;
}

.ps-footer-links a:hover {
    color: var(--ps-secondary);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .ps-review-header h1 {
        font-size: 42px;
    }
    
    .ps-section-title {
        font-size: 32px;
    }
    
    .ps-subsection-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .ps-review-container {
        padding: 0 var(--ps-space-md);
    }
    
    .ps-review-header h1 {
        font-size: 36px;
    }
    
    .ps-section-title {
        font-size: 28px;
    }
    
    .ps-subsection-title {
        font-size: 22px;
    }
    
    .ps-review-card {
        padding: var(--ps-space-md);
    }
    
    .ps-two-column,
    .ps-categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ps-review-header h1 {
        font-size: 28px;
    }
    
    .ps-section-title {
        font-size: 24px;
    }
    
    .ps-subsection-title {
        font-size: 20px;
    }
    
    .ps-review-date {
        font-size: 16px;
    }
    
    .ps-highlight-box,
    .ps-example-box {
        padding: var(--ps-space-sm);
    }
}

/* Print Styles */
@media print {
    .ps-review-wrapper {
        background-color: white;
        color: black;
        padding: 0.5in;
    }
    
    .ps-review-wrapper h1,
    .ps-review-wrapper h2,
    .ps-review-wrapper h3,
    .ps-review-wrapper h4 {
        color: black;
        -webkit-text-fill-color: black;
        background: none;
    }
    
    .ps-review-wrapper a {
        color: black;
        text-decoration: underline;
    }
    
    .ps-review-card:hover {
        transform: none;
        box-shadow: none;
    }
}


/* =================================================  Terms of Service - UNIFIED DESIGN SYSTEM =============================================== */

.perfrig-terms-wrapper {
    --primary: #06D7F6;
    --secondary: #00FF9C;
    --dark: #0A0A0C;
    --gray: #9CA3AF;
    --light-gray: #e0e0e0;
    --text-light: #ffffff;
    --text-dark: #333333;
    --border-color: rgba(255, 255, 255, 0.1);
    
    background-color: var(--dark);
    color: var(--text-light);
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

.perfrig-terms-wrapper * {
    box-sizing: border-box;
}

.perfrig-terms-wrapper h1 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.perfrig-terms-wrapper h2 {
    font-size: 28px;
    color: var(--primary);
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.perfrig-terms-wrapper h3 {
    font-size: 22px;
    color: var(--secondary);
    margin: 25px 0 15px;
}

.perfrig-terms-wrapper p {
    margin-bottom: 15px;
    color: var(--text-light);
    opacity: 0.9;
}

.perfrig-terms-wrapper ul, 
.perfrig-terms-wrapper ol {
    margin: 15px 0 20px;
    padding-left: 30px;
}

.perfrig-terms-wrapper li {
    margin-bottom: 8px;
    color: var(--text-light);
    opacity: 0.9;
}

.perfrig-terms-wrapper a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary);
    transition: all 0.3s ease;
}

.perfrig-terms-wrapper a:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.perfrig-terms-wrapper hr.terms-divider {
    margin: 40px 0;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.terms-dates {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
}

.terms-intro {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    max-width: 800px;
    margin: 20px auto 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(6,215,246,0.1), rgba(0,255,156,0.1));
    border-radius: 10px;
}

.terms-section {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.terms-section:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(6,215,246,0.1);
    transform: translateY(-2px);
}

.terms-section strong {
    color: var(--primary);
    font-weight: 600;
}

.terms-section em {
    color: var(--secondary);
    font-style: italic;
}

.terms-commitment {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(6,215,246,0.15), rgba(0,255,156,0.15));
    border-radius: 20px;
    border: 1px solid var(--primary);
}

.terms-commitment h2 {
    border-bottom: none;
    text-align: center;
    font-size: 36px;
}

.terms-commitment ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.terms-commitment li {
    background: rgba(6,215,246,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--primary);
    font-size: 16px;
}

.terms-footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.terms-footer p {
    margin: 10px 0;
}

.terms-footer strong {
    font-size: 24px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .perfrig-terms-wrapper {
        padding: 30px 20px;
    }
    
    .perfrig-terms-wrapper h1 {
        font-size: 42px;
    }
    
    .perfrig-terms-wrapper h2 {
        font-size: 26px;
    }
}

@media (max-width: 992px) {
    .perfrig-terms-wrapper {
        padding: 25px 15px;
    }
    
    .perfrig-terms-wrapper h1 {
        font-size: 36px;
    }
    
    .perfrig-terms-wrapper h2 {
        font-size: 24px;
    }
    
    .perfrig-terms-wrapper h3 {
        font-size: 20px;
    }
    
    .terms-section {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .perfrig-terms-wrapper {
        padding: 20px 15px;
    }
    
    .perfrig-terms-wrapper h1 {
        font-size: 32px;
    }
    
    .perfrig-terms-wrapper h2 {
        font-size: 22px;
    }
    
    .perfrig-terms-wrapper h3 {
        font-size: 18px;
    }
    
    .terms-intro {
        font-size: 18px;
        padding: 15px;
    }
    
    .terms-section {
        margin-bottom: 30px;
        padding: 15px;
    }
    
    .terms-commitment {
        padding: 25px;
    }
    
    .terms-commitment h2 {
        font-size: 28px;
    }
    
    .terms-commitment ul {
        flex-direction: column;
        align-items: center;
    }
    
    .terms-commitment li {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .perfrig-terms-wrapper h1 {
        font-size: 28px;
    }
    
    .perfrig-terms-wrapper h2 {
        font-size: 20px;
    }
    
    .perfrig-terms-wrapper h3 {
        font-size: 16px;
    }
    
    .terms-intro {
        font-size: 16px;
        padding: 10px;
    }
    
    .terms-dates {
        font-size: 16px;
    }
    
    .terms-section {
        padding: 12px;
    }
    
    .perfrig-terms-wrapper ul, 
    .perfrig-terms-wrapper ol {
        padding-left: 20px;
    }
    
    .terms-commitment {
        padding: 20px;
    }
    
    .terms-commitment h2 {
        font-size: 24px;
    }
    
    .terms-footer strong {
        font-size: 20px;
    }
}

/* Print Styles */
@media print {
    .perfrig-terms-wrapper {
        background-color: white;
        color: black;
        padding: 0.5in;
    }
    
    .perfrig-terms-wrapper h1,
    .perfrig-terms-wrapper h2,
    .perfrig-terms-wrapper h3 {
        color: black;
        -webkit-text-fill-color: black;
        background: none;
    }
    
    .perfrig-terms-wrapper a {
        color: black;
        text-decoration: underline;
    }
    
    .terms-section:hover {
        transform: none;
        box-shadow: none;
    }
}


/* =================================================  GDPR COMPLIANCE - UNIFIED DESIGN SYSTEM =============================================== */

:root {
    --pg-primary: #06D7F6;
    --pg-secondary: #00FF9C;
    --pg-accent: #0066FF;
    --pg-dark: #0A0A0C;
    --pg-darker: #05080C;
    --pg-card: #14151A;
    --pg-sidebar: #111318;
    --pg-gray: #9CA3AF;
    --pg-light-gray: #6B7280;
    --pg-text: #E5E7EB;
    --pg-text-muted: #94A3B8;
    --pg-border: rgba(255, 255, 255, 0.05);
    --pg-border-light: rgba(255, 255, 255, 0.1);
    
    --pg-gradient-primary: linear-gradient(135deg, #06D7F6, #0055FF);
    --pg-gradient-secondary: linear-gradient(135deg, #00FF9C, #00E5FF);
    --pg-gradient-text: linear-gradient(90deg, #06D7F6, #00FF9C);
    --pg-gradient-border: linear-gradient(135deg, rgba(6,215,246,0.4), rgba(0,255,156,0.4), rgba(6,215,246,0.4));
    
    --pg-font-heading: 'Exo 2', sans-serif;
    --pg-font-body: 'Inter', sans-serif;
    
    --pspace-xs: 5px;
    --pspace-sm: 10px;
    --pspace-md: 15px;
    --pspace-lg: 20px;
    --pspace-xl: 25px;
    --pspace-2xl: 30px;
    --pspace-3xl: 40px;
    --pspace-4xl: 50px;
    --pspace-5xl: 60px;
    
    --pradius-sm: 6px;
    --pradius-md: 8px;
    --pradius-lg: 10px;
    --pradius-xl: 12px;
    --pradius-2xl: 16px;
    --pradius-3xl: 20px;
    
    --pshadow-sm: 0 5px 15px rgba(0, 0, 0, 0.1);
    --pshadow-md: 0 10px 25px rgba(0, 0, 0, 0.2);
    --pshadow-lg: 0 25px 50px rgba(0, 0, 0, 0.45);
    --pshadow-glow: 0 0 35px rgba(6, 215, 246, 0.25);
    
    --ptransition-fast: 0.2s ease;
    --ptransition-normal: 0.3s ease;
    --ptransition-slow: 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--pg-darker);
    font-family: var(--pg-font-body);
    color: var(--pg-text);
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--pg-gray) 1px, transparent 1px),
        linear-gradient(90deg, var(--pg-gray) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.02;
    pointer-events: none;
    mix-blend-mode: soft-light;
    z-index: -1;
}

.perfrig-orb-1 {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 50%, rgba(6, 215, 246, 0.1), transparent 70%);
    top: -200px;
    right: -200px;
    z-index: -1;
    filter: blur(80px);
    animation: floatAnim 12s ease-in-out infinite;
}

.perfrig-orb-2 {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 255, 156, 0.08), transparent 70%);
    bottom: -250px;
    left: -250px;
    z-index: -1;
    filter: blur(100px);
    animation: floatAnim 15s ease-in-out infinite reverse;
}

@keyframes floatAnim {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 20px); }
}

.perfrig-gdpr-block {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--pspace-5xl) var(--pspace-xl);
    position: relative;
    z-index: 2;
}

.perfrig-gdpr-header {
    text-align: center;
    margin-bottom: var(--pspace-4xl);
    position: relative;
    padding: var(--pspace-3xl) 0;
}

.perfrig-gdpr-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--pg-gradient-primary);
    border-radius: 2px;
}

.perfrig-gdpr-header h1 {
    font-size: 52px;
    font-weight: 800;
    background: var(--pg-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 20px;
    font-family: var(--pg-font-heading);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.perfrig-gdpr-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--pg-gradient-primary);
    border-radius: 2px;
    animation: pulseAnim 3s ease-in-out infinite;
}

@keyframes pulseAnim {
    0%, 100% { width: 100px; opacity: 1; }
    50% { width: 150px; opacity: 0.8; }
}

.perfrig-gdpr-date-wrap {
    text-align: center;
    margin-bottom: var(--pspace-2xl);
}

.perfrig-gdpr-date {
    display: inline-block;
    padding: var(--pspace-sm) var(--pspace-lg);
    background: rgba(6, 215, 246, 0.05);
    border-radius: var(--pradius-2xl);
    border: 1px solid rgba(6, 215, 246, 0.2);
    font-size: 16px;
    color: var(--pg-gray);
}

.perfrig-gdpr-date strong {
    color: var(--pg-primary);
    font-weight: 600;
}

.perfrig-gdpr-date i {
    color: var(--pg-primary);
    margin-right: 8px;
}

.perfrig-gdpr-section {
    margin-bottom: var(--pspace-4xl);
    background: var(--pg-card);
    border-radius: var(--pradius-3xl);
    border: 1px solid var(--pg-border);
    padding: var(--pspace-3xl);
    transition: all var(--ptransition-normal);
    position: relative;
    overflow: hidden;
}

.perfrig-gdpr-section:hover {
    border-color: rgba(6, 215, 246, 0.3);
    box-shadow: var(--pshadow-glow);
}

.perfrig-gdpr-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pg-gradient-primary);
    opacity: 0;
    transition: opacity var(--ptransition-normal);
}

.perfrig-gdpr-section:hover::before {
    opacity: 0.7;
}

.perfrig-gdpr-section h2 {
    font-family: var(--pg-font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--pspace-xl);
    color: var(--pg-primary);
    position: relative;
    display: inline-block;
}

.perfrig-gdpr-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--pg-gradient-primary);
    border-radius: 2px;
    transition: width var(--ptransition-normal);
}

.perfrig-gdpr-section:hover h2::after {
    width: 100px;
}

.perfrig-gdpr-section h3 {
    font-family: var(--pg-font-heading);
    font-size: 22px;
    font-weight: 600;
    margin: var(--pspace-2xl) 0 var(--pspace-md);
    color: var(--pg-secondary);
}

.perfrig-gdpr-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin: var(--pspace-lg) 0 var(--pspace-sm);
    color: var(--pg-text);
}

.perfrig-gdpr-section p {
    margin-bottom: var(--pspace-lg);
    color: var(--pg-gray);
    line-height: 1.7;
}

.perfrig-gdpr-section p:last-child {
    margin-bottom: 0;
}

.perfrig-gdpr-section a {
    color: var(--pg-primary);
    text-decoration: none;
    transition: color var(--ptransition-fast);
}

.perfrig-gdpr-section a:hover {
    color: var(--pg-secondary);
    text-decoration: underline;
}

.perfrig-gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--pspace-xl);
    margin: var(--pspace-2xl) 0;
}

@media (max-width: 768px) {
    .perfrig-gdpr-rights-grid {
        grid-template-columns: 1fr;
        gap: var(--pspace-lg);
    }
}

.perfrig-gdpr-right-card {
    background: rgba(6, 215, 246, 0.03);
    border: 1px solid var(--pg-border);
    border-radius: var(--pradius-2xl);
    padding: var(--pspace-xl);
    transition: all var(--ptransition-normal);
    position: relative;
    overflow: hidden;
}

.perfrig-gdpr-right-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 215, 246, 0.3);
    box-shadow: var(--pshadow-glow);
}

.perfrig-gdpr-right-icon {
    font-size: 32px;
    color: var(--pg-primary);
    margin-bottom: var(--pspace-sm);
}

.perfrig-gdpr-right-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--pspace-md);
    color: var(--pg-primary);
}

.perfrig-gdpr-right-card p {
    margin-bottom: var(--pspace-sm);
    color: var(--pg-gray);
    font-size: 14px;
}

.perfrig-gdpr-right-card strong {
    color: var(--pg-secondary);
    font-weight: 600;
}

.perfrig-gdpr-legal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--pspace-lg);
    margin: var(--pspace-2xl) 0;
}

@media (max-width: 768px) {
    .perfrig-gdpr-legal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .perfrig-gdpr-legal-grid {
        grid-template-columns: 1fr;
    }
}

.perfrig-gdpr-legal-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--pg-border);
    border-radius: var(--pradius-xl);
    padding: var(--pspace-lg);
    text-align: center;
}

.perfrig-gdpr-legal-icon {
    font-size: 28px;
    color: var(--pg-primary);
    margin-bottom: var(--pspace-sm);
}

.perfrig-gdpr-legal-item h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--pspace-xs);
    color: var(--pg-secondary);
}

.perfrig-gdpr-legal-item p {
    font-size: 13px;
    color: var(--pg-gray);
    margin: 0;
}

.perfrig-gdpr-highlight {
    background: linear-gradient(135deg, rgba(6, 215, 246, 0.08), rgba(0, 255, 156, 0.08));
    border-left: 4px solid var(--pg-primary);
    border-radius: 0 var(--pradius-xl) var(--pradius-xl) 0;
    padding: var(--pspace-xl);
    margin: var(--pspace-2xl) 0;
    position: relative;
    overflow: hidden;
}

.perfrig-gdpr-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--pg-gradient-primary);
    opacity: 0.3;
}

.perfrig-gdpr-highlight p {
    margin-bottom: var(--pspace-sm);
    color: var(--pg-text);
}

.perfrig-gdpr-highlight p:last-child {
    margin-bottom: 0;
}

.perfrig-gdpr-highlight strong {
    color: var(--pg-primary);
}

.perfrig-gdpr-list {
    list-style: none;
    padding: 0;
    margin: var(--pspace-md) 0;
}

.perfrig-gdpr-list li {
    margin-bottom: var(--pspace-sm);
    padding-left: var(--pspace-xl);
    position: relative;
    color: var(--pg-gray);
}

.perfrig-gdpr-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--pg-primary);
    font-weight: 600;
    font-size: 16px;
}

.perfrig-gdpr-list-check {
    list-style: none;
    padding: 0;
    margin: var(--pspace-md) 0;
}

.perfrig-gdpr-list-check li {
    margin-bottom: var(--pspace-sm);
    padding-left: var(--pspace-xl);
    position: relative;
    color: var(--pg-gray);
}

.perfrig-gdpr-list-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pg-secondary);
    font-weight: 600;
    font-size: 16px;
}

.perfrig-gdpr-table-wrap {
    overflow-x: auto;
    margin: var(--pspace-2xl) 0;
    border-radius: var(--pradius-xl);
    border: 1px solid var(--pg-border);
}

.perfrig-gdpr-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--pg-card);
}

.perfrig-gdpr-table th {
    background: rgba(6, 215, 246, 0.1);
    color: var(--pg-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: var(--pspace-md);
    text-align: left;
    border-bottom: 2px solid var(--pg-primary);
}

.perfrig-gdpr-table td {
    padding: var(--pspace-md);
    border-bottom: 1px solid var(--pg-border);
    color: var(--pg-gray);
    font-size: 14px;
}

.perfrig-gdpr-table tr:last-child td {
    border-bottom: none;
}

.perfrig-gdpr-table tr:hover td {
    background: rgba(6, 215, 246, 0.02);
}

.perfrig-gdpr-contact-box {
    background: var(--pg-card);
    border: 2px solid rgba(6, 215, 246, 0.2);
    border-radius: var(--pradius-3xl);
    padding: var(--pspace-3xl);
    text-align: center;
    margin: var(--pspace-4xl) 0;
    position: relative;
    overflow: hidden;
}

.perfrig-gdpr-contact-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(6, 215, 246, 0.03), transparent);
    transform: rotate(45deg);
    animation: shineAnim 8s ease-in-out infinite;
}

@keyframes shineAnim {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.perfrig-gdpr-contact-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--pspace-md);
    color: var(--pg-primary);
}

.perfrig-gdpr-contact-email {
    font-size: 24px;
    font-weight: 600;
    color: var(--pg-secondary);
    margin: var(--pspace-lg) 0;
    padding: var(--pspace-md) var(--pspace-xl);
    background: rgba(6, 215, 246, 0.05);
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgba(6, 215, 246, 0.2);
}

.perfrig-gdpr-contact-email i {
    margin-right: var(--pspace-sm);
    color: var(--pg-primary);
}

.perfrig-gdpr-contact-note {
    color: var(--pg-gray);
    font-size: 14px;
}

.perfrig-gdpr-promise {
    background: linear-gradient(135deg, var(--pg-primary), var(--pg-accent));
    border-radius: var(--pradius-3xl);
    padding: var(--pspace-3xl);
    margin: var(--pspace-4xl) 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.perfrig-gdpr-promise::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shineAnim 6s ease-in-out infinite;
}

.perfrig-gdpr-promise h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: var(--pspace-lg);
    position: relative;
    z-index: 2;
}

.perfrig-gdpr-promise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--pspace-md);
    margin: var(--pspace-xl) 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .perfrig-gdpr-promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .perfrig-gdpr-promise-grid {
        grid-template-columns: 1fr;
    }
}

.perfrig-gdpr-promise-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--pradius-xl);
    padding: var(--pspace-md);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.perfrig-gdpr-promise-item i {
    font-size: 24px;
    margin-bottom: var(--pspace-xs);
    color: white;
}

.perfrig-gdpr-promise-item span {
    font-size: 14px;
    font-weight: 600;
}

.perfrig-gdpr-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pg-primary), var(--pg-secondary), transparent);
    margin: var(--pspace-4xl) 0;
}

.perfrig-gdpr-divider-light {
    width: 100%;
    height: 1px;
    background: var(--pg-border);
    margin: var(--pspace-2xl) 0;
}

.perfrig-gdpr-footer {
    margin-top: var(--pspace-5xl);
    padding: var(--pspace-3xl) 0;
    border-top: 1px solid var(--pg-border);
    text-align: center;
}

.perfrig-gdpr-footer-tagline {
    font-size: 20px;
    font-weight: 700;
    background: var(--pg-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: var(--pspace-md) 0;
}

.perfrig-gdpr-footer-links {
    margin: var(--pspace-lg) 0;
}

.perfrig-gdpr-footer-links a {
    color: var(--pg-primary);
    text-decoration: none;
    margin: 0 var(--pspace-sm);
    transition: color var(--ptransition-fast);
}

.perfrig-gdpr-footer-links a:hover {
    color: var(--pg-secondary);
}

.perfrig-gdpr-footer-small {
    font-size: 14px;
    color: var(--pg-gray);
}

@media (max-width: 1024px) {
    .perfrig-gdpr-block {
        padding: var(--pspace-4xl) var(--pspace-lg);
    }
    
    .perfrig-gdpr-header h1 {
        font-size: 42px;
    }
    
    .perfrig-gdpr-section h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .perfrig-gdpr-block {
        padding: var(--pspace-3xl) var(--pspace-md);
    }
    
    .perfrig-gdpr-header h1 {
        font-size: 36px;
    }
    
    .perfrig-gdpr-section {
        padding: var(--pspace-xl);
    }
    
    .perfrig-gdpr-section h2 {
        font-size: 24px;
    }
    
    .perfrig-gdpr-section h3 {
        font-size: 20px;
    }
    
    .perfrig-gdpr-contact-email {
        font-size: 18px;
        word-break: break-all;
    }
}

@media (max-width: 480px) {
    .perfrig-gdpr-header h1 {
        font-size: 28px;
    }
    
    .perfrig-gdpr-section h2 {
        font-size: 22px;
    }
    
    .perfrig-gdpr-section {
        padding: var(--pspace-lg);
    }
    
    .perfrig-gdpr-promise h3 {
        font-size: 24px;
    }
}

@media print {
    .perfrig-orb-1, .perfrig-orb-2, body::before,
    .perfrig-gdpr-section::before, .perfrig-gdpr-promise::before,
    .perfrig-gdpr-contact-box::before {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .perfrig-gdpr-section {
        background: white;
        border: 1px solid #ddd;
        box-shadow: none;
    }
    
    .perfrig-gdpr-section h2 {
        color: #333;
        -webkit-text-fill-color: #333;
        background: none;
    }
    
    a {
        color: #333;
        text-decoration: underline;
    }
}