/* ===== cbws-style.css ===== */
:root {
    --bg: #000000;
    --bg-elevated: #050505;
    --bg-soft: #0a0a0a;
    --text: #ffffff;
    --text-light: #c6c6cb;
    --text-faint: #8f8f95;
    --primary: #ff2b2b;
    --primary-dark: #d10000;
    --primary-glow: rgba(255, 43, 43, 0.34);
    --primary-soft: rgba(255, 43, 43, 0.08);
    --primary-soft-strong: rgba(255, 43, 43, 0.12);
    --primary-border: rgba(255, 43, 43, 0.22);
    --glass-bg: rgba(255, 255, 255, 0.025);
    --glass-bg-strong: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-soft: rgba(255, 255, 255, 0.06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --radius: 14px;
    --font-sans: 'Lato', system-ui, -apple-system, sans-serif;
    --font-heading: 'Space Grotesk', 'Lato', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Header & footer use a wider container */
.navbar .container,
.footer .container {
    max-width: 1400px;
}

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

.tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--primary-border);
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary-dark);
    color: white;
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--glass-border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--text);
    background-color: var(--glass-bg-strong);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.84);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border-soft);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.94);
}

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

.logo {
    display: inline-block;
    width: 56px;
    height: 56px;
    background: url('/websage.png') no-repeat center;
    background-size: contain;
    font-size: 0;
    line-height: 0;
    flex-shrink: 0;
}

.footer .logo {
    display: inline-block;
    width: 168px;
    height: 168px;
    margin-bottom: 0.25rem;
}

.footer .logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.logo .dot {
    display: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
}

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

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(6, 6, 6, 0.96);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    top: 100%;
    left: 0;
    padding: 10px 0;
}

.dropdown-content a {
    color: var(--text-light);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: var(--primary-soft);
    color: var(--primary);
    padding-left: 20px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--bg-soft);
    z-index: 1001;
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: var(--transition);
    border-left: 1px solid var(--glass-border);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8; /* Increased opacity */
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-sub {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 4rem;
}

.authority-line {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0.8;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0.5;
}

.logo-placeholder {
    width: 120px;
    height: 40px;
    background: var(--glass-bg-strong);
    border-radius: 4px;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--primary-soft-strong) 0%, transparent 70%);
    pointer-events: none;
}

/* Cards & Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: var(--primary-border);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.full-width {
    grid-column: 1 / -1;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    position: relative;
    overflow: hidden;
}

.comparison-card.other {
    background: rgba(255, 255, 255, 0.018);
    border-color: var(--glass-border-soft);
}

.comparison-card.websage {
    background: linear-gradient(180deg, rgba(28, 0, 0, 0.58), rgba(255, 255, 255, 0.025));
    border-color: var(--primary-border);
    box-shadow: 0 0 30px rgba(255, 43, 43, 0.08);
}

.comparison-card h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.comparison-card.other h3 {
    color: var(--text-light);
}

.comparison-card.websage h3 {
    color: var(--primary);
}

.comparison-card ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.comparison-card.other li i {
    color: #555;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-card.websage li i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 43, 43, 0.05) 0%, transparent 50%);
    animation: rotate 10s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Infrastructure */
.infra-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text);
    font-weight: 500;
}

.check-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

.infra-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

.server-graphic {
    width: 100%;
    height: 400px;
    background: radial-gradient(circle at center, rgba(255, 43, 43, 0.1) 0%, transparent 70%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.server-light {
    width: 60%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.server-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: scan 2s linear infinite;
}

.server-light.delay-1::after { animation-delay: 0.5s; }
.server-light.delay-2::after { animation-delay: 1s; }

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 24px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.tech-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.tech-item i {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.tech-item:hover i {
    color: var(--primary);
}

.tech-item span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Testimonials */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    text-align: center;
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-size: 1.25rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 2rem;
}

.client-info strong {
    display: block;
    color: var(--primary);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.slider-controls button {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* FAQ */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--bg-elevated);
    padding: 80px 0 24px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--text);
    margin-bottom: 24px;
}

.footer-col p {
    font-size: 16px;
    margin-bottom: 0.5rem;
}

.footer-col a {
    display: block;
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 400;
}

.footer-bottom p {
    font-size: 14px;
    font-weight: 400;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1024px) {
    .about-grid, .comparison-grid, .infra-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

.cbws-footer-billing-badge {
    margin-top: 20px;
}

.cbws-footer-billing-badge-link {
    display: inline-flex;
    align-items: center;
}

.cbws-footer-billing-badge-image {
    display: block;
    height: 40px;
    width: auto;
    max-width: 100%;
}

/* inline-css-extraction:start */
.cbws-social-icon {
    font-size: 1.5rem !important;
}

.cbws-cta-button-row {
    display: flex !important; gap: 16px !important; justify-content: center !important; flex-wrap: wrap !important;
}

.cbws-codebitel-link {
    color: var(--primary) !important; text-decoration: none !important;
}

.cbws-cta-support-copy {
    margin-bottom: 2rem !important; color: var(--text-light) !important;
}

.cbws-footer-social-row {
    margin-top: 16px !important; display: flex !important; gap: 12px !important;
}

.cbws-text-primary {
    color: var(--primary) !important;
}

.cbws-inline-list-icon {
    margin-right: 8px !important; font-size: 1.2rem !important;
}

.cbws-justify-center {
    justify-content: center !important;
}

.cbws-contact-social-link {
    font-size: 1.5rem !important; color: var(--text-light) !important; transition: color 0.3s !important;
}

.cbws-policy-header {
    text-align: center !important; margin-bottom: 3rem !important;
}

.cbws-policy-note {
    margin-top: 2rem !important;
}

.cbws-text-justify {
    text-align: justify !important;
}

.cbws-soft-section-gradient {
    background: linear-gradient(180deg, transparent, rgba(255, 43, 43, 0.03), transparent) !important;
}

.cbws-contact-response-note {
    font-size: 0.85rem !important; margin-top: 4px !important; margin-bottom: 0 !important;
}

.cbws-contact-response-subnote {
    font-size: 0.85rem !important; margin-top: 2px !important; margin-bottom: 0 !important; opacity: 0.8 !important;
}

.cbws-contact-connect-block {
    margin-top: 40px !important; padding-top: 30px !important; border-top: 1px solid var(--glass-border) !important;
}

.cbws-mb-1 {
    margin-bottom: 1rem !important;
}

.cbws-flex-gap-16 {
    display: flex !important; gap: 16px !important;
}

.cbws-w-full {
    width: 100% !important;
}

.cbws-services-cta-card {
    background: var(--glass-bg) !important; border: 1px solid var(--glass-border) !important; border-radius: 24px !important; padding: 60px !important; text-align: center !important; position: relative !important; overflow: hidden !important;
}

.cbws-relative-z1 {
    position: relative !important; z-index: 1 !important;
}

.cbws-services-cta-copy {
    max-width: 600px !important; margin: 0 auto 2rem !important; position: relative !important; z-index: 1 !important;
}

.cbws-mb-3 {
    margin-bottom: 3rem !important;
}

.cbws-sponsorship-intro {
    color: var(--text-light) !important; margin: 0 !important; font-size: 1.1rem !important; line-height: 1.8 !important;
}

.cbws-text-default {
    color: var(--text) !important;
}

.cbws-text-justify-spaced {
    margin-bottom: 1.5rem !important; text-align: justify !important;
}

/* inline-css-extraction:end */

/* ===== assets/css/cbws-service-pages.css ===== */
/* ==============================================
   Shared Service Page Styles
   Used by: service, web-development, mobile-app-development,
   ui-ux-design, ecommerce, crm-development, erp-development,
   ai-solutions, seo-optimization, website-maintenance, website-redesign
   ============================================== */

.cta-box {
            background: radial-gradient(circle at center, rgba(20, 20, 20, 0.9) 0%, #000 100%);
            border: 1px solid var(--glass-border);
            border-radius: 32px;
            padding: 80px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

.service-hero-content {
            max-width: 900px;
            padding: 0 24px;
            z-index: 1;
        }

.service-hero {
            height: 60vh;
            min-height: 500px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            margin-top: 80px;
        }

.why-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 43, 43, 0.03), transparent);
            opacity: 0;
            transition: var(--transition);
        }

@media (max-width: 768px) {
            .service-hero {
                height: auto;
                padding: 100px 0 60px;
            }
            .detail-grid {
                grid-template-columns: 1fr;
            }
        }

.detail-card ul {
            margin-top: 1.5rem;
        }

.detail-card li i {
            color: var(--primary);
        }

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

.detail-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 40px;
            transition: var(--transition);
        }

