/* pingbooster.site/style.css */
/* BRAND CORE RESET & PLUGINS THEME GLOBAL LAYOUT */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --bg-dark: #0a0e17;
    --bg-card: #141d2f;
    --logo-blue: #0066ff;     
    --logo-green: #10b981;    
    --logo-green-hover: #059669;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --border: #1e293b;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.hero-background {
    background-image: url('images/banner-772x250.png');
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Portal CSS*/
.portal-wrapper {
    padding: 40px 20px;
    max-width: 960px;
    margin: 0 auto;
}

.portal-header {
    text-align: center;
    margin-bottom: 24px;
}

#fs-portal-container iframe {
    width: 100% !important;
    border: 1px solid #262933;
    border-radius: 8px;
}


/* Help Desk Layout Options */
.support-wrapper {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.support-heading {
    text-align: center;
    margin-bottom: 24px;
}

.support-heading h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.support-heading p {
    color: var(--text-muted, #9ca3af);
    font-size: 1rem;
}

#fs-support-container iframe {
    width: 100% !important;
    border: 1px solid #262933;
    border-radius: 8px;
}


/* HEADER NAVIGATION */
header {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    background-color: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--logo-blue);
}

/* HERO PROFILES */
.hero {
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    background: linear-gradient(to right, var(--logo-blue), var(--logo-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 35px;
}

/* GRAPHIC ASSET PACK WRAPPERS */
.product-preview {
    max-width: 772px;
    margin: 40px auto 0;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
    overflow: hidden;
    background-color: var(--bg-card);
}

.product-preview img {
    width: 100%;
    height: auto;
    display: block;
}

/* PRICING TIERS GRID SYSTEMS */
.pricing {
    padding: 80px 0 40px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.4);
}

.card.featured {
    border-color: var(--logo-green);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
}

.card-header-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.badge {
    position: absolute;
    top: -14px;
    right: 30px;
    background-color: var(--logo-green);
    color: #0a0e17;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* DATA STRUCTURING TIERS SPECIFICATION TABLES */
.tables-section {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border);
}

.table-container {
    max-width: 900px;
    margin: 0 auto 50px;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    background-color: var(--bg-card);
}

.table-title {
    font-size: 1.8rem;
    margin: 20px 0 15px;
    text-align: center;
    color: var(--text-light);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1rem;
}

th, td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
}

th {
    background-color: rgba(0, 102, 255, 0.1);
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

tr:last-child td {
    border-bottom: none;
}

.td-feature {
    font-weight: 600;
    color: var(--text-light);
    width: 35%;
}

.status-check {
    color: var(--logo-green);
    font-weight: bold;
}

.status-cross {
    color: #ef4444;
    font-weight: bold;
}

/* CORE ANALYTICS ARCHITECTURE SHIELD VISUALS */
.analytics-breakdown {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border);
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.analytics-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.analytics-text h2 span {
    color: var(--logo-green);
}

.analytics-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.features-deep-dive {
    margin-top: 30px;
}

.deep-dive-item {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid var(--logo-blue);
}

.deep-dive-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

/* MARKETING ARTICLE LAYOUT ENGINE */
.seo-article-section {
    padding: 80px 0;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
    text-align: center;
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--logo-green);
}

.article-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* BUTTONS ARCHITECTURE */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--logo-blue);
    color: white;
}

.btn-primary:hover {
    background-color: #0052cc;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-green {
    background-color: var(--logo-green);
    color: #0a0e17;
}

.btn-green:hover {
    background-color: var(--logo-green-hover);
}

/* STATIC FOOTER PATTERN */
footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .analytics-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    table { font-size: 0.9rem; }
    th, td { padding: 10px 12px; }
}


/* EXTENSION ACTION PORTAL GRID BUTTON SYSTEMS */
.action-portal-section {
    padding: 50px 0;
    background-color: var(--bg-dark);
    text-align: center;
    border-top: 1px solid var(--border);
}

.portal-button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.portal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    color: #ffffff;
    transition: transform 0.2s, filter 0.2s;
    min-width: 220px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.portal-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* EXACT MATCH BUTTON HEX SPECS */
.btn-orange {
    background-color: #f0930a; /* Vibrant orange layout match */
}

.btn-sky {
    background-color: #0091ff; /* Clean light layout action blue */
}

.btn-wp-blue {
    background-color: #0073aa; /* Classic match WordPress core color profile */
    border: 2px solid #000000;
}

