/* Premium Page Styles - Matching Main Page Design */
/* Electric Grid & Spider Web Patterns */
/* Version 20.0 - Premium Professional Pricing Design */

.page-content-section {
    padding: 120px 0 80px;
    min-height: auto;
    background: linear-gradient(135deg, #0a0e1a 0%, #0f1520 30%, #141a28 60%, #0f1520 100%);
    color: var(--text-primary) !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-image: 
        radial-gradient(ellipse at top left, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0e1a 0%, #0f1520 30%, #141a28 60%, #0f1520 100%);
}

.page-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 212, 255, 0.08) 5px, rgba(0, 212, 255, 0.08) 7px),
        repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(0, 102, 255, 0.06) 5px, rgba(0, 102, 255, 0.06) 7px),
        repeating-linear-gradient(0deg, transparent, transparent 5px, rgba(0, 212, 255, 0.04) 5px, rgba(0, 212, 255, 0.04) 7px);
    background-size: 120px 120px, 120px 120px, 120px 120px;
    background-position: 0 0, 0 0, 0 0;
    pointer-events: none;
    opacity: 0.4;
    z-index: 1;
    animation: web-pulse 5.5s ease-in-out infinite;
    filter: drop-shadow(0 0 2px rgba(0, 212, 255, 0.4));
}

@keyframes web-pulse {
    0%, 100% { 
        opacity: 0.3;
        filter: drop-shadow(0 0 2px rgba(0, 212, 255, 0.4));
    }
    50% { 
        opacity: 0.6;
        filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.7));
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 32px;
        max-width: 100%;
    }
}

.page-header {
    margin-bottom: 56px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary) !important;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-align: center;
    line-height: 1.2;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.3),
        0 2px 10px rgba(0, 102, 255, 0.1);
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga" 1, "kern" 1, "calt" 1;
}

.page-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #d0d8e8;
    letter-spacing: -0.02em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 0;
}

.page-content {
    background: linear-gradient(135deg, rgba(16, 20, 42, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%) !important;
    padding: 36px;
    border-radius: 18px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 212, 255, 0.1);
    position: relative;
    z-index: 2;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 650px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-content {
        padding: 28px;
        max-width: 100%;
    }
}

.page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(0, 212, 255, 0.08) 60px, rgba(0, 212, 255, 0.12) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(0, 212, 255, 0.08) 60px, rgba(0, 212, 255, 0.12) 61px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 0 2px rgba(0, 212, 255, 0.4));
    animation: grid-pulse 4s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% { 
        opacity: 0.2;
        filter: drop-shadow(0 0 2px rgba(0, 212, 255, 0.4));
    }
    50% { 
        opacity: 0.5;
        filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.7));
    }
}

.page-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary) !important;
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    line-height: 1.3;
    text-rendering: optimizeLegibility;
    position: relative;
    z-index: 2;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #00d4ff 0%, #00aacc 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.page-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 36px;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.page-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: -0.01em;
    color: #d0d8e8 !important;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
    position: relative;
    z-index: 2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.page-content ul {
    margin: 24px 0;
    padding-left: 32px;
    position: relative;
    z-index: 2;
}

.page-content li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: -0.01em;
    color: #d0d8e8 !important;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.page-content a {
    color: #00d4ff;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.2s ease;
    position: relative;
    z-index: 2;
}

.page-content a:hover {
    color: #33e0ff;
    border-bottom-color: #33e0ff;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.page-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Premium Info Box */
.page-content > div[style*="background"] {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 102, 255, 0.12) 100%) !important;
    border-left: 4px solid #00d4ff !important;
    border-radius: 12px !important;
    padding: 24px !important;
    margin-top: 3rem !important;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.2) !important;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.page-content > div[style*="background"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0, 212, 255, 0.1) 4px, rgba(0, 212, 255, 0.1) 6px);
    opacity: 0.3;
    pointer-events: none;
}