.why-card:hover::before {
            opacity: 1;
        }

.service-hero h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            margin-bottom: 1.5rem;
            text-shadow: 0 0 30px rgba(255, 43, 43, 0.3);
        }

.detail-card li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 0.8rem;
            color: var(--text-light);
        }

.why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

.why-card h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: var(--text);
        }

.tech-stack-section {
            padding: 80px 0;
            background: linear-gradient(180deg, transparent, rgba(255, 43, 43, 0.02), transparent);
        }

.detail-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 43, 43, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

.why-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 32px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

.service-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

.cta-content {
        position: relative;
        z-index: 1;
      }

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

.page-header {
        padding-top: 140px;
        padding-bottom: 60px;
        text-align: center;
        background: radial-gradient(
          circle at center,
          rgba(255, 43, 43, 0.05) 0%,
          transparent 70%
        );
      }

.why-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 43, 43, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

.detail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

.detail-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
        }

.detail-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

.why-card p {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 0.95rem;
        }

/* ===== assets/css/cbws-tech-grid.css ===== */
/* Shared Unified Tech Grid — used by all service pages */
.unified-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.tech-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: visible;
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.tech-item span {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    position: relative;
    z-index: 1;
}

/* Category badge shown as a tooltip above the card on hover */
.tech-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - 4px));
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    white-space: nowrap;
    z-index: 2;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.platform-badge {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.frontend-badge {
    background: rgba(6, 182, 212, 0.15);
    color: #22d3ee;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.backend-badge {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.devops-badge {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.ai-badge {
    background: rgba(168, 85, 247, 0.15);
    color: #d8b4fe;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.tool-badge {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.design-badge {
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.tech-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background: rgba(255, 43, 43, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tech-item:hover i {
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary));
    transform: scale(1.15);
}

.tech-item:hover .tech-badge {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, calc(-100% - 10px));
}

@media (max-width: 768px) {
    .unified-tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .tech-item {
        padding: 20px 12px;
    }

    .tech-badge {
        font-size: 0.6rem;
        padding: 3px 6px;
    }
}

/* ===== cbws-animations.css ===== */
/* ========================================
   COOL ANIMATIONS & KEYFRAMES
   WebSage Premium Animations
   ======================================== */

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Glow Pulse */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--primary-glow),
                    0 0 40px var(--primary-glow),
                    0 0 60px var(--primary-glow);
    }
    50% {
        box-shadow: 0 0 30px var(--primary-glow),
                    0 0 60px var(--primary-glow),
                    0 0 90px var(--primary-glow);
    }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Slide In From Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In From Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale In */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Bounce In */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Rotate Slow */
@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Text Reveal */
@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Wobble on Hover */
@keyframes wobble {
    0%, 100% {
        transform: translateX(0%);
    }
    15% {
        transform: translateX(-5px) rotate(-3deg);
    }
    30% {
        transform: translateX(5px) rotate(3deg);
    }
    45% {
        transform: translateX(-5px) rotate(-2deg);
    }
    60% {
        transform: translateX(5px) rotate(2deg);
    }
    75% {
        transform: translateX(-3px) rotate(-1deg);
    }
}

/* Particle Float */
@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(10px, -10px) rotate(120deg);
    }
    66% {
        transform: translate(-10px, 10px) rotate(240deg);
    }
}

/* Breathing Effect */
@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ========================================
   ENHANCED ELEMENT ANIMATIONS
   ======================================== */

/* Apply floating to certain elements */
.service-card:hover,
.feature-card:hover {
    animation: float 3s ease-in-out infinite;
}

/* Glow effect on buttons */
.btn-primary:hover {
    animation: glow-pulse 2s ease-in-out infinite;
}

/* Shimmer effect utility class */
.shimmer {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 2000px 100%;
    animation: shimmer 3s infinite;
}

/* Add shimmer to cards */
.glass-card {
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s;
    z-index: 1;
    pointer-events: none;
}

.glass-card:hover::before {
    left: 100%;
}

