/* --- CSS VARIABLES & THEME CONFIGURATION --- */
:root {
    --bg-deep: #030304;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --accent-cyan: #00f3ff;
    --accent-cold: #aeeeff;
    --accent-purple: #7000ff;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-dim: #475569;
    
    --font-main: 'Inter', sans-serif;
    --font-code: 'JetBrains Mono', monospace;
    
    --blur-strength: 12px;
    --glow-spread: 0 0 20px rgba(0, 243, 255, 0.15);
}

/* --- RESET & BASE STYLES --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- UTILITY CLASSES: GLASSMORPHISM --- */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur-strength));
    -webkit-backdrop-filter: blur(var(--blur-strength));
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- ANIMATIONS --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 243, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 243, 255, 0); }
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1280px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-family: var(--font-code);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span { color: var(--accent-cyan); text-shadow: var(--glow-spread); }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }
.nav-links a:hover { color: var(--accent-cyan); }
.nav-links a.active { color: var(--accent-cyan); }

/* Dropdown Navigation */
.nav-item {
    position: relative;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.nav-item > a::after {
    content: '▼';
    font-size: 0.6rem;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.nav-item:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 320px;
    background: rgba(3, 3, 4, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.dropdown-item {
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    color: var(--text-primary);
}

.dropdown-item:hover {
    background: rgba(0, 243, 255, 0.08);
    color: var(--accent-cyan);
}

.dropdown-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: inherit;
}

.dropdown-item p {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--accent-cyan);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-glass);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--accent-cyan);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
}

.mobile-nav-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.mobile-nav-subitem {
    font-size: 1rem;
    color: var(--text-secondary);
    padding: 0.4rem 0 0.4rem 1rem;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

.mobile-nav-subitem:hover {
    color: var(--accent-cyan);
    border-left-color: var(--accent-cyan);
}

.btn-primary {
    background: rgba(0, 243, 255, 0.1);
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
    padding: 0.6rem 1.8rem;
    border-radius: 4px;
    font-family: var(--font-code);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 30px var(--accent-cyan);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.08) 0%, rgba(0,0,0,0) 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    width: 100%;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero h1.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1.cyan-text {
    color: var(--accent-cyan);
    -webkit-text-fill-color: var(--accent-cyan);
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* --- STATS GRID (BENTO UI) --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.stat-item {
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.stat-item:hover { transform: translateY(-5px); border-color: var(--accent-cyan); }

.stat-value {
    font-family: var(--font-code);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
}

/* --- PRICING SECTION --- */
.pricing-section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-title p { color: var(--text-secondary); }

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 1400px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card {
    padding: 3rem 2rem;
    position: relative;
    transition: 0.4s ease;
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.card.featured {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.05);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-cyan);
    color: #000;
    font-family: var(--font-code);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.plan-category {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.plan-name {
    font-family: var(--font-code);
    color: var(--accent-cold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 2rem;
}

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

.features-list li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.features-list li::before {
    content: '/';
    color: var(--accent-cyan);
    font-family: var(--font-code);
    margin-right: 12px;
    font-weight: 700;
}

.card-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    margin-top: 2rem;
    text-align: center;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.card.featured .card-btn {
    background: var(--accent-cyan);
    color: #000;
    border-color: var(--accent-cyan);
}

.card-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* --- CONTENT SECTIONS --- */
.content-section {
    padding: 6rem 0;
    position: relative;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.content-section h3 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-cold);
}

.content-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.content-card {
    padding: 2rem;
}

.content-card h4 {
    font-family: var(--font-code);
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.content-card p {
    font-size: 0.95rem;
}

/* --- CATEGORY FILTERS --- */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.category-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.category-btn:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

.category-btn.active {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(112, 0, 255, 0.2));
    border-color: var(--accent-cyan);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 243, 255, 0.3);
}

/* --- CONTACT FORM --- */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    padding: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-family: var(--font-code);
    color: var(--accent-cold);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    width: 100%;
}

/* --- FOOTER --- */
footer {
    border-top: 1px solid var(--border-glass);
    padding: 4rem 0;
    margin-top: 4rem;
    background: rgba(0,0,0,0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: var(--font-code);
}

.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: var(--text-dim); }
.footer-col ul li a:hover { color: var(--accent-cyan); }

.terminal-text {
    font-family: var(--font-code);
    color: var(--text-dim);
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* --- CODE BLOCKS & INLINE CODE --- */
code {
    font-family: var(--font-code);
    background: rgba(0, 243, 255, 0.08);
    border: 1px solid rgba(0, 243, 255, 0.2);
    color: var(--accent-cold);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 500;
    display: inline-block;
    position: relative;
    user-select: all;
    cursor: pointer;
    transition: all 0.2s ease;
}

code:hover {
    background: rgba(0, 243, 255, 0.15);
    border-color: rgba(0, 243, 255, 0.4);
    box-shadow: 0 0 12px rgba(0, 243, 255, 0.2);
}

code::before {
    content: '⌘';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7em;
    opacity: 0;
    transition: opacity 0.2s ease;
    color: var(--accent-cyan);
}

code:hover::before {
    opacity: 0.6;
}

pre {
    background: #0a0a0a;
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    overflow-x: auto;
    position: relative;
    margin: 1.5rem 0;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.05);
}

pre code {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    display: block;
    user-select: text;
    color: #00ff00;
    font-size: 0.9em;
    line-height: 1.7;
    font-weight: 400;
    cursor: text;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

pre code:hover {
    background: transparent;
    box-shadow: none;
    border: none;
}

pre code::before {
    display: none;
}

/* --- BLOG STYLES --- */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    box-shadow: 0 8px 32px rgba(0, 243, 255, 0.3);
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
}

.post-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(112, 0, 255, 0.1));
    border-radius: 8px;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.post-title {
    margin-bottom: 1rem;
}

.post-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--accent-cyan);
}

