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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    width: 100%;
    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: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Prevent horizontal overflow on all sections */
section, main, div {
    max-width: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Main content offset for fixed nav */
main {
    padding-bottom: 2rem;
}

/* --- 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: 1400px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

@media (max-width: 768px) {
    nav {
        width: calc(100% - 24px);
        padding: 0.75rem 1rem;
        top: 10px;
    }
}

.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;
    overflow-x: hidden;
}

.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;
    overflow-x: hidden;
}

.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: 0.5rem;
}

.mobile-nav-item {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--accent-cyan);
}

/* Mobile dropdown */
.mobile-nav-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-toggle {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: color 0.3s ease;
}

.mobile-nav-toggle:hover {
    color: var(--accent-cyan);
}

.mobile-nav-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.mobile-nav-dropdown.active .mobile-nav-arrow {
    transform: rotate(90deg);
}

.mobile-nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-dropdown.active .mobile-nav-submenu {
    max-height: 500px;
}

.mobile-nav-sublink {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    border-left: 2px solid transparent;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-nav-sublink:hover,
.mobile-nav-sublink.active {
    color: var(--accent-cyan);
    border-left-color: var(--accent-cyan);
    background: rgba(0, 243, 255, 0.05);
}

.mobile-nav-sublink strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.mobile-nav-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.3;
}

.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;
    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 {
    display: block;
    text-align: center;
    margin-bottom: 4rem;
}

.section-title > * {
    display: block;
    width: 100%;
}

.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(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}
.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;
    z-index: 1;
}

.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 1fr;
    gap: 3rem;
    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-section .section-title {
    display: block !important;
    flex-direction: column !important;
}

.product-hero-section .section-title > * {
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.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 !important;
    gap: 1rem;
    justify-content: center;
    width: auto !important;
}

.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;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.use-case-tag:hover {
    background: rgba(0, 243, 255, 0.2);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 243, 255, 0.3);
}

.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;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.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);
    padding: 2rem;
    text-align: center;
}

.message-success h3 {
    color: var(--accent-cyan);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.message-success p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-weight: bold;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-note {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-glass);
}

.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;
}

/* --- ORDER PAGE STYLES --- */
.order-container {
    max-width: 1400px;
}

.order-header {
    text-align: center;
    margin-bottom: 3rem;
}

.order-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.order-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.order-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Order Details Column */
.order-details-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-plan-card {
    padding: 2rem;
}

.order-plan-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 1.5rem;
}

.order-plan-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--accent-cyan);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.order-plan-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.order-plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.order-plan-features h3,
.order-product-info h3,
.order-includes h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.order-plan-features,
.order-product-info,
.order-includes {
    margin-bottom: 1.5rem;
}

.order-product-info p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.order-use-cases {
    margin-top: 1.5rem;
}

.order-use-cases h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.use-cases-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.use-case-tag {
    padding: 0.5rem 1rem;
    background: rgba(112, 0, 255, 0.1);
    border: 1px solid rgba(112, 0, 255, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent-cold);
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.includes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

.order-payment-info {
    padding: 1.5rem;
}

.order-payment-info h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-method {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
}

.payment-method img {
    height: 30px;
    opacity: 0.8;
}

.payment-method span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.payment-note {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-align: center;
}

/* Order Form Column */
.order-form-column {
    position: sticky;
    top: 120px;
}

.order-form-card {
    padding: 2rem;
}

.order-status-alert {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.alert-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffc107;
}

.alert-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.08);
}

.form-group small {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.form-agreements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.agreement-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.agreement-item input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.agreement-item label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    cursor: pointer;
}

.agreement-item label a {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.form-disclaimer {
    padding: 1rem;
    background: rgba(0, 243, 255, 0.05);
    border-left: 3px solid var(--accent-cyan);
    border-radius: 4px;
}

.form-disclaimer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.btn-waitlist {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border: none;
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-waitlist:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 243, 255, 0.4);
}

.btn-waitlist:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.order-guarantees {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guarantee-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.guarantee-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.guarantee-text strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.guarantee-text p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin: 0;
}

/* Waitlist Benefits Section */
.waitlist-benefits {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 243, 255, 0.03);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
}

.waitlist-benefits h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin: 0;
}

/* Order Payment Info Bottom */
.order-payment-info-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
}

.order-payment-info-bottom h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.order-payment-info-bottom .payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.order-payment-info-bottom .payment-method {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
}

.order-payment-info-bottom .payment-method img {
    height: 30px;
    opacity: 0.8;
}

.order-payment-info-bottom .payment-method span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.order-payment-info-bottom .payment-note {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-align: center;
}

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

/* Medium screens - adjust footer for 5 columns */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
}