/* Enhanced fade-up animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up.delay-1 {
    transition-delay: 0.1s;
}

.fade-up.delay-2 {
    transition-delay: 0.2s;
}

.fade-up.delay-3 {
    transition-delay: 0.3s;
}

.fade-up.delay-4 {
    transition-delay: 0.4s;
}

/* Animated background gradient */
.animated-gradient {
    background: linear-gradient(
        -45deg,
        #000000,
        #1a0000,
        #000000,
        #0a0000
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Hover wobble for stats */
.stat-box:hover {
    animation: wobble 0.5s ease-in-out;
}

/* Rotating icon animation */
.rotate-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.rotate-icon:hover {
    animation: rotateSlow 2s linear infinite;
}

/* Bounce on scroll */
.bounce-in {
    animation: bounceIn 0.6s ease-out;
}

/* ========================================
   CURSOR EFFECTS
   ======================================== */

.cursor-pointer {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cursor-pointer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 43, 43, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
    z-index: 0;
}

.cursor-pointer:hover::after {
    width: 300px;
    height: 300px;
}

/* ========================================
   LOADING ANIMATIONS
   ======================================== */

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

.spinner {
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
}

/* ========================================
   TEXT ANIMATIONS
   ======================================== */

.text-slide-in {
    display: inline-block;
    animation: slideInLeft 0.6s ease-out;
}

.text-scale-in {
    display: inline-block;
    animation: scaleIn 0.5s ease-out;
}

/* Typewriter Effect */
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid var(--primary);
    white-space: nowrap;
    animation: typewriter 3s steps(40) 1s 1 normal both,
               blink 0.75s step-end infinite;
}

/* ========================================
   PARTICLE & BACKGROUND EFFECTS
   ======================================== */

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Parallax Effect */
.parallax {
    transform: translateZ(0);
    will-change: transform;
}

/* ========================================
   HOVER EFFECTS
   ======================================== */

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hover-glow:hover {
    box-shadow: 0 0 30px var(--primary-glow);
    border-color: var(--primary);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* ========================================
   RIPPLE EFFECT
   ======================================== */

.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
}

.ripple:active::before {
    width: 300px;
    height: 300px;
}

/* ========================================
   PAGE TRANSITION
   ======================================== */

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: pageIn 0.5s ease-out;
}

/* ========================================
   CARD ANIMATIONS
   ======================================== */

.card-slide-up {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-slide-up:hover {
    transform: translateY(-8px);
}

/* Magnetic hover effect */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff6b6b);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ========================================
   GLITCH EFFECT (Optional Accent)
   ======================================== */

@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

.glitch:hover {
    animation: glitch 0.3s ease-in-out;
}

/* ========================================
   NUMBER COUNTER ANIMATION
   ======================================== */

.counter {
    transition: transform 0.3s ease;
}

.counter.counting {
    transform: scale(1.2);
    color: var(--primary);
}

/* ========================================
   MORPHING SHAPES
   ======================================== */

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.morphing-blob {
    animation: morph 8s ease-in-out infinite;
    background: radial-gradient(circle at center, var(--primary-glow), transparent);
    will-change: border-radius;
}

/* ========================================
   PULSING EFFECT
   ======================================== */

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ========================================
   FADE IN EFFECTS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-slow {
    animation: fadeIn 2s ease-in;
}

/* ========================================
   STAGGER ANIMATIONS FOR LISTS
   ======================================== */

.stagger-item {
    opacity: 0;
    animation: slideInLeft 0.5s ease-out forwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }

/* ===== assets/css/cbws-blog.css ===== */
body.blog-page {
            background:
                radial-gradient(circle at top left, rgba(255, 43, 43, 0.14), transparent 28%),
                radial-gradient(circle at 90% 8%, rgba(255, 43, 43, 0.08), transparent 24%),
                linear-gradient(180deg, #020202 0%, #000000 48%, #040404 100%);
        }

        .blog-page .nav-links a.cbws-nav-active,
        .blog-page .nav-links .dropbtn.cbws-nav-active,
        .blog-page .mobile-menu a.cbws-nav-active {
            color: var(--text);
        }

        .blog-page .nav-links a.cbws-nav-active::after,
        .blog-page .nav-links .dropbtn.cbws-nav-active::after {
            content: '';
            display: block;
            width: 100%;
            height: 2px;
            margin-top: 0.35rem;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--primary), transparent);
        }

        .blog-stage {
            position: relative;
            z-index: 1;
            padding-top: 128px;
        }

        .blog-hero {
            padding: 24px 0 16px;
        }

        .blog-hero-section {
            margin-bottom: 2rem;
        }

        .blog-hero-shell {
            padding: 1.6rem;
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.01)),
                radial-gradient(circle at top right, rgba(255, 43, 43, 0.08), transparent 26%);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
        }

        .blog-hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
            gap: 1.5rem;
            align-items: end;
        }

        .blog-title {
            max-width: 9ch;
            margin-bottom: 0.8rem;
        }

        .blog-intro {
            max-width: 620px;
            margin-bottom: 0;
        }

        .blog-hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            margin-top: 1.2rem;
        }

        .blog-meta-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.7rem 0.95rem;
            border-radius: 999px;
            border: 1px solid var(--glass-border);
            background: rgba(255, 255, 255, 0.02);
            color: var(--text-light);
            font-size: 0.88rem;
            line-height: 1;
        }

        .blog-meta-pill strong {
            color: #fff;
            font-weight: 700;
        }

        .blog-stat,
        .blog-card,
        .blog-feature-card,
        .blog-empty,
        .blog-article,
        .blog-article-footer {
            background: var(--glass-bg-strong);
            border: 1px solid var(--glass-border);
            border-radius: 18px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
        }

        .blog-stat {
            padding: 1.15rem 1.2rem;
            min-height: 100%;
        }

        .blog-stat-label,
        .blog-date,
        .blog-back-link,
        .blog-meta-label {
            color: var(--text-light);
            font-size: 0.85rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .blog-stat-value {
            font-size: clamp(2rem, 4vw, 2.8rem);
            line-height: 1;
            margin: 0.65rem 0 0.35rem;
            color: var(--text);
        }

        .blog-stat p {
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .blog-lead-section {
            margin-bottom: 1.75rem;
        }

        .blog-feature-card {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
            gap: 0;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .blog-feature-media {
            margin: 0;
            min-height: 100%;
            border-radius: 0;
            border: 0;
            box-shadow: none;
            aspect-ratio: 16 / 12;
            position: relative;
        }

        .blog-feature-media::after,
        .blog-card-media::after,
        .blog-card-media--placeholder::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24));
            pointer-events: none;
        }

        .blog-feature-copy {
            padding: 1.65rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 1.1rem;
        }

        .blog-feature-copy h2 {
            font-size: clamp(1.7rem, 2.8vw, 2.4rem);
            line-height: 1.02;
            margin-bottom: 0.85rem;
        }

        .blog-feature-copy p {
            color: var(--text-light);
            line-height: 1.8;
        }

        .blog-feature-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }

        .blog-card-media,
        .blog-feature-media {
            overflow: hidden;
            border-radius: 16px;
            border: 1px solid var(--glass-border);
            background: var(--glass-bg);
        }

        .blog-card-media {
            margin-bottom: 1rem;
            aspect-ratio: 16 / 10.8;
            position: relative;
        }

        .blog-card-media--placeholder,
        .blog-feature-media--placeholder {
            display: grid;
            place-items: center;
            background:
                radial-gradient(circle at top center, rgba(255, 43, 43, 0.14), transparent 42%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
        }

        .blog-feature-media--placeholder {
            min-height: 100%;
        }

        .blog-card-media-mark {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(0, 0, 0, 0.32);
            color: #fff;
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .blog-card-media img,
        .blog-feature-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .blog-feature-media {
            margin: 2rem 0 1.25rem;
            box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
        }

        .blog-feature-media figcaption {
            padding: 0.85rem 1rem;
            color: var(--text-light);
            font-size: 0.96rem;
            line-height: 1.7;
        }

        .blog-card {
            position: relative;
            padding: 18px;
            overflow: hidden;
            transition: var(--transition);
        }

        .blog-card::after {
            content: '';
            position: absolute;
            right: -36px;
            bottom: -36px;
            width: 132px;
            height: 132px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 43, 43, 0.16), transparent 72%);
            pointer-events: none;
        }

        .blog-card:hover {
            transform: translateY(-6px);
            border-color: var(--primary-border);
            box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
        }

        .blog-card-copy {
            padding: 0.2rem 0.25rem 0.35rem;
        }

        .blog-card h2,
        .blog-article h1 {
            margin-bottom: 0.9rem;
        }

        .blog-card h2 {
            font-size: 1.45rem;
            line-height: 1.08;
        }

        .blog-card p,
        .blog-stat p,
        .blog-article p,
        .blog-article-footer p {
            margin-bottom: 0;
        }

        .blog-card-link,
        .blog-back-link,
        .blog-inline-link {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            font-weight: 600;
            color: var(--text);
        }

        .blog-card-link {
            margin-top: 1.5rem;
        }

        .blog-card-link i,
        .blog-back-link i,
        .blog-inline-link i {
            color: var(--primary);
        }

        .blog-empty {
            padding: 56px 32px;
            text-align: center;
        }

        .blog-article-wrap {
            max-width: 920px;
            margin: 0 auto;
        }

        .blog-back-link {
            margin-bottom: 1.25rem;
        }

        .blog-article {
            padding: clamp(28px, 4vw, 52px);
        }

        .blog-article-section {
            padding-top: 0;
        }

        .blog-article-date {
            margin-top: 1.5rem;
        }

        .blog-article-intro {
            margin-bottom: 1.5rem;
        }

        .blog-article p {
            margin-bottom: 1.35rem;
            line-height: 1.9;
        }

        .blog-article-copy {
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.95;
        }

        .blog-article-copy > *:last-child {
            margin-bottom: 0;
        }

        .blog-article-copy h2,
        .blog-article-copy h3,
        .blog-article-copy h4 {
            margin: 2rem 0 1rem;
            color: #fff;
            line-height: 1.15;
        }

        .blog-article-copy h2 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
        }

        .blog-article-copy h3 {
            font-size: clamp(1.4rem, 2.4vw, 1.9rem);
        }

        .blog-article-copy p,
        .blog-article-copy ul,
        .blog-article-copy ol,
        .blog-article-copy blockquote,
        .blog-article-copy pre {
            margin-bottom: 1.35rem;
        }

        .blog-article-copy ul,
        .blog-article-copy ol {
            padding-left: 1.35rem;
        }

        .blog-article-copy li + li {
            margin-top: 0.45rem;
        }

        .blog-article-copy a {
            color: #fff;
            text-decoration: underline;
            text-decoration-color: rgba(255, 43, 43, 0.45);
            text-underline-offset: 0.18em;
        }

        .blog-article-copy blockquote {
            margin-left: 0;
            padding: 1rem 1.2rem;
            border-left: 3px solid var(--primary);
            background: rgba(255, 255, 255, 0.03);
            color: #fff;
            border-radius: 0 14px 14px 0;
        }

        .blog-article-copy strong {
            color: #fff;
        }

        .blog-article-copy img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            border: 1px solid var(--glass-border);
            display: block;
            margin: 1.2rem 0;
        }

        .blog-article-footer {
            margin-top: 24px;
            padding: 24px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .blog-footer-cta {
            margin-top: 48px;
            padding: 32px;
            background: linear-gradient(135deg, rgba(255, 43, 43, 0.08), rgba(255, 255, 255, 0.025));
            border: 1px solid var(--glass-border);
            border-radius: 18px;
        }

        .blog-pagination-wrap {
            padding-top: 2.25rem;
        }

        .blog-pagination-meta {
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.92rem;
            text-align: center;
            letter-spacing: 0.04em;
        }

        .blog-pagination .pagination {
            gap: 0.6rem;
            flex-wrap: wrap;
        }

        .blog-pagination .page-link {
            min-width: 2.9rem;
            padding: 0.8rem 1rem;
            border-radius: 999px;
            border: 1px solid var(--glass-border);
            background: var(--glass-bg-strong);
            color: var(--text-light);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
            transition: var(--transition);
        }

        .blog-pagination .page-link:hover,
        .blog-pagination .page-link:focus {
            background: rgba(255, 43, 43, 0.1);
            border-color: rgba(255, 43, 43, 0.24);
            color: #fff;
        }

        .blog-pagination .page-item.active .page-link {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-color: transparent;
            color: #fff;
            box-shadow: 0 18px 38px rgba(255, 43, 43, 0.24);
        }

        .blog-cta-section {
            padding-top: 3rem;
        }

        .blog-footer-cta p {
            max-width: 720px;
            margin-bottom: 0;
        }

        @media (max-width: 1100px) {
            .blog-feature-card {
                grid-template-columns: 1fr;
            }

            .blog-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 900px) {
            .blog-hero-grid,
            .blog-article-footer {
                grid-template-columns: 1fr;
                flex-direction: column;
                align-items: flex-start;
            }

            .blog-stat {
                width: 100%;
            }

            .blog-title {
                max-width: none;
            }
        }

        @media (max-width: 767px) {
            .blog-stage {
                padding-top: 112px;
            }

            .blog-hero {
                padding-top: 24px;
            }

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

            .blog-card,
            .blog-stat,
            .blog-article,
            .blog-footer-cta,
            .blog-article-footer {
                padding: 24px;
            }

            .blog-hero-shell,
            .blog-feature-copy {
                padding: 1.25rem;
            }

            .blog-card {
                padding: 16px;
            }
        }

/* ===== assets/css/pages/cbws-about.css ===== */
.page-header {
        padding-top: 160px;
        padding-bottom: 80px;
        text-align: center;
        background: radial-gradient(
          circle at center,
          rgba(255, 43, 43, 0.08) 0%,
          transparent 70%
        );
        position: relative;
        overflow: hidden;
      }

      .mission-vision-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 4rem;
      }

      .mv-card {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        padding: 3rem;
        border-radius: 24px;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease, border-color 0.3s ease;
      }

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

      .mv-card h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .mv-card h3 i {
        color: var(--primary);
      }

      .mv-card p {
        color: var(--text-light);
        line-height: 1.8;
        font-size: 1.1rem;
      }

      .values-section {
        padding: 6rem 0;
      }

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

      .value-item {
        text-align: center;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 16px;
        border: 1px solid transparent;
        transition: all 0.3s ease;
      }

      .value-item:hover {
        background: var(--glass-bg);
        border-color: var(--glass-border);
      }

      .value-icon {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 1.5rem;
        display: inline-block;
      }

      .value-item h4 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        color: var(--text);
      }

      .value-item p {
        color: var(--text-light);
        font-size: 0.95rem;
      }

      .story-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        padding: 6rem 0;
      }

      .story-image img {
        width: 100%;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        border: 1px solid var(--glass-border);
      }

      @media (max-width: 768px) {
        .mission-vision-grid {
          grid-template-columns: 1fr;
        }
        .story-section {
          grid-template-columns: 1fr;
        }
      }