/* Footer Styles - Premium Dark Mode */
.footer,
.footer-enterprise {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.footer::before,
.footer-enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(0, 212, 255, 0.08) 100px, rgba(0, 212, 255, 0.12) 101px),
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(0, 212, 255, 0.08) 100px, rgba(0, 212, 255, 0.12) 101px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 0 2px rgba(0, 212, 255, 0.4));
    animation: grid-pulse 4s ease-in-out infinite;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.footer-column.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #d0d8e8;
    line-height: 1.7;
    letter-spacing: -0.2px;
    margin-top: 20px;
    max-width: 380px;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #d0d8e8;
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: -0.2px;
}

.footer-links a:hover {
    color: #00d4ff;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-tertiary);
    letter-spacing: -0.1px;
}

/* Contact Form Styles */
#contactForm {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    max-width: 100%;
}

#contactForm > div {
    margin-bottom: 18px;
}

#contactForm > div:last-of-type {
    margin-bottom: 24px;
}

#contactForm label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(16, 20, 42, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    resize: vertical;
    box-sizing: border-box;
}

#contactForm textarea {
    min-height: 100px;
}

#contactForm input:focus,
#contactForm textarea:focus {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1), 0 0 20px rgba(0, 212, 255, 0.2);
    outline: 2px solid var(--accent-security);
    outline-offset: 2px;
}

/* Form Validation States */
#contactForm input.input-error,
#contactForm textarea.input-error {
    border-color: rgba(255, 68, 68, 0.6);
    background: rgba(255, 68, 68, 0.05);
    animation: shake 0.3s ease-in-out;
}

#contactForm input.input-valid,
#contactForm textarea.input-valid {
    border-color: rgba(0, 255, 136, 0.5);
    background: rgba(0, 255, 136, 0.03);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

#contactForm button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

#formMessage ul {
    margin: 12px 0 0 0;
    padding-left: 24px;
    list-style: disc;
}

#formMessage li {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.5;
}

#contactForm button[type="submit"] {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00d4ff 0%, #00aacc 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 
        0 6px 24px rgba(0, 212, 255, 0.4),
        0 0 60px rgba(0, 212, 255, 0.2);
    min-height: 44px;
}

#contactForm button[type="submit"]:focus {
    outline: 3px solid var(--accent-security-light);
    outline-offset: 2px;
}

#contactForm button[type="submit"]:hover {
    background: linear-gradient(135deg, #33e0ff 0%, #00d4ff 100%);
    box-shadow: 
        0 16px 48px rgba(0, 212, 255, 0.5),
        0 0 80px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

#formMessage {
    margin-top: 24px;
    padding: 16px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    display: none;
}

#contactForm + div {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

#contactForm + div h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

#contactForm + div p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #d0d8e8;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 32px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-content {
        padding: 40px 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column.footer-brand {
        max-width: 100%;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.blog-card {
    background: rgba(15, 21, 32, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 212, 255, 0.1);
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-category {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-security, #00d4ff);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.blog-date {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-tertiary, #9ca8b8);
}

.blog-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary, #ffffff);
    margin: 0 0 16px 0;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.blog-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary, #c8d0e0);
    margin: 0 0 20px 0;
}

.blog-read-more {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-security, #00d4ff);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.blog-read-more:hover {
    color: var(--accent-security-light, #33e0ff);
    gap: 10px;
}

/* Help Center Styles - Premium 3D Design */
.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 28px;
    margin-top: 56px;
}

.help-category-card {
    background: linear-gradient(135deg, rgba(15, 21, 32, 0.85) 0%, rgba(26, 31, 58, 0.85) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 18px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.1) inset,
        0 0 40px rgba(0, 212, 255, 0.05);
}

.help-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 212, 255, 0.08) 5px, rgba(0, 212, 255, 0.08) 7px),
        repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(0, 102, 255, 0.06) 5px, rgba(0, 102, 255, 0.06) 7px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 0 2px rgba(0, 212, 255, 0.4));
    animation: web-pulse 5.5s ease-in-out infinite;
}

.help-category-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 212, 255, 0.3) inset,
        0 0 80px rgba(0, 212, 255, 0.2);
}

.help-category-card > * {
    position: relative;
    z-index: 2;
}

.help-category-icon {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.4));
    animation: icon-pulse 3s ease-in-out infinite;
    display: inline-block;
}

/* Icons removed for cleaner premium look */