@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;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding-top: 80px;
        min-height: 90vh;
    }
    
    .hero-bg-glow {
        width: 500px;
        height: 500px;
    }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .pricing-cards { 
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .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;
    }
    
    /* Order page responsive */
    .order-header h1 {
        font-size: 2rem;
    }
    
    .order-subtitle {
        font-size: 1rem;
    }
    
    .order-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .order-form-column {
        position: static;
    }
    
    .order-plan-card,
    .order-form-card {
        padding: 1.5rem;
    }
    
    .order-plan-card h2 {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .order-status-alert {
        flex-direction: column;
        padding: 1rem;
    }
    
    .payment-methods {
        flex-direction: column;
    }
    
    .order-guarantees {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .waitlist-benefits {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .waitlist-benefits h3 {
        font-size: 1.1rem;
    }
    
    .benefit-icon {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    
    .container {
        padding: 0 12px;
    }
    
    nav {
        width: calc(100% - 16px);
        padding: 0.5rem 0.75rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .mobile-menu-content {
        width: 90%;
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* Order page very small screens */
    .order-header h1 {
        font-size: 1.75rem;
    }
    
    .order-plan-card h2 {
        font-size: 1.3rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .order-plan-card,
    .order-form-card,
    .order-payment-info {
        padding: 1rem;
    }
    
    .use-cases-tags {
        gap: 0.35rem;
    }
    
    .use-case-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .btn-waitlist {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ===== Order Success/Error States ===== */
.order-success-container {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.order-success-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    color: var(--accent-cyan);
}

.order-success-title {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.order-success-message {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.order-success-note {
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.order-error-panel {
    max-width: 800px;
    margin: 2rem auto;
    border-color: #ff0000;
    padding: 2rem;
}

.order-error-title {
    color: #ff0000;
}

.order-error-list {
    margin: 1rem 0;
}

.order-error-item {
    color: #ff0000;
}

/* ===== Utility Classes for Inline Styles ===== */
.flex-center {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

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

.btn-secondary-outline:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.text-center {
    text-align: center;
}

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

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

.cyan-link-large {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Content Container Widths */
.max-width-900 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.max-width-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Login/Admin Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-box {
    max-width: 400px;
    width: 100%;
}

.error-message {
    background: rgba(255, 80, 80, 0.1);
    border: 1px solid rgba(255, 80, 80, 0.3);
    color: #ff5050;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.success-message {
    background: rgba(80, 255, 200, 0.1);
    border: 1px solid rgba(80, 255, 200, 0.3);
    color: var(--accent-cyan);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-input-full {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: var(--text-primary);
}

.form-textarea-full {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: var(--text-primary);
    resize: vertical;
}

.mb-1-5 {
    margin-bottom: 1.5rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

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

.mb-3 {
    margin-bottom: 3rem;
}

.btn-full-width {
    width: 100%;
}

.btn-full-width-mt {
    width: 100%;
    margin-top: 1rem;
}

/* Terms of Service Specific Styles */
.tos-container {
    max-width: 900px;
}

.tos-header {
    margin-bottom: 3rem;
}

.tos-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tos-section {
    padding: 3rem;
    margin-bottom: 2rem;
}

.tos-heading {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-cyan);
}

.tos-subheading {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.tos-paragraph {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tos-list {
    line-height: 1.8;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.tos-warning-box {
    background: rgba(255, 0, 100, 0.1);
    padding: 1.5rem;
    border-left: 3px solid #ff0064;
    margin: 1.5rem 0;
}

.tos-info-box {
    background: rgba(0, 243, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
}

.tos-back-section {
    margin-top: 3rem;
}

.btn-outline-ml {
    margin-left: 1rem;
}

/* Contact Page Specific */
.contact-error-panel {
    max-width: 600px;
    margin: 2rem auto;
    border-color: #ff0000;
}

.contact-error-title {
    color: #ff0000;
}

.contact-error-item {
    color: #ff0000;
}

.contact-success-panel {
    max-width: 600px;
    margin: 2rem auto;
    border-color: var(--accent-cyan);
}

.contact-info-grid {
    margin-top: 4rem;
}

.contact-info-link {
    color: var(--accent-cyan);
}

/* Blog Admin Specific */
.blog-admin-message-box {
    padding: 1rem;
    border-color: var(--accent-cyan);
    margin-bottom: 2rem;
}

.blog-admin-success {
    color: var(--accent-cyan);
}

.admin-content-section {
    padding-top: 150px;
}

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

.admin-card {
    margin-bottom: 3rem;
}

.admin-form {
    margin-top: 2rem;
}

.admin-back-section {
    margin-top: 2rem;
    text-align: center;
}

/* Footer Specific */
.footer-privacy-link {
    color: var(--accent-cyan);
    margin: 0 0.5rem;
}