/* ===== assets/css/pages/cbws-affiliate.css ===== */
.affiliate-hero {
        min-height: 85vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        margin-top: 80px;
        padding: 100px 0;
      }
.affiliate-hero h1 {
        font-size: clamp(3rem, 6vw, 5rem);
        margin-bottom: 1.5rem;
        line-height: 1.1;
      }
.highlight-text {
        color: var(--primary);
        text-shadow: 0 0 30px rgba(255, 43, 43, 0.4);
      }
.affiliate-hero p {
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0 auto 2.5rem;
        color: var(--text-light);
      }
.commission-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 43, 43, 0.1);
        border: 1px solid rgba(255, 43, 43, 0.3);
        padding: 10px 24px;
        border-radius: 50px;
        margin-bottom: 30px;
        font-weight: 600;
        color: var(--primary);
        box-shadow: 0 0 20px rgba(255, 43, 43, 0.15);
      }
.steps-section {
        padding: 100px 0;
        position: relative;
      }
.steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 60px;
      }
.step-card {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 24px;
        padding: 40px;
        position: relative;
        transition: var(--transition);
      }
.step-card:hover {
        border-color: var(--primary);
        transform: translateY(-10px);
      }
.step-number {
        font-size: 5rem;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.03);
        position: absolute;
        top: 20px;
        right: 30px;
        line-height: 1;
      }
.step-icon {
        width: 60px;
        height: 60px;
        background: var(--primary);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        margin-bottom: 24px;
        box-shadow: 0 10px 20px rgba(255, 43, 43, 0.3);
      }
.who-can-join {
        padding: 100px 0;
        background: linear-gradient(
          180deg,
          transparent,
          rgba(255, 43, 43, 0.02),
          transparent
        );
      }
.persona-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 60px;
      }
.persona-card {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 30px;
        text-align: center;
        transition: var(--transition);
      }
.persona-card:hover {
        border-color: var(--primary);
        transform: translateY(-5px);
      }
.persona-icon {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 20px;
      }
.tiers-section {
        padding: 100px 0;
      }
.tiers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 60px;
      }
.tier-card {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 24px;
        padding: 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
        transition: var(--transition);
      }
.tier-card.featured {
        border-color: var(--primary);
        background: rgba(255, 43, 43, 0.05);
      }
.tier-card.featured::before {
        content: "Most Popular";
        position: absolute;
        top: 20px;
        right: -30px;
        background: var(--primary);
        color: white;
        padding: 5px 40px;
        transform: rotate(45deg);
        font-size: 0.8rem;
        font-weight: 600;
      }
.tier-percent {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 10px;
      }
.tier-name {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 20px;
      }
.tier-desc {
        color: var(--text-light);
        margin-bottom: 30px;
      }
.earnings-calculator {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 32px;
        padding: 60px;
        margin-top: 100px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
.earnings-calculator::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary), #ff8f8f);
      }
.calc-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        margin-top: 40px;
        align-items: center;
      }
.calc-item h3 {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 10px;
      }
.calc-item p {
        color: var(--text-light);
        font-size: 1.1rem;
      }
.faq-section {
        padding: 100px 0;
        max-width: 800px;
        margin: 0 auto;
      }
.faq-item {
        border-bottom: 1px solid var(--glass-border);
        margin-bottom: 20px;
      }
.faq-question {
        padding: 20px 0;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 500;
        font-size: 1.1rem;
        transition: var(--transition);
      }
.faq-question:hover {
        color: var(--primary);
      }
.faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        color: var(--text-light);
        line-height: 1.6;
      }
.faq-question.active + .faq-answer {
        padding-bottom: 20px;
      }
.faq-question i {
        transition: transform 0.3s ease;
      }
.faq-question.active i {
        transform: rotate(180deg);
      }
.contact-methods {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
        flex-wrap: wrap;
      }
.contact-method {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.05);
        padding: 15px 30px;
        border-radius: 50px;
        border: 1px solid var(--glass-border);
        transition: var(--transition);
        text-decoration: none;
        color: var(--text);
      }
.contact-method:hover {
        background: var(--primary);
        border-color: var(--primary);
      }
.cta-box {
        background: radial-gradient(
          circle at center,
          rgba(20, 20, 20, 0.9) 0%,
          #000 100%
        );
        border: 1px solid var(--glass-border);
        border-radius: 32px;
        padding: 80px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
@media (max-width: 768px) {
        .affiliate-hero h1 {
          font-size: 2.5rem;
        }
        .earnings-calculator {
          padding: 30px;
        }
        .contact-methods {
          flex-direction: column;
        }
        .cta-box {
          padding: 60px 24px;
        }
      }

/* ===== assets/css/pages/cbws-ai-solutions.css ===== */
.service-hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
        }
.cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_ai_hero_v2_1764049895892.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }

/* ===== assets/css/pages/cbws-contact.css ===== */
.page-header {
            padding-top: 160px;
            padding-bottom: 80px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(255, 43, 43, 0.08) 0%, transparent 70%);
        }

        .contact-section {
            padding-bottom: 100px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .contact-info {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 40px;
            height: fit-content;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .info-item:last-child {
            margin-bottom: 0;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 43, 43, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .info-content h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .info-content p, .info-content a {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .info-content a:hover {
            color: var(--primary);
        }

        .contact-form-container {
            background: rgba(20, 20, 20, 0.6);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 40px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-control {
            width: 100%;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            color: var(--text);
            font-family: var(--font-sans);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 0 0 4px rgba(255, 43, 43, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b4b4b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;
            cursor: pointer;
        }

        select.form-control option {
            background: #1a1a1a;
            color: var(--text);
        }

        .full-width {
            grid-column: 1 / -1;
        }

        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
        }

/* ===== assets/css/pages/cbws-crm-development.css ===== */
.service-hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_service_crm_1763909165436.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
        }
.cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_service_crm_1763909165436.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }

/* ===== assets/css/pages/cbws-dpdp.css ===== */
.policy-content {
        max-width: 900px;
        margin: 0 auto;
        color: var(--text-light);
      }
.policy-content h3 {
        color: var(--text);
        margin-top: 2.5rem;
        margin-bottom: 1rem;
      }
.policy-content h1 {
        font-size: 2.5rem;
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 1rem;
      }
.policy-content h2 {
        font-size: 1.8rem;
        color: var(--primary);
      }
.policy-content h3 {
        font-size: 1.3rem;
      }
.policy-content li {
        margin-bottom: 1rem;
        line-height: 1.7;
      }
.policy-content ul {
        list-style: disc;
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
      }
.policy-content strong {
        color: var(--text);
      }

/* ===== assets/css/pages/cbws-ecommerce.css ===== */
.service-hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_service_ecommerce_1763904591475.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
        }
.cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_service_ecommerce_1763904591475.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }

/* ===== assets/css/pages/cbws-erp-development.css ===== */
.service-hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_service_erp_1763909211839.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
        }
.cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_service_erp_1763909211839.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }

/* ===== assets/css/pages/cbws-gdpr.css ===== */
.policy-content {
        max-width: 900px;
        margin: 0 auto;
        color: var(--text-light);
      }
.policy-content h3 {
        color: var(--text);
        margin-top: 2.5rem;
        margin-bottom: 1rem;
      }
.policy-content h1 {
        font-size: 2.5rem;
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 1rem;
      }
.policy-content h2 {
        font-size: 1.8rem;
        color: var(--primary);
      }
.policy-content h3 {
        font-size: 1.3rem;
      }
.policy-content li {
        margin-bottom: 1rem;
        line-height: 1.7;
      }
.policy-content ul {
        list-style: disc;
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
      }
.policy-content strong {
        color: var(--text);
      }

/* ===== assets/css/pages/cbws-industries.css ===== */
.industries-hero {
            min-height: 60vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            margin-top: 80px;
            padding: 100px 0 80px;
        }
.industries-hero h1 {
            font-size: clamp(3rem, 6vw, 4.5rem);
            margin-bottom: 1.5rem;
            text-shadow: 0 0 30px rgba(255, 43, 43, 0.3);
        }
.industries-hero p {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-light);
        }
.stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
.stat-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: var(--transition);
        }
.stat-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }
.stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
.stat-label {
            font-size: 1rem;
            color: var(--text-light);
        }
.industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
.industry-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 40px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
.industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 43, 43, 0.03), transparent);
            opacity: 0;
            transition: var(--transition);
        }
.industry-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        }
.industry-card:hover::before {
            opacity: 1;
        }
.industry-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 43, 43, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }
.industry-card h3 {
            font-size: 1.75rem;
            margin-bottom: 16px;
            color: var(--text);
            position: relative;
            z-index: 1;
        }
.industry-card p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
.industry-features {
            list-style: none;
            margin-top: 20px;
            position: relative;
            z-index: 1;
        }
.industry-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            color: var(--text-light);
        }
.industry-features li i {
            color: var(--primary);
            font-size: 1.2rem;
        }
.cta-section {
            margin-top: 100px;
            padding: 80px 0;
        }
.cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(255, 43, 43, 0.1), transparent 70%);
            z-index: 0;
        }
.cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
.cta-content p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 30px;
        }
@media (max-width: 768px) {
            .industries-hero {
                padding: 80px 0 60px;
            }
            
            .industries-grid {
                grid-template-columns: 1fr;
            }

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

/* ===== assets/css/pages/cbws-lifetime-free-hosting.css ===== */
.page-header {
    padding-top: 160px;
    padding-bottom: 84px;
    text-align: center;
    background:
        radial-gradient(circle at top center, rgba(255, 43, 43, 0.1) 0%, transparent 46%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 58%);
}

.cbws-page-header-copy {
    max-width: 760px;
    margin: 1.5rem auto 0;
    color: var(--text-light);
    line-height: 1.8;
}

.cbws-lfh-overview {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}

.cbws-lfh-intro-card,
.cbws-lfh-offer-panel,
.cbws-lfh-card,
.cbws-lfh-infra-card,
.cbws-lfh-compare-card,
.cbws-lfh-cta-card,
.cbws-lfh-faq-wrap {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.cbws-lfh-intro-card,
.cbws-lfh-offer-panel,
.cbws-lfh-cta-card,
.cbws-lfh-faq-wrap {
    padding: 34px;
}

.cbws-lfh-intro-card p,
.cbws-lfh-section-copy,
.cbws-lfh-card p,
.cbws-lfh-offer-item p,
.cbws-lfh-infra-copy p,
.cbws-lfh-cta-card p,
.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

.cbws-lfh-policy-line {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(255, 43, 43, 0.08);
    border: 1px solid rgba(255, 43, 43, 0.2);
    color: var(--text);
    font-weight: 600;
}

.cbws-lfh-policy-line i,
.cbws-lfh-icon,
.cbws-lfh-point i {
    color: var(--primary);
}

.cbws-lfh-offer-panel {
    display: grid;
    gap: 18px;
    align-content: start;
}

.cbws-lfh-offer-item {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--glass-border);
}

.cbws-lfh-offer-item:last-of-type {
    padding-bottom: 0;
}

.cbws-lfh-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cbws-lfh-offer-actions,
.cbws-lfh-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 0.5rem;
}

.cbws-lfh-soft-band {
    background: linear-gradient(180deg, transparent, rgba(255, 43, 43, 0.02), transparent);
}

.cbws-lfh-grid--three,
.cbws-lfh-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.cbws-lfh-card {
    padding: 30px;
}

.cbws-lfh-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(255, 43, 43, 0.08);
    font-size: 1.6rem;
}

.cbws-lfh-card h3,
.cbws-lfh-infra-copy h2,
.cbws-lfh-compare-card h3,
.cbws-lfh-cta-card h2 {
    color: var(--text);
}

.cbws-lfh-infra-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    padding: 36px;
}

.cbws-lfh-infra-points {
    display: grid;
    gap: 16px;
    align-content: center;
}

.cbws-lfh-point {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    color: var(--text);
    font-weight: 500;
}

.cbws-lfh-point i {
    font-size: 1.25rem;
}

.cbws-lfh-compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cbws-lfh-compare-card {
    padding: 32px;
}

.cbws-lfh-compare-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 12px;
}

.cbws-lfh-compare-card li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cbws-lfh-compare-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
}

.cbws-lfh-compare-card--accent {
    background: linear-gradient(180deg, rgba(255, 43, 43, 0.08), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 43, 43, 0.22);
}

.cbws-lfh-faq-wrap {
    max-width: 960px;
    margin: 0 auto;
}

.cbws-lfh-faq-wrap .faq-item + .faq-item {
    margin-top: 14px;
}