.help-category-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.help-category-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #d0d8e8;
    margin: 0 0 0 0;
    letter-spacing: -0.01em;
}

.help-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-links li {
    margin: 0;
}

.help-links a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.help-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    font-weight: 700;
    color: #00d4ff;
}

.help-links a:hover {
    color: #33e0ff;
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.2);
    gap: 14px;
}

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

/* Accordion Styles - Premium Expandable Answers */
.help-accordion {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-accordion-item {
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.help-accordion-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.06);
}

.help-accordion-button {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    color: #00d4ff;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
}

.help-accordion-button:hover {
    color: #00f0ff;
    background: rgba(0, 212, 255, 0.08);
}

.help-accordion-button span:first-child {
    flex: 1;
}

.help-accordion-icon {
    font-size: 24px;
    font-weight: 300;
    color: #00d4ff;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
    width: 24px;
    text-align: center;
}

.help-accordion-item.active .help-accordion-icon {
    transform: rotate(45deg);
    color: #00f0ff;
}

.help-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.help-accordion-item.active .help-accordion-content {
    max-height: 2000px;
    padding: 0 24px 24px 24px;
}

.help-accordion-text {
    color: #d0d8e8;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: -0.01em;
    padding-top: 8px;
}

.help-accordion-text p {
    margin: 0 0 16px 0;
    color: #d0d8e8;
}

.help-accordion-text p:last-child {
    margin-bottom: 0;
}

.help-accordion-text strong {
    color: #00d4ff;
    font-weight: 600;
}

.help-accordion-text ol,
.help-accordion-text ul {
    margin: 12px 0 16px 0;
    padding-left: 24px;
    color: #d0d8e8;
}

.help-accordion-text li {
    margin: 8px 0;
    color: #d0d8e8;
}

.help-accordion-text code {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.help-search-section {
    margin-top: 80px;
    padding: 56px 48px;
    background: linear-gradient(135deg, rgba(15, 21, 32, 0.85) 0%, rgba(26, 31, 58, 0.85) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.1) inset,
        0 0 40px rgba(0, 212, 255, 0.05);
}

.help-search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(0, 212, 255, 0.08) 60px, rgba(0, 212, 255, 0.12) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(0, 212, 255, 0.08) 60px, rgba(0, 212, 255, 0.12) 61px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 0 2px rgba(0, 212, 255, 0.4));
    animation: grid-pulse 4s ease-in-out infinite;
}

.help-search-section > * {
    position: relative;
    z-index: 2;
}

.help-search-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.help-search-description {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #d0d8e8;
    margin: 0 0 36px 0;
    line-height: 1.7;
    letter-spacing: -0.1px;
}

.help-search-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .help-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .help-accordion-button {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .help-accordion-content {
        padding: 0 20px !important;
    }
    
    .help-accordion-item.active .help-accordion-content {
        padding: 0 20px 20px 20px !important;
    }
    
    .help-search-section {
        padding: 32px 24px;
    }
    
    .help-search-actions {
        flex-direction: column;
    }
    
    .help-search-actions .btn-primary-enterprise,
    .help-search-actions .btn-secondary-enterprise {
        width: 100%;
    }
}

/* Dashboard Install Banner */
.dashboard-install-banner {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(0, 102, 255, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 18px;
    padding: 28px;
    margin-top: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.dashboard-install-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 212, 255, 0.08) 5px, rgba(0, 212, 255, 0.08) 7px),
        repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(0, 102, 255, 0.06) 5px, rgba(0, 102, 255, 0.06) 7px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.dashboard-install-banner > * {
    position: relative;
    z-index: 2;
}

.dashboard-install-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #00d4ff;
    margin: 0 0 14px 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.dashboard-install-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #c8d0e0;
    margin: 0 0 20px 0;
    line-height: 1.75;
    letter-spacing: -0.01em;
}

.dashboard-install-banner .btn-primary-enterprise {
    display: inline-block;
    text-decoration: none;
}

/* Dashboard Styles - Premium 3D Design */
.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.dashboard-stat-card {
    background: linear-gradient(135deg, rgba(15, 21, 32, 0.85) 0%, rgba(26, 31, 58, 0.85) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 18px;
    padding: 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.1) inset,
        0 0 40px rgba(0, 212, 255, 0.05);
}