.post-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-glass);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.author-icon {
    color: var(--accent-cyan);
}

.read-more {
    color: var(--accent-cyan);
    font-family: var(--font-code);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--accent-cold);
}

.pagination {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.page-info {
    color: var(--text-secondary);
    margin: 0 1rem;
}

/* --- UTILITY CLASSES --- */

/* Spacing Utilities */
.mt-05 { margin-top: 0.5rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-6 { margin-top: 6rem; }

.mb-05 { margin-bottom: 0.5rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-15 { margin-bottom: 1.5rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.margin-auto { margin: 0 auto; }
.margin-auto.mt-2 { margin: 2rem auto 0; }

.padding-lg { padding: 1.5rem; }
.padding-xl { padding: 2rem; }

/* Text Utilities */
.text-center { text-align: center; }
.text-cyan { color: var(--accent-cyan); }
.text-dim { color: var(--text-dim); }
.text-secondary { color: var(--text-secondary); }

.font-small { font-size: 0.85rem; }
.font-regular { font-size: 0.9rem; }
.font-medium { font-size: 1.1rem; }
.font-large { font-size: 1.3rem; }
.font-xl { font-size: 2.5rem; }
.font-xxl { font-size: 3rem; }

.font-weight-600 { font-weight: 600; }
.font-weight-700 { font-weight: 700; }

/* Display & Layout Utilities */
.flex { display: flex; }
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-wrap { flex-wrap: wrap; }
.flex-gap-1 { gap: 1rem; }
.flex-gap-2 { gap: 2rem; }

.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.grid-auto-fit-250 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Product Landing Page Components */
.product-hero-section {
    padding-top: 150px;
}

.product-hero-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 1.3rem;
    color: var(--accent-cyan);
    margin: 1rem 0;
}

.product-description {
    max-width: 800px;
    margin: 1.5rem auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.product-cta-wrapper {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-secondary {
    padding: 0.6rem 1.8rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    background: rgba(0, 243, 255, 0.05);
}

.feature-item-icon {
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.use-case-tags {
    margin-top: 2rem;
}

.use-case-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.use-case-tag {
    background: rgba(0, 243, 255, 0.1);
    color: var(--accent-cyan);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.benefit-title {
    color: var(--accent-cyan);
}

.benchmark-stats {
    margin-top: 2rem;
}

.benchmark-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.benchmark-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.benchmark-label {
    color: var(--text-dim);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.comparison-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
}

.comparison-card-competitor {
    background: rgba(255, 0, 0, 0.05);
}

.comparison-card-coolvds {
    background: rgba(0, 243, 255, 0.08);
    border: 2px solid var(--accent-cyan);
}

.comparison-provider {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.comparison-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.comparison-price-competitor {
    color: #ff4444;
}

.comparison-price-coolvds {
    color: var(--accent-cyan);
}

.comparison-period {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.comparison-savings {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--accent-cyan);
}

/* Pricing Components */
.tier-cards-wrapper {
    max-width: 1100px;
    margin: 2rem auto 3rem;
}

.tier-cards-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tier-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tier-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tier-card:hover {
    border-color: rgba(0, 243, 255, 0.5);
    transform: translateY(-2px);
}

.tier-card-partner {
    grid-column: 1 / 4;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(112, 0, 255, 0.1));
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    padding: 2rem;
}

.tier-label {
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tier-label-partner {
    font-size: 1.3rem;
    font-weight: 700;
}

.tier-range {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.tier-discount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-top: 0.5rem;
}

.tier-discount-partner {
    font-size: 2rem;
}

.tier-subtitle {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-category {
    margin-bottom: 5rem;
}

.pricing-category-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-cyan);
}

.faq-section {
    margin-top: 4rem;
}

.faq-item {
    margin-top: 2rem;
}

.faq-item:first-child {
    margin-top: 0;
}

.max-width-900 {
    max-width: 900px;
}

.max-width-1100 {
    max-width: 1100px;
}

/* Code Blocks */
.code-block {
    background: #000;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-family: var(--font-code);
    font-size: 0.9rem;
}

.code-block code {
    color: var(--accent-cyan);
}

/* Background Utilities */
.bg-gradient-partner {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.15), rgba(112, 0, 255, 0.15));
}

.bg-cyan-subtle {
    background: rgba(0, 243, 255, 0.05);
}

.bg-cyan-medium {
    background: rgba(0, 243, 255, 0.08);
}

.bg-black {
    background: #000;
}

/* Border Utilities */
.border-cyan {
    border: 2px solid var(--accent-cyan);
}

.border-radius-8 {
    border-radius: 8px;
}

.border-radius-20 {
    border-radius: 20px;
}

/* Width Utilities */
.max-width-600 {
    max-width: 600px;
}

.max-width-800 {
    max-width: 800px;
}

.max-width-900 {
    max-width: 900px;
}

/* Line Height Utilities */
.line-height-18 {
    line-height: 1.8;
}

/* Documentation Components */
.doc-link {
    color: var(--accent-cyan);
    margin-top: 1rem;
    display: inline-block;
}

.doc-link:hover {
    text-decoration: underline;
}

.doc-section {
    margin-top: 4rem;
}

.doc-step-title {
    margin-top: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.highlight-text {
    color: var(--accent-cyan);
}

.margin-3-auto {
    margin: 3rem auto;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-1 {
    margin-top: 1rem;
}

/* Error/Success States */
.message-success {
    border-color: var(--accent-cyan);
}

.message-success h4 {
    color: var(--accent-cyan);
}

.message-error {
    border-color: #ff0000;
}

.message-error h4 {
    color: #ff0000;
}

.error-text {
    color: #ff0000;
}

.width-full {
    width: 100%;
}

.admin-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-cyan);
}

.form-section-title {
    color: var(--accent-cyan);
}

.back-link {
    color: var(--accent-cyan);
    font-size: 0.9rem;
}

.status-online {
    color: #0f0;
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .tier-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tier-card-partner {
        grid-column: 1 / 4;
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    
    .nav-links { display: none; }
    .desktop-only { display: none; }
    .mobile-menu-toggle { display: flex; }
    
    nav.glass-panel {
        justify-content: space-between;
    }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .pricing-cards { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    
    .tier-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .tier-card-partner {
        grid-column: 1 / 2;
    }
    
    .product-hero-icon {
        font-size: 2.5rem;
    }
    
    .product-tagline {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    .benchmark-grid,
    .comparison-grid,
    .grid-auto-fit,
    .grid-auto-fit-250 {
        grid-template-columns: 1fr;
    }
}