.cbws-lfh-faq-wrap .faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    color: var(--text);
    padding: 0;
    font-size: 1.08rem;
    font-weight: 600;
}

.cbws-lfh-faq-wrap .faq-answer {
    padding-top: 0;
}

.cbws-lfh-cta-card {
    text-align: center;
}

.cbws-lfh-cta-card p {
    max-width: 720px;
    margin: 0 auto 2rem;
}

@media (max-width: 1024px) {
    .cbws-lfh-overview,
    .cbws-lfh-infra-card,
    .cbws-lfh-grid--three,
    .cbws-lfh-compare-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding-top: 136px;
        padding-bottom: 70px;
    }

    .cbws-lfh-intro-card,
    .cbws-lfh-offer-panel,
    .cbws-lfh-card,
    .cbws-lfh-infra-card,
    .cbws-lfh-compare-card,
    .cbws-lfh-cta-card,
    .cbws-lfh-faq-wrap {
        padding: 24px;
    }

    .cbws-lfh-policy-line {
        width: 100%;
        border-radius: 18px;
        align-items: flex-start;
    }

    .cbws-lfh-offer-actions .btn,
    .cbws-lfh-cta-actions .btn {
        width: 100%;
    }
}

/* ===== assets/css/pages/cbws-mobile-app-development.css ===== */
.service-hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_service_mobile_1763909102934.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
        }
.cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_service_mobile_1763909102934.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }

/* ===== assets/css/pages/cbws-seo-optimization.css ===== */
.service-hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_service_seo_1763909257130.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
        }
.cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_service_seo_1763909257130.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }

/* ===== assets/css/pages/cbws-services.css ===== */
.page-header {
            padding-top: 160px;
            padding-bottom: 80px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(255, 43, 43, 0.08) 0%, transparent 70%);
        }

        .services-grid-large {
            display: grid;
            grid-template-columns: 1fr;
            gap: 80px;
            margin-top: 40px;
        }

        .service-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .service-row.reverse {
            direction: rtl;
        }

        .service-row.reverse .service-content {
            direction: ltr;
        }

        .service-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            aspect-ratio: 16/9;
            background: var(--glass-bg);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        .service-image-placeholder {
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 43, 43, 0.1) 0%, #050505 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-image-placeholder i {
            font-size: 8rem;
            color: rgba(255, 43, 43, 0.5);
            filter: drop-shadow(0 0 20px rgba(255, 43, 43, 0.3));
        }

        .service-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--text);
        }

        .service-content p {
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .service-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            color: var(--text);
        }

        .feature-item i {
            color: var(--primary);
            font-size: 1.2rem;
        }

        .process-section {
            background: linear-gradient(180deg, transparent, rgba(255, 43, 43, 0.02), transparent);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .step-card {
            position: relative;
            padding: 40px 30px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(255, 43, 43, 0.4);
        }

        .step-card h3 {
            margin-top: 1rem;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        @media (max-width: 900px) {
            .service-row, .service-row.reverse {
                grid-template-columns: 1fr;
                direction: ltr;
            }
            .service-image {
                order: -1;
            }
        }

/* ===== assets/css/pages/cbws-sponsorship.css ===== */
.sponsorship-hero {
        min-height: 90vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        margin-top: 80px;
        padding: 120px 0;
      }
.sponsorship-hero h1 {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.1;
      }
.sponsorship-hero .subtitle {
        font-size: 1.5rem;
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 2rem;
      }
.sponsorship-hero p {
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto 2.5rem;
        color: var(--text-light);
        line-height: 1.8;
      }
.highlight-badge {
        display: inline-block;
        background: rgba(255, 43, 43, 0.1);
        border: 1px solid rgba(255, 43, 43, 0.3);
        padding: 12px 28px;
        border-radius: 50px;
        margin-bottom: 30px;
        font-weight: 600;
        color: var(--primary);
        box-shadow: 0 0 20px rgba(255, 43, 43, 0.15);
      }
.story-section {
        padding: 100px 0;
        background: linear-gradient(
          180deg,
          transparent,
          rgba(255, 43, 43, 0.02),
          transparent
        );
      }
.story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }
.story-image {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        border: 1px solid var(--glass-border);
      }
.story-image img {
        width: 100%;
        height: auto;
        display: block;
      }
.story-content {
        max-width: 600px;
      }
.story-content h2 {
        margin-bottom: 2rem;
      }
.story-content p {
        font-size: 1.2rem;
        line-height: 1.8;
        color: var(--text-light);
        text-align: justify;
      }
.provide-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 60px;
      }
.provide-card {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 24px;
        padding: 40px;
        text-align: center;
        transition: var(--transition);
      }
.provide-card:hover {
        border-color: var(--primary);
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.05);
      }
.provide-icon {
        width: 70px;
        height: 70px;
        background: rgba(255, 43, 43, 0.1);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        font-size: 2.5rem;
        color: var(--primary);
      }
.process-timeline {
        max-width: 900px;
        margin: 60px auto 0;
        position: relative;
      }
.timeline-item {
        display: flex;
        gap: 30px;
        margin-bottom: 50px;
        position: relative;
      }
.timeline-number {
        min-width: 60px;
        height: 60px;
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        box-shadow: 0 10px 30px rgba(255, 43, 43, 0.3);
      }
.timeline-content {
        flex: 1;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 30px;
      }
.timeline-content h3 {
        margin-bottom: 12px;
        color: var(--text);
      }
.requirements-section {
        padding: 100px 0;
        background: linear-gradient(
          180deg,
          transparent,
          rgba(255, 43, 43, 0.02),
          transparent
        );
      }
.requirements-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 60px;
      }
.requirement-card {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 30px;
      }
.requirement-card h3 {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        color: var(--primary);
      }
.requirement-card ul {
        list-style: none;
      }
.requirement-card li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
        color: var(--text-light);
        line-height: 1.6;
      }
.requirement-card li i {
        color: var(--primary);
        margin-top: 4px;
        font-size: 1.1rem;
      }
.disclaimer-box {
        background: rgba(255, 43, 43, 0.05);
        border: 1px solid rgba(255, 43, 43, 0.2);
        border-radius: 20px;
        padding: 40px;
        margin-top: 60px;
        text-align: center;
      }
.disclaimer-box h3 {
        color: var(--primary);
        margin-bottom: 16px;
      }