.dashboard-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(0, 212, 255, 0.08) 60px, rgba(0, 212, 255, 0.12) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(0, 212, 255, 0.08) 60px, rgba(0, 212, 255, 0.12) 61px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 0 2px rgba(0, 212, 255, 0.4));
    animation: grid-pulse 4s ease-in-out infinite;
}

.dashboard-stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 212, 255, 0.2) inset,
        0 0 80px rgba(0, 212, 255, 0.2);
}

.dashboard-stat-card > * {
    position: relative;
    z-index: 2;
}

.stat-icon {
    font-size: 52px;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.4));
    animation: icon-pulse 3s ease-in-out infinite;
}

.stat-icon-svg {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.4));
    object-fit: contain;
    animation: icon-pulse 3s ease-in-out infinite;
}

.dashboard-stat-card:hover .stat-icon-svg {
    transform: scale(1.15) translateY(-4px);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
}

@keyframes icon-pulse {
    0%, 100% { 
        filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.4));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.7));
        transform: scale(1.05);
    }
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary, #ffffff);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.stat-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: var(--text-tertiary, #9ca8b8);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.dashboard-card {
    background: linear-gradient(135deg, rgba(15, 21, 32, 0.85) 0%, rgba(26, 31, 58, 0.85) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 18px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.1) inset,
        0 0 40px rgba(0, 212, 255, 0.05);
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 212, 255, 0.08) 5px, rgba(0, 212, 255, 0.08) 7px),
        repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(0, 102, 255, 0.06) 5px, rgba(0, 102, 255, 0.06) 7px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 0 2px rgba(0, 212, 255, 0.4));
    animation: web-pulse 5.5s ease-in-out infinite;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 212, 255, 0.3) inset,
        0 0 80px rgba(0, 212, 255, 0.2);
}

.dashboard-card > * {
    position: relative;
    z-index: 2;
}

.dashboard-card-full {
    grid-column: 1 / -1;
}

.dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    flex-wrap: wrap;
    gap: 16px;
}

.dashboard-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    font-feature-settings: "liga" 1, "kern" 1, "calt" 1;
    text-rendering: optimizeLegibility;
}

.dashboard-card-content {
    color: var(--text-secondary, #c8d0e0);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: -0.01em;
}

/* Protection Status */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.status-indicator.active .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-success, #00ff88);
    animation: pulse-dot 2s ease-in-out infinite;
}

.status-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-success, #00ff88);
}

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

/* Protection Settings */
.protection-settings {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.2s ease;
}

.setting-item:hover {
    padding-left: 8px;
    border-bottom-color: rgba(0, 212, 255, 0.2);
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-info {
    flex: 1;
}

.setting-label {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary, #ffffff);
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.setting-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary, #c8d0e0);
    line-height: 1.75;
    letter-spacing: -0.01em;
    margin: 0;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    border-radius: 28px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--accent-security, #00d4ff);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* Whitelist Management */
.whitelist-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.whitelist-input-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.whitelist-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary, #ffffff);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.2s ease;
}

.whitelist-input:focus {
    outline: none;
    border-color: var(--accent-security, #00d4ff);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.whitelist-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 300px;
    overflow-y: auto;
}

.whitelist-empty {
    padding: 32px;
    text-align: center;
    color: var(--text-tertiary, #9ca8b8);
    font-size: 14px;
}

.whitelist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 212, 255, 0.02) 100%);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.whitelist-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 212, 255, 0.04) 100%);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.1);
}

.whitelist-item:hover::before {
    left: 100%;
}

.whitelist-domain {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary, #ffffff);
    letter-spacing: -0.01em;
    line-height: 1.5;
}