.btn-purple {
    background-color: #7866ff; /* Soft violet palette setup */
}

.portal-icon {
    margin-left: 10px;
    font-size: 1.15rem;
}

.wp-inline-logo {
    background-color: #ffffff;
    color: #0073aa;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .portal-button-row {
        flex-direction: column;
    }
    .portal-btn {
        width: 100%;
        max-width: 340px;
    }
}

/* ==========================================================================
   BRAND CORE RESET & PLUGINS THEME GLOBAL LAYOUT
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --bg-dark: #0a0e17;
    --bg-card: #141d2f;
    --logo-blue: #0066ff;     
    --logo-green: #10b981;    
    --logo-green-hover: #059669;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --border: #1e293b;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER NAVIGATION */
header {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    background-color: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--logo-blue);
}

/* HERO PROFILES */
.hero {
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    background: linear-gradient(to right, var(--logo-blue), var(--logo-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 35px;
}

/* GRAPHIC ASSET PACK WRAPPERS */
.product-preview {
    max-width: 772px;
    margin: 40px auto 0;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
    overflow: hidden;
    background-color: var(--bg-card);
}

.product-preview img {
    width: 100%;
    height: auto;
    display: block;
}

/* PRICING TIERS GRID SYSTEMS */
.pricing {
    padding: 80px 0 40px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.4);
}

.card.featured {
    border-color: var(--logo-green);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
}

.card-header-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.badge {
    position: absolute;
    top: -14px;
    right: 30px;
    background-color: var(--logo-green);
    color: #0a0e17;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* DATA STRUCTURING TIERS SPECIFICATION TABLES */
.tables-section {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border);
}

.table-container {
    max-width: 900px;
    margin: 0 auto 50px;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    background-color: var(--bg-card);
}

.table-title {
    font-size: 1.8rem;
    margin: 20px 0 15px;
    text-align: center;
    color: var(--text-light);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1rem;
}

th, td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
}

th {
    background-color: rgba(0, 102, 255, 0.1);
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

tr:last-child td {
    border-bottom: none;
}

.td-feature {
    font-weight: 600;
    color: var(--text-light);
    width: 35%;
}

.status-check {
    color: var(--logo-green);
    font-weight: bold;
}

.status-cross {
    color: #ef4444;
    font-weight: bold;
}

/* CORE ANALYTICS ARCHITECTURE SHIELD VISUALS */
.analytics-breakdown {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border);
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.analytics-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.analytics-text h2 span {
    color: var(--logo-green);
}

.analytics-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.features-deep-dive {
    margin-top: 30px;
}

.deep-dive-item {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid var(--logo-blue);
}

.deep-dive-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

/* BUTTONS ARCHITECTURE */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--logo-blue);
    color: white;
}

.btn-primary:hover {
    background-color: #0052cc;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-green {
    background-color: var(--logo-green);
    color: #0a0e17;
}

.btn-green:hover {
    background-color: var(--logo-green-hover);
}

/* STATIC FOOTER PATTERN */
footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   EXTENSION ACTION PORTAL GRID BUTTON SYSTEMS (SCREENSHOT ALIGNMENT)
   ========================================================================== */
.action-portal-section {
    padding: 50px 0;
    background-color: var(--bg-dark);
    text-align: center;
    border-top: 1px solid var(--border);
}

