/* 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;
}

.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);
}

/* 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; }
}