.whitelist-remove {
    background: transparent;
    border: none;
    color: var(--accent-danger, #ff3366);
    font-size: 24px;
    cursor: pointer;
    padding: 0 8px;
    line-height: 1;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.whitelist-remove:hover {
    background: rgba(255, 51, 102, 0.1);
    transform: scale(1.1);
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.activity-empty {
    padding: 48px;
    text-align: center;
    color: var(--text-tertiary, #9ca8b8);
    font-size: 14px;
}

.activity-item {
    display: flex;
    gap: 18px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 212, 255, 0.02) 100%);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.activity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0, 212, 255, 0.05) 4px, rgba(0, 212, 255, 0.05) 6px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.activity-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 212, 255, 0.04) 100%);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.1);
}

.activity-item:hover::before {
    opacity: 1;
}

.activity-item.activity-block {
    border-left: 3px solid var(--accent-danger, #ff3366);
}

.activity-item.activity-warn {
    border-left: 3px solid var(--accent-warning, #ffb020);
}

.activity-item.activity-allow {
    border-left: 3px solid var(--accent-success, #00ff88);
}

.activity-icon {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary, #ffffff);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.activity-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary, #c8d0e0);
    line-height: 1.75;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    word-break: break-word;
}

.activity-time {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-tertiary, #9ca8b8);
}

/* Subscription Status */
.subscription-status {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.subscription-plan {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 102, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

.subscription-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0, 212, 255, 0.1) 4px, rgba(0, 212, 255, 0.1) 6px);
    opacity: 0.3;
    pointer-events: none;
}

.plan-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-badge.free {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary, #ffffff);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.plan-badge.pro {
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-security, #00d4ff);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.plan-badge.trial {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 102, 255, 0.15) 100%);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.plan-badge.expired {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.15) 100%);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.plan-details {
    flex: 1;
}

.plan-name {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary, #ffffff);
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.plan-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary, #c8d0e0);
    line-height: 1.75;
    letter-spacing: -0.01em;
    margin: 0;
}

.subscription-usage {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.usage-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2) inset;
}

.usage-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff 0%, #33e0ff 50%, #00d4ff 100%);
    background-size: 200% 100%;
    border-radius: 6px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: usage-shine 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

@keyframes usage-shine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.usage-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary, #c8d0e0);
    margin-top: 10px;
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.6;
}

/* Settings List */
.settings-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.setting-select {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary, #ffffff);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 200px;
}

.setting-select:focus {
    outline: none;
    border-color: var(--accent-security, #00d4ff);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-danger {
    background: rgba(255, 51, 102, 0.1);
    color: var(--accent-danger, #ff3366);
    border-color: rgba(255, 51, 102, 0.3);
}

.btn-danger:hover {
    background: rgba(255, 51, 102, 0.2);
}

/* Notifications */
.dashboard-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 16px 24px;
    background: rgba(15, 21, 32, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    color: var(--text-primary, #ffffff);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.dashboard-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.dashboard-notification-success {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-card-full {
        grid-column: 1;
    }
    
    .setting-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .setting-select {
        width: 100%;
    }
    
    .whitelist-input-group {
        flex-direction: column;
    }
    
    .whitelist-input-group button {
        width: 100%;
    }
}

/* Pricing Page Styles - Premium Professional Design */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 40px;
    margin-top: 64px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(15, 21, 32, 0.95) 0%, rgba(20, 28, 45, 0.95) 50%, rgba(26, 31, 58, 0.95) 100%);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 2px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    padding: 48px 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 212, 255, 0.1) inset,
        0 0 80px rgba(0, 212, 255, 0.08),
        0 4px 20px rgba(0, 0, 0, 0.3) inset;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(0, 212, 255, 0.08) 60px, rgba(0, 212, 255, 0.12) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(0, 212, 255, 0.08) 60px, rgba(0, 212, 255, 0.12) 61px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 0 2px rgba(0, 212, 255, 0.4));
    animation: grid-pulse 4s ease-in-out infinite;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 
        0 32px 100px rgba(0, 0, 0, 0.7),
        0 0 0 2px rgba(0, 212, 255, 0.4) inset,
        0 0 140px rgba(0, 212, 255, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.5) inset;
}

.pricing-card-featured {
    border-color: rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, rgba(15, 21, 32, 0.98) 0%, rgba(20, 28, 45, 0.98) 50%, rgba(26, 31, 58, 0.98) 100%);
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.6),
        0 0 0 2px rgba(0, 212, 255, 0.3) inset,
        0 0 120px rgba(0, 212, 255, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.4) inset,
        0 0 0 1px rgba(0, 255, 136, 0.2);
    transform: scale(1.02);
}

.pricing-card-featured:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 
        0 36px 120px rgba(0, 0, 0, 0.8),
        0 0 0 3px rgba(0, 212, 255, 0.5) inset,
        0 0 160px rgba(0, 212, 255, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.6) inset,
        0 0 0 1px rgba(0, 255, 136, 0.3);
}

.pricing-card > * {
    position: relative;
    z-index: 2;
}

.pricing-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.25) 0%, rgba(0, 212, 255, 0.2) 100%);
    border: 1.5px solid rgba(0, 255, 136, 0.4);
    border-radius: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 3;
    box-shadow: 
        0 4px 16px rgba(0, 255, 136, 0.3),
        0 0 20px rgba(0, 255, 136, 0.2) inset;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.pricing-plan-name {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 20px 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.pricing-amount {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 60%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    line-height: 1;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

.pricing-period {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #b0c4de;
    letter-spacing: -0.02em;
    opacity: 0.9;
}

.pricing-description {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #d0d8e8;
    line-height: 1.8;
    letter-spacing: -0.02em;
    margin: 0;
    opacity: 0.95;
}

.pricing-savings-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #00ff88;
    margin-top: 12px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.pricing-duration-selector {
    margin: 32px 0 40px 0;
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 102, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.pricing-duration-selector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0, 212, 255, 0.05) 4px, rgba(0, 212, 255, 0.05) 6px);
    opacity: 0.3;
    pointer-events: none;
}

.pricing-duration-selector > * {
    position: relative;
    z-index: 1;
}

.pricing-duration-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.pricing-duration-select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(15, 21, 32, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 14px;
    color: var(--text-primary, #ffffff);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%2300d4ff' d='M7 10L2 5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.1) inset;
}

.pricing-duration-select:hover {
    border-color: rgba(0, 212, 255, 0.5);
    background-color: rgba(15, 21, 32, 0.95);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.2) inset,
        0 0 30px rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
}

.pricing-duration-select:focus {
    outline: none;
    border-color: rgba(0, 212, 255, 0.7);
    box-shadow: 
        0 0 0 4px rgba(0, 212, 255, 0.15),
        0 6px 24px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 212, 255, 0.2);
}

.pricing-features {
    margin-bottom: 40px;
    padding-top: 8px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #d0d8e8;
    line-height: 1.8;
    letter-spacing: -0.02em;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.feature-icon {
    color: #00ff88;
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.4));
}

.pricing-cta {
    margin-top: auto;
    padding-top: 8px;
}

.pricing-cta .btn-primary-enterprise,
.pricing-cta .btn-secondary-enterprise {
    width: 100%;
    padding: 18px 32px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 14px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.2) inset,
        0 0 40px rgba(0, 212, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-cta .btn-primary-enterprise:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 212, 255, 0.3) inset,
        0 0 60px rgba(0, 212, 255, 0.3);
}

.pricing-faq {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 2px solid rgba(0, 212, 255, 0.15);
}

.pricing-faq-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 56px;
    letter-spacing: -0.03em;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.pricing-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.pricing-faq-item {
    background: linear-gradient(135deg, rgba(15, 21, 32, 0.85) 0%, rgba(20, 28, 45, 0.85) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1.5px solid rgba(0, 212, 255, 0.15);
    border-radius: 18px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.08) inset;
}

.pricing-faq-item:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-6px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.2) inset,
        0 0 60px rgba(0, 212, 255, 0.15);
}

.pricing-faq-question {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary, #ffffff);
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.pricing-faq-answer {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #d0d8e8;
    line-height: 1.8;
    letter-spacing: -0.01em;
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pricing-card {
        padding: 36px 28px;
    }
    
    .pricing-plan-name {
        font-size: 32px;
    }
    
    .pricing-amount {
        font-size: 48px;
    }
    
    .pricing-duration-selector {
        padding: 20px;
    }
    
    .pricing-faq-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .pricing-faq-title {
        font-size: 36px;
    }
}