.portal-button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.portal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    color: #ffffff;
    transition: transform 0.2s, filter 0.2s;
    min-width: 220px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.portal-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-orange { background-color: #f0930a; }
.btn-sky { background-color: #0091ff; }
.btn-wp-blue { 
    background-color: #0073aa; 
    border: 2px solid #000000;
}
.btn-purple { background-color: #7866ff; }

.portal-icon {
    margin-left: 10px;
    font-size: 1.15rem;
}

.wp-inline-logo {
    background-color: #ffffff;
    color: #0073aa;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    margin-right: 8px;
}

/* ==========================================================================
   LEGAL TERMS & CONDITIONS COMPLIANCE STYLES
   ========================================================================== */
.legal-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-meta {
    color: var(--logo-green);
    font-size: 0.9rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.legal-section {
    margin-bottom: 25px;
}

.legal-section h2 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 6px;
}

.legal-section p, .legal-section ul {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-section ul {
    padding-left: 20px;
    margin-top: 10px;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-contact-highlight {
    margin-top: 10px; 
    font-weight: 600; 
    color: #ffffff;
}

/* ==========================================================================
   FREEMIUS PORTAL & HELP DESK WRAPPERS
   ========================================================================== */
.portal-wrapper {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

.portal-header {
    margin-bottom: 30px;
    text-align: center;
}

.portal-header h1 {
    font-size: 2.5rem;
    color: var(--text-light);
}

.portal-header p {
    color: var(--text-muted);
}

#fs-portal-container {
    width: 100%;
    min-height: 650px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background-color: var(--bg-card);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.support-wrapper {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
}

.support-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.support-heading {
    text-align: center;
    margin-bottom: 30px;
}

.support-heading h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.support-heading p {
    color: var(--text-muted);
}

#fs-support-container {
    width: 100%;
    min-height: 500px;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 968px) {
    .analytics-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    table { font-size: 0.9rem; }
    th, td { padding: 10px 12px; }
}

@media (max-width: 768px) {
    .portal-button-row {
        flex-direction: column;
    }
    .portal-btn {
        width: 100%;
        max-width: 340px;
    }
    .legal-container, .support-card {
        padding: 20px;
    }
}

/* ==========================================================================
   MODERN COLORFUL NAVIGATION ENHANCEMENTS
   ========================================================================== */
header nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

header nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 0; /* Reset previous margin setup */
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

/* Individual vibrant color accents on hover */
header nav a[href*="pingbooster.site/"]:not([href$="html"]):not([href*="baidu"]):hover {
    color: #0091ff; /* Electric Blue for Home/Plans */
    background-color: rgba(0, 145, 255, 0.1);
}

header nav a[href*="baidu"]:hover {
    color: #ff4a4a; /* Baidu Red Accent */
    background-color: rgba(255, 74, 74, 0.1);
}

header nav a[href*="portal.html"]:hover {
    color: #7866ff; /* Portal Violet Accent */
    background-color: rgba(120, 102, 255, 0.1);
}

header nav a[href*="support.html"]:hover {
    color: var(--logo-green); /* Help Desk Emerald Green */
    background-color: rgba(16, 185, 129, 0.1);
}

/* High-Visibility Email CTA Button Setup */
header nav a.nav-cta {
    background: linear-gradient(135deg, #f0930a, #ff5e00);
    color: #ffffff !important;
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(240, 147, 10, 0.2);
}

header nav a.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(240, 147, 10, 0.4);
    filter: brightness(1.1);
}

/* Active Link Subtle Glow Effect */
header nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

header nav a:hover::after {
    transform: scaleX(1);
}

header nav a.nav-cta::after {
    display: none; /* Disable indicator bar on the button */
}


/* ==========================================================================
   KNOWLEDGE BASE DOCUMENTATION HUB STYLES
   ========================================================================== */
.kb-wrapper {
    margin: 50px auto;
    padding: 20px;
}

.kb-header {
    text-align: center;
    margin-bottom: 50px;
}

.kb-header h1 {
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.kb-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.kb-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* SIDEBAR LINK INTERFACE */
.kb-sidebar {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.kb-sidebar h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.kb-sidebar ul {
    list-style: none;
}

.kb-sidebar li {
    margin-bottom: 12px;
}

.kb-sidebar a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    display: block;
}

.kb-sidebar a:hover, .kb-sidebar a.active {
    color: var(--logo-blue);
}

/* DOCUMENTATION CONTENT ARTICLES */
.kb-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 12px;
}

.kb-article {
    margin-bottom: 50px;
    scroll-margin-top: 120px; /* Offset for header snap alignment */
}

.kb-article:last-child {
    margin-bottom: 0;
}

.kb-article h2 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.kb-article p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.kb-article ol {
    padding-left: 20px;
    color: var(--text-muted);
}

.kb-article li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.kb-article strong {
    color: var(--text-light);
}

/* NOTIFICATION ERROR HIGHLIGHTS */
.kb-alert {
    background-color: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.kb-alert strong {
    color: #ef4444;
    display: block;
    margin-bottom: 5px;
}

/* RESPONSIVE SUB-GRID ADAPTATIONS */
@media (max-width: 868px) {
    .kb-grid {
        grid-template-columns: 1fr;
    }
    .kb-sidebar {
        position: relative;
        top: 0;
    }
    .kb-content {
        padding: 25px;
    }
}


/* ==========================================================================
   NAVIGATION SUBMENU DROPDOWN ENGINE
   ========================================================================== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    color: var(--text-muted);
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
    user-select: none;
}

.nav-dropdown:hover .dropdown-trigger {
    color: #7866ff; /* Vibrant violet highlight for legal links */
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    padding: 8px 0;
    z-index: 200;
}

.dropdown-menu a {
    color: var(--text-muted) !important;
    padding: 10px 20px !important;
    margin: 0 !important;
    display: block !important;
    font-size: 0.9rem !important;
    border-radius: 0 !important;
    transition: all 0.2s ease !important;
}

.dropdown-menu a:hover {
    color: #ffffff !important;
    background-color: rgba(120, 102, 255, 0.1) !important;
}

/* Show the dropdown link panel cleanly on mouse hover */
.nav-dropdown:hover .dropdown-menu {
    display: block;
}

/* Hide fallback arrow indicators inside dropdown elements */
.dropdown-menu a::after {
    display: none !important;
}

/* ==========================================================================
   EXTENDED SEPARATED PRICING MANAGEMENT SHEETS
   ========================================================================== */
.free-package-wrapper {
    max-width: 900px;
    margin: 0 auto 60px;
}

.free-table-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.free-table-header {
    margin-bottom: 25px;
}

.free-table-header h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.free-table-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.free-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

/* Free Package Lower Repository Block Channel */
.free-action-channels {
    border-top: 1px solid var(--border);
    padding-top: 25px;
}

.free-action-channels p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.free-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-free-download {
    flex: 1;
    min-width: 260px;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-free-download span {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2px;
}

.link-direct {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid var(--border);
}

.link-direct:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-muted);
}

.link-wp {
    background-color: #21759b;
    color: #ffffff;
    border: 1px solid #1a5c7a;
}

.link-wp:hover {
    background-color: #1d6688;
    transform: translateY(-1px);
}

.wp-mini-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #21759b;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.7rem;
    margin-right: 6px;
    vertical-align: middle;
}

/* Pro Configuration Feature Lists adjustments */
.package-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.pro-features-list {
    list-style: none;
    padding: 0;
    margin: 0 Ram 30px 0;
    flex-grow: 1;
}

.pro-features-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pro-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--logo-green);
    font-weight: 800;
}

.buy-btn {
    width: 100%;
    margin-top: auto;
}

/* Responsive collapse limits */
@media (max-width: 768px) {
    .free-links-row {
        flex-direction: column;
    }
    .btn-free-download {
        width: 100%;
    }
}


/* ==========================================================================
   FREE EDITION SPECS TABLE TARGETED STYLES
   ========================================================================== */
.free-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px 0;
    text-align: left;
}

.free-specs-table th {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-light, #ffffff);
    padding: 14px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 2px solid var(--border, #333333);
}

.free-specs-table td {
    padding: 14px 18px;
    color: var(--text-muted, #a0a0a0);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border, #222222);
    line-height: 1.5;
}

/* Emphasize the feature names column */
.free-specs-table td.td-feature {
    color: var(--text-light, #ffffff);
    font-weight: 600;
    width: 35%;
}

/* Subtle row hover effect */
.free-specs-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.01);
}


/* ==========================================
   My Account / License Verification Styles
   ========================================== */
:root {
    --bg-color: #0d0e12;
    --card-bg: #16181f;
    --input-bg: #0b0c0f;
    --border-color: #262933;
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --success-bg: rgba(34, 197, 94, 0.12);
    --success-border: #22c55e;
    --success-text: #4ade80;
    --error-bg: rgba(239, 68, 68, 0.12);
    --error-border: #ef4444;
    --error-text: #f87171;
    --info-bg: rgba(37, 99, 235, 0.12);
    --info-border: #2563eb;
    --info-text: #60a5fa;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.account-container {
    width: 100%;
    max-width: 560px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.brand-header {
    text-align: center;
    margin-bottom: 24px;
}

.brand-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.brand-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.field-wrapper {
    display: flex;
    gap: 10px;
}

@media (max-width: 480px) {
    .field-wrapper {
        flex-direction: column;
    }
}

.field-wrapper input {
    flex: 1;
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.field-wrapper input:focus {
    border-color: var(--primary);
}

.field-wrapper button {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.field-wrapper button:hover {
    background: var(--primary-hover);
}

.field-wrapper button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.status-box {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
    display: none;
}

.status-box.info {
    display: block;
    background: var(--info-bg);
    border: 1px solid var(--info-border);
    color: var(--info-text);
}

.status-box.success {
    display: block;
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    color: var(--success-text);
}

.status-box.error {
    display: block;
    background: var(--error-bg);
    border: 1px solid var(--error-border);
    color: var(--error-text);
}

.footer-links {
    margin-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 8px;
}

.footer-links a:hover {
    color: var(--text-main);
    text-decoration: underline;
}


/* Lifetime Upsell Banner Styling */
.lifetime-upsell-card {
    background: #111827; /* Dark background matching upper card */
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.lifetime-upsell-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.25rem;
    color: #ffffff;
}

.lifetime-upsell-card p {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.lifetime-upsell-card .btn-primary {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.lifetime-upsell-card .btn-primary:hover {
    background-color: #1d4ed8;
}

/* Social Share Section Styles */
.social-share-wrapper {
    margin-top: 28px;
    padding: 20px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.share-label {
    font-weight: 600;
    color: #f8fafc;
    font-size: 0.95rem;
}

.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Platform Colors */
.share-btn.x-twitter { background-color: #000000; border: 1px solid #334155; }
.share-btn.facebook  { background-color: #1877f2; }
.share-btn.linkedin  { background-color: #0a66c2; }
.share-btn.whatsapp  { background-color: #25d366; }
.share-btn.reddit    { background-color: #ff4500; }
.share-btn.telegram  { background-color: #229ed9; }
.share-btn.pinterest { background-color: #e60023; }
.share-btn.email     { background-color: #64748b; }
.share-btn.copy-link { background-color: #3b82f6; }

/* Responsive adjustments */
@media (max-width: 600px) {
    .share-btn span {
        display: none; /* Shows icon only on small screen sizes for maximum density */
    }
    .share-btn {
        padding: 10px;
    }
}

/* =================================================================
   404 Custom Error Page Styles
   ================================================================= */
.error-container {
    max-width: 600px;
    margin: 80px auto;
    padding: 40px 20px;
    text-align: center;
}

.error-logo {
    margin-bottom: 20px;
}

.error-code {
    font-size: 5rem;
    font-weight: 800;
    color: #3b82f6;
    margin: 0;
    line-height: 1;
}

.error-title {
    font-size: 1.8rem;
    color: #f8fafc;
    margin-top: 10px;
    margin-bottom: 15px;
}

.error-desc {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-home {
    background-color: #3b82f6;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.btn-home:hover {
    background-color: #2563eb;
}

.btn-secondary {
    background-color: #1e293b;
    color: #cbd5e1;
    border: 1px solid #334155;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
    border-color: #64748b;
    color: #ffffff;
}


/* =================================================================
   HTML Sitemap Layout Styles
   ================================================================= */
.sitemap-container {
    max-width: 1000px;
    margin: 40px auto 60px auto;
    padding: 0 20px;
}

.page-title {
    font-size: 2.2rem;
    color: #f8fafc;
    margin-bottom: 8px;
}

.page-subtitle {
    color: #94a3b8;
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.sitemap-card {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 24px;
}

.sitemap-card h2 {
    font-size: 1.2rem;
    color: #3b82f6;
    margin-top: 0;
    margin-bottom: 16px;
    border-bottom: 1px solid #334155;
    padding-bottom: 8px;
}

.sitemap-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-card li {
    margin-bottom: 12px;
}

.sitemap-card li:last-child {
    margin-bottom: 0;
}

.sitemap-card a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.sitemap-card a:hover {
    color: #3b82f6;
    padding-left: 4px;
}


/* Footer Links Optimization */
.site-footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.site-footer a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.footer-contact {
    font-weight: 500;
}

/* =================================================================
   Header & Logo Link Styling Fix
   ================================================================= */
.site-header {
    background-color: #0f172a;
    padding: 15px 0;
    border-bottom: 1px solid #1e293b;
}

.flex-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Remove blue link color & default underline */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important; /* Removes blue underline */
    color: #ffffff !important;         /* Forces clean white text */
    font-weight: 700;
    font-size: 1.2rem;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.9;
    color: #3b82f6 !important;         /* Smooth light-blue hover */
}

/* Clean up logo image appearance */
.logo-link img {
    display: block;
    border-radius: 8px;                /* Smooth rounded corners */
    border: none !important;            /* Removes unwanted borders */
    outline: none;
    background: transparent;           /* Prevents white background box */
    object-fit: contain;
}