.cta-box {
        background: radial-gradient(
          circle at center,
          rgba(20, 20, 20, 0.9) 0%,
          #000 100%
        );
        border: 1px solid var(--glass-border);
        border-radius: 32px;
        padding: 80px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
@media (max-width: 768px) {
        .sponsorship-hero h1 {
          font-size: 2.5rem;
        }
        .timeline-item {
          flex-direction: column;
          gap: 20px;
        }
        .cta-box {
          padding: 60px 24px;
        }
        .story-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .provide-grid {
          grid-template-columns: 1fr;
        }
      }

/* ===== assets/css/pages/cbws-team.css ===== */
.page-header {
    padding-top: 160px;
    padding-bottom: 88px;
    text-align: center;
    background:
        radial-gradient(circle at top center, rgba(255, 43, 43, 0.14) 0%, transparent 44%),
        linear-gradient(180deg, rgba(255, 43, 43, 0.04), transparent 60%);
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.cbws-page-header-copy {
    max-width: 760px;
    margin: 1.5rem auto 0;
    color: var(--text-light);
    line-height: 1.8;
}

.cbws-team-summary {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: stretch;
    margin-bottom: 56px;
}

.cbws-team-summary-card,
.cbws-team-summary-panel,
.cbws-member-card,
.cbws-team-value-card,
.cbws-team-process-card,
.cbws-team-cta-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

.cbws-team-summary-card {
    padding: 36px;
}

.cbws-team-summary-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.cbws-team-summary-panel {
    padding: 32px;
    display: grid;
    gap: 18px;
}

.cbws-team-stat {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--glass-border);
}

.cbws-team-stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.cbws-team-stat-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cbws-team-stat-value {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.6;
}

.cbws-team-showcase-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

.cbws-team-showcase {
    position: relative;
    display: grid;
    gap: 22px;
}

.cbws-team-showcase::before,
.cbws-team-showcase::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 72px;
    z-index: 2;
    pointer-events: none;
}

.cbws-team-showcase::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg) 0%, rgba(0, 0, 0, 0) 100%);
}

.cbws-team-showcase::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg) 0%, rgba(0, 0, 0, 0) 100%);
}

.cbws-team-lane {
    --lane-gap: 22px;
    position: relative;
    overflow: hidden;
}

.cbws-team-track {
    display: flex;
    width: max-content;
    gap: var(--lane-gap);
    animation: cbws-team-scroll 36s linear infinite;
    will-change: transform;
}

.cbws-team-lane--reverse .cbws-team-track {
    animation-direction: reverse;
    animation-duration: 42s;
}

.cbws-team-lane:hover .cbws-team-track {
    animation-play-state: paused;
}

.cbws-team-track-group {
    display: flex;
    gap: var(--lane-gap);
}

.cbws-member-card {
    width: min(340px, calc(100vw - 56px));
    overflow: hidden;
    flex: 0 0 auto;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.cbws-member-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 43, 43, 0.28);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.26);
}

.cbws-member-photo-wrap {
    position: relative;
    aspect-ratio: 4 / 4.4;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 43, 43, 0.05), rgba(255, 255, 255, 0.015));
}

.cbws-member-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cbws-member-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.cbws-member-content {
    padding: 24px;
}

.cbws-member-content h3 {
    margin-bottom: 8px;
    font-size: 1.28rem;
    color: var(--text);
}

.cbws-member-role {
    display: block;
    margin-bottom: 14px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.5;
}

.cbws-member-bio {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.98rem;
}

.cbws-team-section-intro {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
    color: var(--text-light);
    line-height: 1.8;
}

.cbws-team-values-grid,
.cbws-team-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.cbws-team-value-card,
.cbws-team-process-card {
    padding: 30px;
}

.cbws-team-value-icon,
.cbws-team-process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(255, 43, 43, 0.1);
    color: var(--primary);
    font-size: 1.6rem;
}

.cbws-team-value-card h3,
.cbws-team-process-card h3 {
    margin-bottom: 12px;
    color: var(--text);
    font-size: 1.2rem;
}

.cbws-team-value-card p,
.cbws-team-process-card p {
    color: var(--text-light);
    line-height: 1.75;
}

.cbws-team-cta-card {
    position: relative;
    overflow: hidden;
    padding: 56px 36px;
    text-align: center;
}

.cbws-team-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(255, 43, 43, 0.12), transparent 58%);
    pointer-events: none;
}

.cbws-team-cta-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.cbws-team-cta-content p {
    color: var(--text-light);
    margin: 0 auto 2rem;
    max-width: 620px;
    line-height: 1.8;
}

.cbws-team-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@keyframes cbws-team-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - (var(--lane-gap) / 2)));
    }
}

@media (max-width: 1100px) {
    .cbws-team-values-grid,
    .cbws-team-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .cbws-team-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cbws-team-values-grid,
    .cbws-team-process-grid {
        grid-template-columns: 1fr;
    }

    .cbws-team-showcase::before,
    .cbws-team-showcase::after {
        display: none;
    }

    .cbws-team-lane {
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .cbws-team-lane::-webkit-scrollbar {
        display: none;
    }

    .cbws-team-track {
        animation: none;
        width: max-content;
    }

    .cbws-team-track-group[aria-hidden="true"] {
        display: none;
    }

    .cbws-member-card {
        width: min(320px, calc(100vw - 48px));
    }

    .cbws-team-summary-card,
    .cbws-team-summary-panel,
    .cbws-team-value-card,
    .cbws-team-process-card,
    .cbws-team-cta-card {
        padding: 24px;
    }

    .page-header {
        padding-top: 132px;
        padding-bottom: 72px;
    }
}

/* ===== assets/css/pages/cbws-terms.css ===== */
.terms-content {
        max-width: 900px;
        margin: 0 auto;
        color: var(--text-light);
      }
.terms-content h3 {
        color: var(--text);
        margin-top: 2.5rem;
        margin-bottom: 1rem;
      }
.terms-content h1 {
        font-size: 2.5rem;
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 1rem;
      }
.terms-content h2 {
        font-size: 1.8rem;
        color: var(--primary);
      }
.terms-content h3 {
        font-size: 1.3rem;
      }
.terms-content li {
        margin-bottom: 1rem;
        line-height: 1.7;
      }
.terms-content ul {
        list-style: disc;
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
      }
.terms-content strong {
        color: var(--text);
      }

/* ===== assets/css/pages/cbws-ui-ux-design.css ===== */
.service-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle at center, #1a0505 0%, #000000 100%); /* Fallback/Placeholder */
        }
.service-hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_service_uiux_1763904550984.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
        }
.cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_service_uiux_1763904550984.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }

/* ===== assets/css/pages/cbws-web-development.css ===== */
.service-hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
        }
.cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_webdev_hero_1763909739333.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }

/* ===== assets/css/pages/cbws-website-maintenance.css ===== */
.service-hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_service_maintenance_1763909297987.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
        }
.cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_service_maintenance_1763909297987.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }

/* ===== assets/css/pages/cbws-website-redesign.css ===== */
.service-hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_service_redesign_1763909327597.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
        }
.cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/websage_service_redesign_1763909327597.avif') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }

