/* cloudimg.co.uk - Main Stylesheet */
/* Extracted from existing design + SEO enhancements */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --secondary: #fb923c;
    --dark: #1e293b;
    --dark-lighter: #334155;
    --light: #ffffff;
    --gray: #94a3b8;
    --success: #10b981;
    --aws: #ff9900;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 100%);
    color: var(--light);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 60px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 140px;
    width: auto;
    transition: all 0.3s ease;
    background: transparent;
    padding: 5px 10px;
    mix-blend-mode: screen;
    filter: contrast(2) brightness(0.8);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Stats Section */
.stats {
    padding: 2rem 2rem;
    max-width: 1200px;
    margin: -2rem auto 0 auto;
}

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

.stat-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray);
    margin-top: 0.5rem;
}

/* Services Grid */
.services {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Cloud Marketplace / Catalog */
.catalog {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.catalog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-group {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--gray);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.filter-btn.active {
    background: var(--primary);
    color: var(--light);
}

.filter-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
}

/* Category heading between H1 and product cards */
.category-heading {
    font-size: 1.75rem;
    margin: 2.5rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.view-all-link {
    text-align: center;
    margin: 2rem 0 3rem 0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: scale(1.02);
    border-color: var(--secondary);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.product-header {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-card .version {
    color: var(--gray);
    font-size: 0.8rem;
    line-height: 1.3;
}

.product-body {
    padding: 1rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cloud-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cloud-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-aws {
    background: rgba(255, 153, 0, 0.2);
    color: var(--aws);
    border: 1px solid var(--aws);
}

.product-footer {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    margin-top: auto;
}

.pricing {
    color: var(--secondary);
    font-weight: 600;
}

.deploy-btn {
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 4rem 2rem 6rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(249, 115, 22, 0.05));
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    margin-top: 2rem;
}

.about-hero {
    text-align: center;
    margin-bottom: 6rem;
}

.about-hero h3 {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 2rem;
}

.about-hero p {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.expertise-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

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

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

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

.mission-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 4rem;
    margin: 6rem 0;
    text-align: center;
}

.mission-content h3 {
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 2rem;
}

.mission-content p {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.value-item strong {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-item span {
    color: var(--gray);
    font-size: 0.95rem;
}

.cta-section {
    text-align: center;
    margin-top: 6rem;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(30, 64, 175, 0.1));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section h3 {
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--light);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray);
}

/* Breadcrumb Navigation */
.breadcrumb {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    z-index: auto;
    border-bottom: none;
    display: block;
    max-width: 1400px;
    margin: 100px auto 0 auto;
    padding: 1rem 2rem;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb li {
    color: var(--gray);
}

.breadcrumb li::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--gray);
    opacity: 0.5;
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--light);
}

/* Product Detail Page */
.product-page {
    min-height: 100vh;
}

.product-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.product-detail-header {
    margin-bottom: 2rem;
}

.product-detail-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-category-badge {
    padding: 0.4rem 1rem;
    background: rgba(255, 153, 0, 0.2);
    color: var(--aws);
    border: 1px solid var(--aws);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-trial-badge {
    padding: 0.4rem 1rem;
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.product-section {
    margin-bottom: 2.5rem;
}

.product-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.product-long-description {
    color: var(--gray);
    line-height: 1.8;
}

.product-long-description p {
    margin-bottom: 1rem;
}

.product-long-description ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.product-long-description li {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.product-long-description a {
    color: var(--secondary);
    text-decoration: none;
}

.product-long-description a:hover {
    text-decoration: underline;
}

.product-highlights {
    list-style: none;
    padding: 0;
}

.product-highlights li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--gray);
    line-height: 1.6;
    position: relative;
    padding-left: 2.5rem;
}

.product-highlights li::before {
    content: '\2713';
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: 1rem;
}

.product-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.keyword-tag {
    padding: 0.3rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gray);
}

/* Sidebar */
.product-cta-card,
.product-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: sticky;
    top: 100px;
}

.product-cta-card h3,
.product-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.product-cta-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-cta-btn {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.product-support-info {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.product-support-info p {
    margin-bottom: 0.3rem;
    color: var(--gray);
}

.product-support-info a {
    color: var(--secondary);
    text-decoration: none;
}

.product-info-list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
}

.product-info-list dt {
    color: var(--gray);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info-list dd {
    color: var(--light);
    font-size: 0.9rem;
}

.product-info-list a {
    color: var(--secondary);
    text-decoration: none;
}

/* Related Products */
.related-products-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Products Index Page */
.products-index-page,
.category-page {
    min-height: 100vh;
}

.products-index-page .catalog-container,
.category-page .catalog-container {
    padding: 2rem;
}

/* Blog Styles */
.blog-index-page,
.blog-post-page {
    min-height: 100vh;
}

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

.blog-card-link {
    text-decoration: none;
    color: inherit;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.blog-card-content {
    padding: 2rem;
}

.blog-card time {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-card h2 {
    font-size: 1.3rem;
    margin: 0.75rem 0;
    color: var(--light);
}

.blog-card p {
    color: var(--gray);
    line-height: 1.6;
}

.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray);
}

.blog-empty a {
    color: var(--secondary);
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-post-header {
    margin-bottom: 3rem;
}

.blog-post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-post-header time {
    color: var(--secondary);
    font-size: 0.9rem;
}

.blog-post-content {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-post-content h2 {
    color: var(--light);
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
}

.blog-post-content h3 {
    color: var(--light);
    font-size: 1.4rem;
    margin: 1.5rem 0 0.75rem;
}

.blog-post-content p {
    margin-bottom: 1.25rem;
}

.blog-post-content a {
    color: var(--secondary);
}

.blog-post-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.blog-post-content pre {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-post-content pre code {
    background: none;
    padding: 0;
}

/* User Guide Pages */
.guide-page {
    min-height: 100vh;
}

.guide-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

@media (max-width: 900px) {
    .guide-layout {
        grid-template-columns: 1fr;
    }
}

.guide-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-category-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.guide-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guide-meta {
    color: var(--gray);
    font-size: 0.9rem;
}

.guide-body {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.guide-body h2 {
    color: var(--light);
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-body h3 {
    color: var(--light);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
}

.guide-body p {
    margin-bottom: 1.25rem;
}

.guide-body a {
    color: var(--secondary);
}

.guide-body ul, .guide-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--gray);
}

.guide-body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.guide-body code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--secondary);
}

.guide-body pre {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-body pre code {
    background: none;
    padding: 0;
    color: var(--light);
}

.guide-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.guide-body th {
    background: rgba(255, 255, 255, 0.08);
    color: var(--light);
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-body td {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--gray);
}

.guide-body tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.guide-body strong {
    color: var(--light);
}

.guide-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.sidebar-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sidebar-card a {
    color: var(--secondary);
}

.cta-card {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb, 99, 102, 241), 0.1);
}

.cta-card .btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-card .btn-primary:hover {
    background: var(--secondary);
}

/* Guides Index */
.guides-index-page .guide-category-badge {
    margin-bottom: 0.5rem;
}

/* 404 Error Page */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin-top: 80px;
}

.error-content h1 {
    font-size: 8rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.error-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Search Bar */
.search-group {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 1rem auto;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1.25rem 0.75rem 2.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--light);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: var(--gray);
}

.search-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.search-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
    display: flex;
    align-items: center;
}

.search-no-results {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--gray);
    font-size: 1.1rem;
    display: none;
}

.product-card-link.hidden {
    display: none;
}

.category-heading.hidden {
    display: none;
}

.category-heading.hidden + .products-grid {
    display: none;
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite linear;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    from {
        transform: translateY(100vh) translateX(0);
    }
    to {
        transform: translateY(-100vh) translateX(100px);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease backwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-group {
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-header h1 {
        font-size: 1.8rem;
    }

    .breadcrumb {
        margin-top: 90px;
    }

    .about-hero h3 {
        font-size: 2rem;
    }

    .expertise-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .mission-section {
        padding: 3rem 2rem;
    }

    .cta-section {
        padding: 3rem 2rem;
    }

    .logo {
        margin-left: 0;
    }
}
