/* ==========================================
   1. Payment Gateway Radio Selected Dot Fix
   ========================================== */
.gateway-input:checked ~ .gateway-circle {
    border-color: hsl(var(--color-primary)) !important;
}
.gateway-input:checked ~ .gateway-circle > div {
    opacity: 1 !important;
}

/* ==========================================
   2. Currency Switcher Design Fix
   ========================================== */
.currency-switch-btn {
    border: none !important;
    box-shadow: none !important;
}
.currency-switch-btn.active-currency-btn {
    background-color: hsl(var(--color-background)) !important;
    color: hsl(var(--color-base)) !important;
}

/* ==========================================
   3. Recommended Badge Pulsing Glow & Limited Time Badge Glow
   ========================================== */
@keyframes badge-glow-pulse {
    0%, 100% {
        box-shadow: 0 0 3px rgba(150, 190, 23, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 12px rgba(150, 190, 23, 0.9);
        transform: scale(1.04);
    }
}
.pulse-badge-anim {
    animation: badge-glow-pulse 1.8s infinite ease-in-out;
}

/* ==========================================
   4. Smooth Scroll and Alpine Cloak
   ========================================== */
html {
    scroll-behavior: smooth;
}
[x-cloak] {
    display: none !important;
}

/* ==========================================
   5. Product Features Grid Layout
   ========================================== */
.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================
   6. Specs Table Responsive Layout
   ========================================== */
.specs-table-wrapper {
    overflow-x: auto;
}
.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

/* ==========================================
   8. Checkout Config & Domain Input Box Card Styling
   ========================================== */
.checkout-config-option {
    background-color: hsl(var(--color-background-secondary)) !important;
    border: 1px solid hsl(var(--color-neutral)) !important;
    border-radius: var(--card-radius) !important;
    box-shadow: var(--card-shadow) !important;
    padding: 1.25rem 1.5rem !important;
}

.checkout-config-option input[type="text"],
.checkout-config-option input[type="number"],
.checkout-config-option select,
.checkout-config-option textarea {
    background-color: hsl(var(--color-background)) !important;
    border: 1px solid hsl(var(--color-neutral)) !important;
    border-radius: var(--input-radius) !important;
    padding: 0.625rem 1rem !important;
    font-size: 0.875rem !important;
    color: hsl(var(--color-base)) !important;
    width: 100% !important;
    outline: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.checkout-config-option input[type="text"]:focus,
.checkout-config-option input[type="number"]:focus,
.checkout-config-option select:focus,
.checkout-config-option textarea:focus {
    border-color: hsl(var(--color-primary)) !important;
    box-shadow: 0 0 0 2px rgba(150, 190, 23, 0.2) !important;
}

.checkout-config-option label {
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
    color: hsl(var(--color-base)) !important;
}
.cta-btn-primary {
    background-color: #544cff;
    color: #ffffff !important;
    width: 100%;
}
.cta-btn-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    width: 100%;
}
@media (min-width: 768px) {
    .cta-flex-wrapper {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .cta-text-area {
        max-width: 65%;
    }
    .cta-buttons-area {
        flex-direction: row;
        width: auto;
        flex-shrink: 0;
    }
    .cta-btn-primary, .cta-btn-secondary {
        width: auto;
    }
}

/* ==========================================
   8. Testimonial / Reviews Grid
   ========================================== */
.testimonials-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================
   9. Live Chat Typing/Thinking Dots Bounce Animation
   ========================================== */
@keyframes chat-bounce {
    0%, 100% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(-5px);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
.animate-bounce {
    display: inline-block !important;
    animation: chat-bounce 0.8s infinite !important;
}

/* ==========================================
   10. Mobile Full-Screen Chat Widget
   ========================================== */
@media (max-width: 767px) {
    .cz-chat-window {
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        top: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        border-radius: 0 !important;
        border: none !important;
    }
    
    /* Adjust header border radius on mobile */
    .cz-chat-window > div:first-child {
        border-radius: 0 !important;
    }
}

/* ==========================================
   11. Shorter Viewport Height Optimization
   ========================================== */
@media (max-height: 800px) and (min-width: 768px) {
    .cz-chat-window {
        bottom: 20px !important;
        height: min(640px, calc(100vh - 40px)) !important;
        max-height: calc(100vh - 40px) !important;
    }
}

/* ==========================================
   12. Coupon Box Padding Override (Desktop Only)
   ========================================== */
@media (min-width: 768px) {
    .custom-coupon-box {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}

/* ==========================================
   13. Navbar Links Premium Font & Size Override
   ========================================== */
.theme-nav-link,
.theme-nav-dropdown-trigger {
    font-size: 0.95rem !important; /* Slightly larger, very clean and legible */
    font-weight: 600 !important; /* Premium semi-bold */
    letter-spacing: 0.01em !important; /* Elegant spacing */
    color: hsl(var(--color-base) / 0.8) !important; /* Darker/clearer text */
    padding: 0.35rem 0.65rem !important; /* Balanced comfortable padding */
    border-radius: var(--button-radius, 6px) !important;
    transition: all 0.2s ease-in-out !important;
}

/* Subtle, soft hover transition with delicate tint */
.theme-nav-link:hover,
.theme-nav-dropdown-trigger:hover,
.theme-nav-dropdown-trigger.theme-nav-dropdown-trigger--open {
    color: hsl(var(--color-primary)) !important; /* Accent primary color on hover */
    background-color: hsl(var(--color-primary) / 0.07) !important; /* Very gentle soft tint */
}

.theme-nav-link--active,
.theme-nav-dropdown-trigger--active {
    color: hsl(var(--color-base)) !important; /* Active text color */
}

.theme-nav-link .theme-nav-dropdown-chevron,
.theme-nav-dropdown-trigger .theme-nav-dropdown-chevron {
    color: currentColor !important; /* Matches link color including hover */
    margin-left: 0.25rem !important;
}

/* Disable tiny floating underline on all navbar items for clean minimal look */
.theme-nav-link::after,
.theme-nav-link:hover::after,
.theme-nav-link--active::after,
.theme-nav-dropdown-trigger::after,
.theme-nav-dropdown-trigger:hover::after,
.theme-nav-dropdown-trigger--active::after,
.theme-nav-aux-link::after,
.theme-nav-aux-link:hover::after,
.theme-nav-aux-link--active::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

/* ==========================================
   14. Dropdown Button Border & Height Fix
   ========================================== */
.theme-nav-dropdown-trigger {
    border: none !important; /* Remove grey border outline */
    background-color: transparent !important; /* Transparent background */
    box-shadow: none !important; /* Remove shadows */
    min-height: 2.25rem !important; /* Adjust height to match simple links */
    padding-inline: 0.75rem !important; /* Equal link spacing */
}

/* Thinner top auxiliary navbar elements */
.theme-nav-aux-link {
    min-height: 1.5rem !important; /* Extremely compact links */
    padding-block: 0.1rem !important;
}

/* Thinner top header container padding and height overrides */
.theme-top-header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: auto !important;
    position: relative !important;
    z-index: 60 !important; /* Force top header to render on top of main navbar (z-50) */
}

.theme-top-header-inner {
    height: 32px !important; /* Precise 32px height */
    min-height: 32px !important;
}

/* Remove all shadows from site header and main nav menu */
.theme-site-header-shadow,
div.sticky.z-50.w-full.theme-site-header-shadow {
    box-shadow: none !important;
}

nav.border-b {
    box-shadow: none !important;
}

/* ==========================================
   15. Sub-menu Dropdown Item Premium Styling
   ========================================== */
.theme-nav-dropdown-item::after,
.theme-nav-dropdown-item--active::after,
.theme-nav-dropdown-item:hover::after {
    display: none !important; /* Completely disable underlines on sub-menu items */
}

.theme-nav-dropdown-item {
    transition: all 0.2s ease !important;
    border-radius: var(--button-radius) !important;
}

/* Hover state: premium soft background highlight and primary color */
.theme-nav-dropdown-item:hover {
    color: hsl(var(--color-primary)) !important;
    background-color: hsl(var(--color-primary) / 0.08) !important;
}

/* Active state: premium soft background highlight */
.theme-nav-dropdown-item--active {
    color: hsl(var(--color-primary)) !important;
    font-weight: 600 !important;
    background-color: hsl(var(--color-primary) / 0.12) !important;
}

/* ==========================================
   16. Language & Currency Dropdown Alignment
   ========================================== */
.theme-top-header-inner .relative {
    position: relative !important;
}

.theme-top-header-inner .relative div[x-ref="dropdown"] {
    position: absolute !important;
    top: 100% !important;
    margin-top: 0.25rem !important;
}

/* ==========================================
   17. Dynamic Navbar Link Highlights & Badges
   ========================================== */
/* Highlight link text if it has a valid badge (not empty) */
.theme-nav-link[data-badge] {
    position: relative !important;
    color: hsl(var(--color-base) / 0.9) !important; /* Fixed dark mode visibility */
    background: transparent !important;
    border: none !important;
    padding: 0.35rem 0.65rem !important; /* Match other menu item padding */
    margin-inline: 0 !important;
    border-radius: var(--button-radius, 6px) !important;
    transition: all 0.2s ease-in-out !important;
}

/* Reset to standard menu link color if the badge attribute is empty */
.theme-nav-link[data-badge=""] {
    color: hsl(var(--color-base) / 0.8) !important;
}

/* Hover state styling */
.theme-nav-link[data-badge]:hover {
    color: hsl(var(--color-primary)) !important;
    background-color: hsl(var(--color-primary) / 0.07) !important;
    transform: translateY(-0.5px) !important;
}

.theme-nav-link[data-badge=""]:hover {
    color: hsl(var(--color-primary)) !important;
    background-color: hsl(var(--color-primary) / 0.07) !important;
}

/* Keyframes for breathing pulsing glow on the badge (with skew) */
@keyframes hot-badge-pulse {
    0%, 100% {
        transform: translateX(-50%) skewX(-10deg) scale(0.85);
        box-shadow: 0 0 4px rgba(255, 59, 48, 0.4);
    }
    50% {
        transform: translateX(-50%) skewX(-10deg) scale(0.92);
        box-shadow: 0 0 10px rgba(255, 59, 48, 0.7);
    }
}

/* Floating premium badge above any highlighted menu item (Slanted rectangular banner) */
.theme-nav-link[data-badge]::before {
    content: attr(data-badge) !important;
    position: absolute !important;
    top: -9px !important; /* Positioned perfectly above the text */
    left: 50% !important;
    background: linear-gradient(135deg, #ff3b30, #ff2d55) !important; /* Premium gradient red */
    color: #ffffff !important;
    font-size: 8px !important;
    font-weight: 800 !important;
    padding: 1.5px 5px !important;
    border-radius: 2px !important; /* Rectangular shape with sharp/subtle corners */
    line-height: 1 !important;
    letter-spacing: 0.05em !important;
    pointer-events: none !important;
    font-family: system-ui, -apple-system, sans-serif !important;
    border: 1px solid #ffffff !important; /* Crisp white border separation */
    animation: hot-badge-pulse 2s infinite ease-in-out !important;
}

/* Completely hide the pseudo-element if the badge text is empty */
.theme-nav-link[data-badge=""]::before {
    display: none !important;
    content: none !important;
}

/* ==========================================
   18. Blog Extension Premium Theme Alignment
   ========================================== */

/* Typography & Layout Spacing */
.blog-ui.container {
    max-width: var(--container-max-width, 1280px) !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 1rem !important; /* px-4 */
    padding-right: 1rem !important;
}

@media (min-width: 1280px) {
    .blog-ui.container {
        padding-left: 0 !important; /* xl:px-0 */
        padding-right: 0 !important;
    }
}

.blog-ui h1, 
.blog-ui h2, 
.blog-ui h3 {
    font-family: var(--font-family-sans, 'Outfit', sans-serif) !important;
    letter-spacing: -0.015em !important;
}

/* Enforce Button Border Radius globally on Blog helper components */
.blog-ui .rounded-sm,
.blog-ui .rounded,
.blog-ui .rounded-md,
.blog-archive-topic-chip,
.blog-archive-clear-chip,
.blog-post-card-tag,
.blog-post-card-badge,
.blog-archive-input,
.blog-archive-page-button,
.blog-ui button,
.blog-ui a.inline-flex.rounded-sm {
    border-radius: var(--button-radius, 8px) !important;
}

/* Enforce Card Border Radius globally on Card/Section wrappers */
.blog-ui article,
.blog-ui .blog-post-card,
.blog-ui nav[aria-label="Breadcrumb"],
.blog-ui section[x-data*="blogFeedback"],
.blog-ui .blog-article-toc {
    border-radius: var(--card-radius, 12px) !important;
    border: 1px solid hsl(var(--color-neutral) / 0.15) !important;
}

/* Clip inner media properly */
.blog-post-card-media {
    border-top-left-radius: var(--card-radius, 12px) !important;
    border-top-right-radius: var(--card-radius, 12px) !important;
    border-bottom: 1px solid hsl(var(--color-neutral) / 0.15) !important;
}

.blog-ui article div:first-child img {
    border-top-left-radius: var(--card-radius, 12px) !important;
    border-top-right-radius: var(--card-radius, 12px) !important;
}

/* Premium Card Interactions */
.blog-post-card {
    background-color: hsl(var(--color-background-secondary)) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.blog-post-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px hsl(var(--color-primary) / 0.08) !important;
    border-color: hsl(var(--color-primary) / 0.35) !important;
}

.blog-post-card:hover .blog-post-card-image {
    transform: scale(1.04) !important;
}

/* Topic Chips / Tag styling */
.blog-archive-topic-chip {
    background-color: hsl(var(--color-background-secondary)) !important;
    border: 1px solid hsl(var(--color-neutral) / 0.15) !important;
    color: hsl(var(--color-base) / 0.7) !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

.blog-archive-topic-chip:hover {
    background-color: hsl(var(--color-primary) / 0.05) !important;
    border-color: hsl(var(--color-primary) / 0.3) !important;
    color: hsl(var(--color-primary)) !important;
}

.blog-archive-topic-chip--active {
    background-color: hsl(var(--color-primary) / 0.1) !important;
    border-color: hsl(var(--color-primary) / 0.4) !important;
    color: hsl(var(--color-primary)) !important;
    font-weight: 600 !important;
}

/* Search & Sort Input Overrides */
.blog-archive-input {
    background-color: hsl(var(--color-background-secondary)) !important;
    border: 1px solid hsl(var(--color-neutral) / 0.18) !important;
    border-radius: var(--button-radius, 8px) !important;
    transition: all 0.2s ease !important;
}

.blog-archive-input:focus {
    border-color: hsl(var(--color-primary)) !important;
    box-shadow: 0 0 0 3px hsl(var(--color-primary) / 0.15) !important;
}

/* Read Link Accentuation */
.blog-post-card-read {
    color: hsl(var(--color-primary)) !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.blog-post-card-read:hover {
    transform: translateX(3px) !important;
}

.blog-ui nav[aria-label="Breadcrumb"] {
    background-color: hsl(var(--color-background-secondary)) !important;
    border-color: hsl(var(--color-neutral) / 0.12) !important;
}

/* Premium Sticky Sidebar & Flex Layout for Article Map (TOC) */
@media (min-width: 1024px) {
    .blog-article-layout {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
        gap: 1.5rem !important;
    }

    .blog-article-main {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        order: 1 !important;
    }

    .blog-article-sidebar {
        position: sticky !important;
        top: 6.5rem !important;
        align-self: flex-start !important;
        min-height: fit-content !important;
        margin-top: 0 !important;
        margin-bottom: auto !important;
        flex: 0 0 20rem !important;
        width: 20rem !important;
        order: 2 !important;
        z-index: 10 !important;
    }
    
    .blog-article-sidebar-panel {
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        max-height: calc(100vh - 9rem) !important;
        overflow-y: auto !important;
    }
}

/* ==========================================
   19. Dark Mode Primary Color Readability Fix
   ========================================== */
body.dark .text-primary,
body.dark [style*="color: hsl(var(--color-primary))"] {
    color: #2dd4bf !important; /* Fallback bright teal */
    color: color-mix(in srgb, hsl(var(--color-primary)), white 40%) !important;
}

/* ==========================================
   20. Mobile Top Header Z-Index Drawer Override Fix
   ========================================== */
@media (max-width: 1023px) {
    .theme-top-header {
        z-index: 30 !important;
    }
}


/* ==========================================
   21. Searchable Dropdown Scrollbar
   ========================================== */
.searchable-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: hsl(var(--color-primary) / 0.4) transparent;
}

.searchable-scrollbar::-webkit-scrollbar {
    width: 5px;
}

.searchable-scrollbar::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 99px;
}

.searchable-scrollbar::-webkit-scrollbar-thumb {
    background: hsl(var(--color-primary) / 0.35);
    border-radius: 99px;
    transition: background 0.2s ease;
}

.searchable-scrollbar::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--color-primary) / 0.7);
}

/* ==========================================
   22. Native Select Premium Styling
   ========================================== */
.theme-native-select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    border-radius: var(--input-radius, 8px) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") !important;
    background-position: right 12px center !important;
    background-repeat: no-repeat !important;
    background-size: 14px !important;
    padding-right: 36px !important;
}

/* Custom Border Radius Fix for select option buttons */
/* Ensure Footer has zero border radius on all viewports */
footer,
body > footer {
    border-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

/* ==========================================
   23. Checkout Page Login/Register Full-Width Fields
   ========================================== */
.checkout-embedded-auth > div {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    display: block !important;
}

.checkout-embedded-auth section {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.5rem 1rem !important; /* Nice gap on all sides */
    margin: 0 !important;
    display: block !important;
}

.checkout-embedded-auth .auth-banner {
    display: none !important; /* Hide left banner on login page inside checkout */
}

.checkout-embedded-auth form {
    width: 100% !important;
    max-width: 100% !important;
}



/* Ensure form inputs and wrapper container take full width */
.checkout-embedded-auth form x-form-input,
.checkout-embedded-auth form .flex-col,
.checkout-embedded-auth form input:not([type="checkbox"]):not([type="radio"]),
.checkout-embedded-auth form select,
.checkout-embedded-auth form textarea {
    width: 100% !important;
}

/* ==========================================
   24. Checkout & Form Checkbox High Visibility Fix (Circular)
   ========================================== */
input[type="checkbox"],
input[type="radio"],
.form-checkbox,
.theme-checkbox {
    width: 1.25rem !important;
    height: 1.25rem !important;
    min-width: 1.25rem !important;
    min-height: 1.25rem !important;
    border: 2px solid #004d40 !important;
    border-radius: 50% !important; /* Circular shape */
    background-color: #ffffff !important;
    cursor: pointer !important;
    accent-color: #004d40 !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    vertical-align: middle !important;
    display: inline-block !important;
}

input[type="checkbox"]:hover,
input[type="radio"]:hover {
    border-color: #0d9488 !important;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2) !important;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
    background-color: #004d40 !important;
    border-color: #004d40 !important;
}

/* Terms of Service label and check container readability */
label:has(input[type="checkbox"]),
label:has(input[type="radio"]),
.checkout-terms-label,
.terms-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-weight: 500 !important;
    color: #111827 !important;
    cursor: pointer !important;
}

body.dark label:has(input[type="checkbox"]),
body.dark label:has(input[type="radio"]) {
    color: #f3f4f6 !important;
}

body.dark input[type="checkbox"],
body.dark input[type="radio"] {
    background-color: #111827 !important;
    border-color: #2dd4bf !important;
    accent-color: #2dd4bf !important;
}

/* ==========================================
   Domain Search Widget Styles
   ========================================== */
.cz-domain-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #cbd5e1;
    gap: 14px;
    transition: all 0.2s ease;
}
.cz-domain-row-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cz-domain-row-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
@media (max-width: 640px) {
    .cz-domain-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px 16px;
    }
    .cz-domain-row-left {
        justify-content: space-between;
        width: 100%;
    }
    .cz-domain-row-right {
        justify-content: space-between;
        width: 100%;
        border-top: 1px dashed #e2e8f0;
        padding-top: 10px;
        margin-top: 2px;
    }
    .cz-price-align {
        text-align: left !important;
    }
}

/* ==========================================
   BD Domain File Input — Equal Top/Bottom Padding Fix
   ========================================== */
.bd-file-input {
    display: flex !important;
    align-items: center !important;
    padding: 0 0 0 8px !important;
    overflow: hidden;
}

.bd-file-input::file-selector-button,
.bd-file-input::-webkit-file-upload-button {
    height: 100% !important;
    padding: 0 12px !important;
    margin-right: 10px !important;
    margin-left: 0 !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    align-self: stretch !important;
    flex-shrink: 0;
    background-color: hsl(var(--color-primary)) !important;
    color: #ffffff !important;
}

.bd-file-input:hover::file-selector-button,
.bd-file-input:hover::-webkit-file-upload-button {
    opacity: 0.9;
}

/* ==========================================
   CloudZex Next-Gen Control Panel Showcase
   ========================================== */
.cloudzex-panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
}
@media (min-width: 1024px) {
    .cloudzex-panel-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 3.5rem;
    }
}
.cloudzex-subfeatures-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}
@media (min-width: 640px) {
    .cloudzex-subfeatures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cloudzex-section-header {
    margin-bottom: 3.5rem !important;
}
@media (min-width: 768px) {
    .cloudzex-section-header {
        margin-bottom: 4.5rem !important;
    }
}

/* ==========================================
   19. Footer Polish: Social Buttons & Payment Badges
   ========================================== */
.theme-footer-social-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 2.35rem !important;
    height: 2.35rem !important;
    border-radius: var(--button-radius, 8px) !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.theme-footer-social-btn:hover {
    background-color: #ffffff !important;
    color: #0b221e !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    border-color: #ffffff !important;
}

.theme-footer-payment-badge {
    display: inline-flex !important;
    align-items: center !important;
    background-color: #ffffff !important;
    padding: 0.3rem 0.6rem !important;
    border-radius: var(--button-radius, 8px) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    max-width: 100% !important;
    transform: none !important;
    transition: none !important;
}

.theme-footer-payment-badge:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.theme-footer-payment-badge img {
    height: 2.2rem !important; /* 35px height on mobile */
    max-width: 100% !important;
    width: auto !important;
    object-fit: contain !important;
    transform: none !important;
    transition: none !important;
}

@media (min-width: 768px) {
    .theme-footer-payment-badge img {
        height: 2.45rem !important; /* ~39px height on desktop */
    }
}

/* ==========================================
   Footer Main Grid & Payment Alignment
   ========================================== */
.theme-footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    row-gap: 1.5rem !important;
    column-gap: 2.5rem !important;
    width: 100% !important;
}

@media (min-width: 768px) {
    .theme-footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        row-gap: 1.5rem !important;
        column-gap: 2.5rem !important;
    }
}

@media (min-width: 1024px) {
    .theme-footer-grid {
        grid-template-columns: 1.35fr 1fr 1fr 1fr !important;
        row-gap: 0.75rem !important;
        column-gap: 2.5rem !important;
    }
}

.theme-footer-payment-wrapper {
    grid-column: 1 / -1 !important;
    margin-top: 0.25rem !important;
}

@media (min-width: 1024px) {
    .theme-footer-payment-wrapper {
        grid-column: 2 / 5 !important;
        margin-top: 0 !important;
    }
}

/* ==========================================
   Interactive Solution Feature Cards
   ========================================== */
.solution-feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.75rem;
    border-radius: var(--card-radius, 1rem);
    background: var(--background-secondary, #ffffff);
    border: 1px solid var(--border-neutral, rgba(0, 0, 0, 0.08));
    box-shadow: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.solution-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: transparent;
    transition: all 0.3s ease;
}

.solution-feature-card.card-blue:hover::before {
    background: linear-gradient(90deg, #0284c7, #38bdf8);
}

.solution-feature-card.card-emerald:hover::before,
.solution-feature-card.card-emerald::before {
    background: linear-gradient(90deg, #059669, #34d399);
}

.solution-feature-card.card-purple:hover::before {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.solution-feature-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

.solution-icon-box {
    width: 3.15rem;
    height: 3.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.875rem;
    transition: transform 0.3s ease;
}

.solution-feature-card:hover .solution-icon-box {
    transform: none;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.01em;
}

.solution-pill-tag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    background: var(--background, rgba(0, 0, 0, 0.02));
    border: 1px solid var(--border-neutral, rgba(0, 0, 0, 0.05));
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-base, inherit);
    transition: background 0.2s ease;
}

.solution-feature-card:hover .solution-pill-tag {
    background: var(--background-hover, rgba(0, 0, 0, 0.04));
}

.solution-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: var(--button-radius, 0.5rem);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.25s ease;
    text-align: center;
    text-decoration: none !important;
}

.solution-btn-starter {
    background-color: rgba(2, 132, 199, 0.08) !important;
    color: #0284c7 !important;
    border: 1px solid rgba(2, 132, 199, 0.25) !important;
}

.solution-btn-starter:hover {
    background-color: #0284c7 !important;
    color: #ffffff !important;
    border-color: #0284c7 !important;
}

.solution-btn-flagship {
    background-color: var(--primary, #005a43) !important;
    color: #ffffff !important;
    border: 1px solid var(--primary, #005a43) !important;
}

.solution-btn-flagship:hover {
    opacity: 0.92 !important;
    color: #ffffff !important;
}

.solution-btn-control {
    background-color: rgba(124, 58, 237, 0.08) !important;
    color: #7c3aed !important;
    border: 1px solid rgba(124, 58, 237, 0.25) !important;
}

.solution-btn-control:hover {
    background-color: #7c3aed !important;
    color: #ffffff !important;
    border-color: #7c3aed !important;
}

.dark .solution-btn-starter {
    background-color: rgba(56, 189, 248, 0.12) !important;
    color: #38bdf8 !important;
    border-color: rgba(56, 189, 248, 0.3) !important;
}

.dark .solution-btn-starter:hover {
    background-color: #0284c7 !important;
    color: #ffffff !important;
}

.dark .solution-btn-control {
    background-color: rgba(167, 139, 250, 0.12) !important;
    color: #a78bfa !important;
    border-color: rgba(167, 139, 250, 0.3) !important;
}

.dark .solution-btn-control:hover {
    background-color: #7c3aed !important;
    color: #ffffff !important;
}

/* ==========================================
   CloudZex 4-Pillar Value Grid Cards
   ========================================== */
.cz-value-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.35rem 1.25rem;
    border-radius: var(--card-radius, 1rem);
    background: var(--background-secondary, #ffffff);
    border: 1px solid var(--border-neutral, rgba(0, 0, 0, 0.08));
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: none !important;
    transform: none !important;
}

.cz-value-card:hover {
    border-color: var(--primary, #059669);
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.05) !important;
    transform: none !important;
}

.cz-value-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.625rem;
    margin-bottom: 0.875rem;
}

.cz-value-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
    font-size: 0.725rem;
    font-weight: 600;
}

/* ==========================================
   Hero Node Floating Badges Animation & Banner Styles
   ========================================== */
@keyframes czHeroFloatSlow {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}
.animate-float-1 {
    animation: czHeroFloatSlow 4s ease-in-out infinite !important;
}
.animate-float-2 {
    animation: czHeroFloatSlow 5s ease-in-out 1s infinite !important;
}

.cz-hero-banner-dark {
    background-color: hsl(181, 100%, 14%) !important;
}
.cz-node-card-bg {
    background: rgba(0, 0, 0, 0.55) !important;
    border: 1px solid rgba(34, 150, 83, 0.35) !important;
    border-radius: 1.25rem !important;
}

@media (max-width: 1023px) {
    .cz-node-card-bg {
        background: hsl(181, 100%, 14%) !important;
        border: 1px solid rgba(34, 150, 83, 0.45) !important;
        box-shadow: 0 20px 40px -15px rgba(0, 71, 73, 0.5) !important;
    }
}

.cz-node-bar-bg {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}
.cz-bar-track-bg {
    background: rgba(0, 0, 0, 0.6) !important;
}
.cz-bar-fill-nvme {
    background-color: #229653 !important;
}
.cz-bar-fill-epyc {
    background-color: #3b82f6 !important;
}
.cz-bar-fill-ls {
    background-color: #f59e0b !important;
}
.cz-badge-active {
    background-color: rgba(34, 150, 83, 0.25) !important;
    color: #34d399 !important;
    border: 1px solid rgba(34, 150, 83, 0.35) !important;
}
.cz-pulse-dot {
    background-color: #229653 !important;
}

/* Floating Card 1 (Response Time) */
.cz-floating-card-top {
    position: absolute !important;
    top: -64px !important;
    left: -180px !important;
    right: auto !important;
    z-index: 20 !important;
    border-radius: 1rem !important;
}

/* Floating Card 2 (DDoS Protection) */
.cz-floating-card-bottom {
    position: absolute !important;
    bottom: -42px !important;
    right: 16px !important;
    left: auto !important;
    z-index: 20 !important;
    border-radius: 1rem !important;
}

/* Tablet (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .cz-floating-card-top {
        top: -24px !important;
        left: -16px !important;
    }
    .cz-floating-card-bottom {
        bottom: -24px !important;
        right: -16px !important;
    }
}

/* Mobile (480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .cz-floating-card-top {
        top: -20px !important;
        left: 4px !important;
        transform: scale(0.9) !important;
        transform-origin: top left !important;
    }
    .cz-floating-card-bottom {
        bottom: -20px !important;
        right: 4px !important;
        transform: scale(0.9) !important;
        transform-origin: bottom right !important;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 479px) {
    .cz-floating-card-top,
    .cz-floating-card-bottom {
        display: none !important;
    }
}
/* Hero Feature Cards (Option 1) */
.cz-hero-card {
    padding: 1.75rem 1.5rem !important;
    background-color: rgba(0, 0, 0, 0.28) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 1.25rem !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
    text-align: left !important;
}
.cz-hero-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(52, 211, 153, 0.4) !important;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.3) !important;
}
.cz-hero-card-icon {
    width: 3rem !important;
    height: 3rem !important;
    border-radius: 0.875rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1.25rem !important;
}
.cz-hero-card-title {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 0.5rem !important;
}
.cz-hero-card-desc {
    font-size: 0.8125rem !important;
    line-height: 1.6 !important;
    color: rgba(209, 250, 229, 0.85) !important;
    margin: 0 !important;
}

/* Overlapping Service Cards (4 Services Quick Navigator - Clean Flat Style, Responsive) */
.cz-hero-banner {
    background-color: hsl(181, 100%, 14%) !important;
    padding-top: 3.5rem !important;
    padding-bottom: 150px !important;
}
.cz-service-cards-container {
    margin-top: -110px !important;
    margin-bottom: 3rem !important;
}

@media (min-width: 640px) {
    .cz-hero-banner {
        padding-top: 4rem !important;
        padding-bottom: 210px !important;
    }
    .cz-service-cards-container {
        margin-top: -150px !important;
        margin-bottom: 3.5rem !important;
    }
}

@media (min-width: 1024px) {
    .cz-hero-banner {
        padding-top: 4.5rem !important;
        padding-bottom: 270px !important;
    }
    .cz-service-cards-container {
        margin-top: -190px !important;
        margin-bottom: 4rem !important;
    }
}

.cz-service-card {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 1.75rem !important;
    padding: 2.5rem 1.5rem 2rem 1.5rem !important;
    text-align: center !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease !important;
}
.cz-service-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: none !important;
    border-color: #229653 !important;
}
.cz-service-icon-circle {
    width: 5.25rem !important;
    height: 5.25rem !important;
    border-radius: 9999px !important;
    margin: 0 auto 1.5rem auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #ffffff !important;
    box-shadow: none !important;
    transition: transform 0.3s ease !important;
}
.cz-service-card:hover .cz-service-icon-circle {
    transform: scale(1.08) !important;
}
.cz-service-card-title {
    font-size: 1.25rem !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin: 0 0 1.25rem 0 !important;
}
.cz-service-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 1.75rem 0 !important;
    text-align: left !important;
    font-size: 0.84rem !important;
    color: #334155 !important;
    font-weight: 600 !important;
}
.cz-service-list li {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.35rem 0 !important;
    line-height: 1.4 !important;
}
.cz-service-bullet {
    font-size: 0.9rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
}
.cz-service-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    min-height: 2.75rem !important;
    padding: 0.75rem 1rem !important;
    border-radius: 0.75rem !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: none !important;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}
.cz-service-card:hover .cz-service-btn {
    background-color: #229653 !important;
    color: #ffffff !important;
    border-color: #229653 !important;
}

@media (max-width: 639px) {
    .cz-service-card {
        padding: 2.25rem 1.75rem 2rem 1.75rem !important;
        border-radius: 1.5rem !important;
    }
    .cz-service-icon-circle {
        width: 4.75rem !important;
        height: 4.75rem !important;
        margin-bottom: 1.25rem !important;
    }
    .cz-service-icon-circle .cz-service-icon {
        width: 2rem !important;
        height: 2rem !important;
    }
    .cz-service-card-title {
        font-size: 1.2rem !important;
        margin-bottom: 1.25rem !important;
        letter-spacing: 0.05em !important;
        white-space: nowrap !important;
    }
    .cz-service-list {
        margin: 0 auto 1.75rem auto !important;
        width: fit-content !important;
        font-size: 0.86rem !important;
    }
    .cz-service-list li {
        gap: 0.5rem !important;
        padding: 0.3rem 0 !important;
        line-height: 1.4 !important;
    }
    .cz-service-bullet {
        font-size: 0.9rem !important;
    }
    .cz-service-btn {
        min-height: 2.75rem !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
        border-radius: 0.75rem !important;
        gap: 0.5rem !important;
    }
}

/* ==========================================
   CloudZex Dedicated Features Page Styling
   ========================================== */
.cz-feat-hero {
    position: relative;
    background: linear-gradient(135deg, hsl(181, 100%, 14%) 0%, hsl(181, 100%, 9%) 100%);
    color: #ffffff;
    padding: 5rem 1.25rem 4rem 1.25rem;
    margin-top: -4rem;
    overflow: hidden;
    text-align: center;
}
.cz-feat-hero-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url('/lumen/assets/grid_bg.avif');
    background-size: 260px auto;
    opacity: 0.08;
    filter: invert(1);
}
.cz-feat-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.cz-feat-hero-badge-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.cz-feat-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #a3e635;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.825rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.cz-feat-hero-title {
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff !important;
    margin: 0 0 1.25rem 0;
}
@media (min-width: 768px) {
    .cz-feat-hero-title {
        font-size: 3.25rem;
    }
}
.cz-feat-gradient-text {
    background: linear-gradient(90deg, #a3e635 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cz-feat-hero-desc {
    max-width: 780px;
    margin: 0 auto 2.25rem auto;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.7;
}
.cz-feat-hero-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}
.cz-feat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease;
    box-shadow: none !important;
}
.cz-feat-btn-primary {
    background-color: #229653;
    color: #ffffff !important;
    border: 1px solid #229653;
}
.cz-feat-btn-primary:hover {
    background-color: #1b7a43;
    transform: translateY(-1px);
}
.cz-feat-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.cz-feat-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}
.cz-feat-btn-outline {
    background: transparent;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.cz-feat-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}
.cz-feat-btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

/* Stats Row */
.cz-feat-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .cz-feat-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}
.cz-feat-stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: none !important;
}
.cz-feat-stat-val {
    font-size: 1.85rem;
    font-weight: 800;
    color: #a3e635;
    margin-bottom: 0.25rem;
}
.cz-feat-stat-lbl {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Page Layout Wrap */
.cz-feat-page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.25rem 6rem 1.25rem;
    box-sizing: border-box;
}
.cz-feat-section {
    margin-bottom: 5.5rem;
}
.cz-feat-section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3rem auto;
}
.cz-feat-section-pill {
    display: inline-block;
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    font-size: 0.775rem;
    font-weight: 800;
    padding: 0.3rem 0.85rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.dark .cz-feat-section-pill {
    background-color: rgba(22, 101, 52, 0.2);
    color: #86efac;
    border-color: rgba(134, 239, 172, 0.3);
}
.cz-feat-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin: 0 0 0.85rem 0;
}
.dark .cz-feat-section-title {
    color: #f8fafc;
}
.cz-feat-section-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}
.dark .cz-feat-section-desc {
    color: #94a3b8;
}

/* Cards Grid */
.cz-feat-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .cz-feat-cards-grid.cz-feat-cards-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .cz-feat-cards-grid.cz-feat-cards-3col {
        grid-template-columns: repeat(3, 1fr);
    }
}
.cz-feat-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: transform 0.2s ease, border-color 0.2s ease;
    box-shadow: none !important;
}
.dark .cz-feat-card {
    background-color: #111827;
    border-color: #1f2937;
}
.cz-feat-card:hover {
    transform: translateY(-3px);
    border-color: #229653;
}
.cz-feat-icon-box {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    box-shadow: none !important;
}
.cz-feat-icon-green { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.cz-feat-icon-blue { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }
.cz-feat-icon-purple { background: #faf5ff; color: #9333ea; border: 1px solid #e9d5ff; }
.cz-feat-icon-amber { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }
.cz-feat-icon-red { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.cz-feat-icon-emerald { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

.dark .cz-feat-icon-green { background: rgba(5, 150, 105, 0.15); border-color: rgba(5, 150, 105, 0.3); }
.dark .cz-feat-icon-blue { background: rgba(37, 99, 235, 0.15); border-color: rgba(37, 99, 235, 0.3); }
.dark .cz-feat-icon-purple { background: rgba(147, 51, 234, 0.15); border-color: rgba(147, 51, 234, 0.3); }
.dark .cz-feat-icon-amber { background: rgba(217, 119, 6, 0.15); border-color: rgba(217, 119, 6, 0.3); }
.dark .cz-feat-icon-red { background: rgba(220, 38, 38, 0.15); border-color: rgba(220, 38, 38, 0.3); }
.dark .cz-feat-icon-emerald { background: rgba(22, 163, 74, 0.15); border-color: rgba(22, 163, 74, 0.3); }

.cz-feat-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.65rem 0;
}
.dark .cz-feat-card-title {
    color: #f8fafc;
}
.cz-feat-card-desc {
    font-size: 0.925rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
    flex-grow: 1;
}
.dark .cz-feat-card-desc {
    color: #94a3b8;
}
.cz-feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px dashed #e2e8f0;
    padding-top: 1rem;
}
.dark .cz-feat-list {
    border-top-color: #1f2937;
}
.cz-feat-list li {
    font-size: 0.85rem;
    color: #475569;
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.4rem;
    line-height: 1.5;
}
.dark .cz-feat-list li {
    color: #cbd5e1;
}
.cz-feat-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #229653;
    font-weight: 800;
    font-size: 0.85rem;
}

/* Comparison Table */
.cz-feat-table-section {
    margin-bottom: 5.5rem;
}
.cz-feat-table-container {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    overflow-x: auto;
    box-shadow: none !important;
}
.dark .cz-feat-table-container {
    background-color: #111827;
    border-color: #1f2937;
}
.cz-feat-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 650px;
}
.cz-feat-table th {
    padding: 1.25rem 1.5rem;
    font-size: 0.925rem;
    font-weight: 700;
    border-bottom: 1px solid #e2e8f0;
}
.dark .cz-feat-table th {
    border-bottom-color: #1f2937;
}
.cz-feat-th-feature {
    width: 38%;
    background-color: #f8fafc;
    color: #334155;
}
.dark .cz-feat-th-feature {
    background-color: #1e293b;
    color: #e2e8f0;
}
.cz-feat-th-cloudzex {
    width: 32%;
    background-color: #f0fdf4;
    color: #166534;
    border-left: 2px solid #229653;
}
.dark .cz-feat-th-cloudzex {
    background-color: rgba(22, 101, 52, 0.2);
    color: #86efac;
    border-left-color: #229653;
}
.cz-feat-th-legacy {
    width: 30%;
    background-color: #f8fafc;
    color: #64748b;
}
.dark .cz-feat-th-legacy {
    background-color: #1e293b;
    color: #94a3b8;
}
.cz-feat-table td {
    padding: 1.15rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}
.dark .cz-feat-table td {
    border-bottom-color: #1f2937;
}
.cz-feat-td-name {
    display: block;
    font-weight: 700;
    color: #0f172a;
}
.dark .cz-feat-td-name {
    color: #f8fafc;
}
.cz-feat-td-detail {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.15rem;
}
.dark .cz-feat-td-detail {
    color: #94a3b8;
}
.cz-feat-td-cloudzex {
    background-color: rgba(240, 253, 244, 0.4);
    border-left: 2px solid #229653;
    color: #15803d;
}
.dark .cz-feat-td-cloudzex {
    background-color: rgba(22, 101, 52, 0.1);
    color: #86efac;
}
.cz-feat-td-legacy {
    color: #64748b;
}
.dark .cz-feat-td-legacy {
    color: #94a3b8;
}
.cz-feat-check {
    color: #16a34a;
    font-weight: 800;
    margin-right: 0.35rem;
}
.cz-feat-cross {
    color: #dc2626;
    font-weight: 800;
    margin-right: 0.35rem;
}

/* Bottom CTA Banner */
.cz-feat-bottom-cta {
    background: linear-gradient(135deg, hsl(181, 100%, 14%) 0%, hsl(181, 100%, 8%) 100%);
    color: #ffffff;
    border-radius: 1.5rem;
    padding: 3.5rem 1.5rem;
    text-align: center;
    box-shadow: none !important;
}
@media (min-width: 768px) {
    .cz-feat-bottom-cta {
        padding: 4.5rem 3rem;
    }
}
.cz-feat-bottom-badge {
    display: inline-block;
    color: #a3e635;
    font-size: 0.825rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.cz-feat-bottom-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.3;
    margin: 0 0 1rem 0;
}
@media (min-width: 768px) {
    .cz-feat-bottom-title {
        font-size: 2.75rem;
    }
}
.cz-feat-bottom-desc {
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.65;
}
.cz-feat-bottom-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Domain Page Grid Pattern Background */
.domain-hero-grid-bg {
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.7;
}

/* Domain Page Modern Card Border Radius */
.domain-card {
    border-radius: 16px !important;
}

/* Domain Page Section Headers Spacing */
.domain-section-header {
    margin-bottom: 3.5rem !important;
}

/* ==========================================
   Domain Search Widget Clean Styles
   ========================================== */
.cz-search-tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
}
.cz-search-tab-btn:hover {
    color: #ffffff;
}
.cz-search-tab-btn--active {
    background: #ffffff !important;
    color: #0f172a !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.cz-domain-search-box {
    background: #ffffff;
    border-radius: 9999px;
    padding: 6px 6px 6px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 25px -4px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.6);
    width: 100%;
    min-height: 56px;
    box-sizing: border-box;
}

.cz-domain-search-input {
    width: 100%;
    background: transparent;
    border: none !important;
    outline: none !important;
    font-size: 15px;
    color: #0f172a;
    font-weight: 600;
    padding: 8px 0;
}
.cz-domain-search-input:focus {
    box-shadow: none !important;
    outline: none !important;
}

.cz-domain-epp-box {
    border-left: 1px solid #cbd5e1;
    padding-left: 12px;
    padding-right: 6px;
    display: flex;
    align-items: center;
    width: 160px;
    flex-shrink: 0;
}
.cz-domain-epp-input {
    width: 100%;
    background: transparent;
    border: none !important;
    outline: none !important;
    font-size: 13px;
    color: #0f172a;
    font-weight: 500;
}
.cz-domain-epp-input:focus {
    box-shadow: none !important;
    outline: none !important;
}

.cz-domain-search-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 9999px;
    padding: 0 20px;
    border: none;
    cursor: pointer;
    white-space: nowrap !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
    flex-shrink: 0;
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    min-width: 140px;
    height: 44px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.cz-btn-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}
.cz-domain-search-btn:hover {
    filter: brightness(1.05);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.45);
}

.cz-popular-tlds-wrap {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: #ffffff;
}

.cz-popular-tld-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 9999px;
    padding: 6px 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}
.cz-popular-tld-chip:hover {
    background: rgba(255, 255, 255, 0.22);
}

.cz-domain-error-alert {
    margin-top: 20px;
    padding: 14px 20px;
    background: rgba(244, 63, 94, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(244, 63, 94, 0.4);
    border-radius: 16px;
    color: #fecdd3;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.cz-results-breakout {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #f1f5f9;
    padding: 36px 0 54px 0;
    border-top: 1px solid #cbd5e1;
    border-bottom: 1px solid #cbd5e1;
    color: #0f172a;
    margin-top: 36px;
    margin-bottom: -48px;
}
.cz-results-inner {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    text-align: left;
}
.cz-results-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #cbd5e1;
}
.cz-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 14px;
    flex-wrap: wrap;
    gap: 8px;
}
.cz-badge-available {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    background: #22c55e;
    color: #ffffff;
}
.cz-badge-taken {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    background: #ef4444;
    color: #ffffff;
}
.cz-badge-transfer {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    background: #059669;
    color: #ffffff;
}
.cz-btn-cart {
    background: #334155;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    white-space: nowrap;
    transition: all 0.2s ease;
}
.cz-btn-cart:hover {
    background: #1e293b;
}
.cz-btn-transfer {
    background: #059669;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(5,150,105,0.25);
    white-space: nowrap;
    transition: all 0.2s ease;
}
.cz-btn-transfer:hover {
    background: #047857;
}
.cz-btn-loadmore {
    background: #0f172a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 12px;
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    transition: all 0.2s ease;
}
.cz-btn-loadmore:hover {
    background: #1e293b;
}


/* ==========================================================================
   HOMEPAGE HERO & SERVICE CARDS (ZERO INLINE STYLES)
   ========================================================================== */
.cz-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    margin-bottom: 1.5rem;
}
.cz-hero-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background-color: #34d399;
}
.cz-hero-h1 {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
    .cz-hero-h1 { font-size: 3rem; }
}
@media (min-width: 1024px) {
    .cz-hero-h1 { font-size: 3.75rem; }
}
.cz-hero-h1-highlight {
    color: #6ee7b7;
}
.cz-hero-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 42rem;
    margin: 0 auto 2.25rem auto;
    font-weight: 400;
    color: rgba(209, 250, 229, 0.9);
}
@media (min-width: 768px) {
    .cz-hero-subtitle { font-size: 1.125rem; }
}
.cz-hero-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.cz-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--button-radius, 8px);
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    background-color: #10b981;
    color: #022c22 !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
    transition: all 0.2s ease;
}
.cz-hero-btn-primary:hover {
    filter: brightness(1.05);
    color: #022c22 !important;
}
.cz-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--button-radius, 8px);
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    transition: all 0.2s ease;
}
.cz-hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
}
.cz-payment-badges-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(209, 250, 229, 0.75);
}
.cz-pay-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.15);
}
.cz-pay-badge--bkash { color: #f43f5e; }
.cz-pay-badge--nagad { color: #fb923c; }
.cz-pay-badge--visa { color: #60a5fa; }
.cz-pay-badge--mc { color: #f59e0b; }
.cz-pay-badge--amex { color: #38bdf8; }
.cz-pay-badge--cards { color: #a78bfa; }

/* Service Card Color Variants */
.cz-service-card--emerald .cz-service-icon-circle { border: 2px solid #10b981 !important; }
.cz-service-card--emerald .cz-service-icon,
.cz-service-card--emerald .cz-service-bullet { color: #10b981 !important; }

.cz-service-card--blue .cz-service-icon-circle { border: 2px solid #2563eb !important; }
.cz-service-card--blue .cz-service-icon,
.cz-service-card--blue .cz-service-bullet { color: #2563eb !important; }

.cz-service-card--purple .cz-service-icon-circle { border: 2px solid #9333ea !important; }
.cz-service-card--purple .cz-service-icon,
.cz-service-card--purple .cz-service-bullet { color: #9333ea !important; }

.cz-service-card--rose .cz-service-icon-circle { border: 2px solid #e11d48 !important; }
.cz-service-card--rose .cz-service-icon,
.cz-service-card--rose .cz-service-bullet { color: #e11d48 !important; }


/* ==========================================================================
   BORDER RADIUS UTILITIES & COMPONENT CARDS (ZERO INLINE CSS)
   ========================================================================== */
.rounded-2xl {
    border-radius: 1rem !important;
}
.rounded-xl {
    border-radius: 0.75rem !important;
}
.rounded-3xl {
    border-radius: 1.5rem !important;
}

.cz-trust-card {
    border-radius: 1rem !important;
    overflow: hidden;
}

.cz-trust-icon-box {
    width: 3.5rem !important;
    height: 3.5rem !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 1rem !important;
    background-color: hsl(var(--color-primary) / 0.1) !important;
    color: hsl(var(--color-primary)) !important;
}

.cz-prefaq-img {
    border-radius: 1rem !important;
    overflow: hidden;
}


/* ==========================================================================
   WEB HOSTING & PRODUCT LISTING PAGE STYLES (ZERO INLINE CSS)
   ========================================================================== */
.cz-product-hero-title {
    max-width: 48rem;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.08;
    color: #ffffff !important;
}
@media (min-width: 768px) {
    .cz-product-hero-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
    .cz-product-hero-title { font-size: 3.75rem; }
}

.cz-product-hero-desc {
    margin-top: 1.25rem;
    max-width: 42rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9) !important;
}

.cz-coupon-box {
    background-color: #0f172a !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
}

.cz-coupon-badge {
    background-color: #10b981 !important;
    color: #ffffff !important;
}

.cz-coupon-code-pill {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    line-height: 1;
}

.cz-coupon-copy-btn {
    background-color: #10b981 !important;
    color: #ffffff !important;
}

.cz-review-stars {
    color: #fbbf24 !important;
}

.cz-review-btn-wrap {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    width: 100%;
}


/* ==========================================================================
   CLOUD-OPTIMIZED PRODUCT PAGE STYLES (ZERO INLINE CSS)
   ========================================================================== */
.cz-cloud-table-th-highlight {
    color: hsl(var(--color-primary)) !important;
}

.cz-cloud-table-td-highlight {
    color: hsl(var(--color-primary)) !important;
    font-weight: 600;
}

.cz-cloud-spec-highlight {
    color: hsl(var(--color-primary)) !important;
    font-weight: 700;
}


/* ==========================================================================
   CLOUD-OPTIMIZED ENHANCED UI & SEO STYLES (ZERO INLINE CSS)
   ========================================================================== */
.cz-co-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background-color: hsl(var(--color-primary) / 0.1);
    color: hsl(var(--color-primary));
    border: 1px solid hsl(var(--color-primary) / 0.25);
}

.cz-co-pill-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: hsl(var(--color-primary));
    box-shadow: 0 0 8px hsl(var(--color-primary));
    animation: cz-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cz-co-stat-card {
    background-color: hsl(var(--color-background-secondary)) !important;
    border: 1px solid hsl(var(--color-neutral)) !important;
    border-radius: 1rem !important;
    padding: 1.75rem 1.5rem !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.05);
}

.cz-co-stat-card:hover {
    border-color: hsl(var(--color-primary) / 0.4) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -10px hsl(var(--color-primary) / 0.18);
}

.cz-co-stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    color: hsl(var(--color-primary));
    letter-spacing: -0.03em;
}

.cz-co-table-container {
    border-radius: 1rem !important;
    border: 1px solid hsl(var(--color-neutral)) !important;
    background-color: hsl(var(--color-background-secondary)) !important;
    box-shadow: 0 8px 30px -6px rgba(0, 0, 0, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.cz-co-table-header-active {
    background-color: hsl(var(--color-primary) / 0.12) !important;
    border-top: 3px solid hsl(var(--color-primary)) !important;
    color: hsl(var(--color-primary)) !important;
}

.cz-co-table-cell-active {
    background-color: hsl(var(--color-primary) / 0.05) !important;
    font-weight: 600;
    color: hsl(var(--color-primary)) !important;
}

.cz-co-card-rounded {
    border-radius: 1rem !important;
    overflow: hidden;
}

.cz-co-faq-item {
    border-radius: 0.875rem !important;
    overflow: hidden;
}

.cz-co-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: var(--color-neutral-subtle, rgba(125, 125, 125, 0.08));
    color: var(--color-base);
    border: 1px solid var(--color-neutral);
}


/* ==========================================================================
   CLOUD-OPTIMIZED MODERN COMPARISON MATRIX STYLES
   ========================================================================== */
.cz-matrix-container {
    border-radius: 1.25rem !important;
    border: 1px solid hsl(var(--color-neutral)) !important;
    background-color: hsl(var(--color-background-secondary)) !important;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08), 0 2px 8px -2px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.cz-matrix-col-cloud-th {
    background: linear-gradient(180deg, hsl(var(--color-primary) / 0.15) 0%, hsl(var(--color-primary) / 0.06) 100%) !important;
    border-left: 2px solid hsl(var(--color-primary) / 0.35) !important;
    border-right: 2px solid hsl(var(--color-primary) / 0.35) !important;
    border-top: 4px solid hsl(var(--color-primary)) !important;
}

.cz-matrix-col-cloud-td {
    background-color: hsl(var(--color-primary) / 0.03) !important;
    border-left: 2px solid hsl(var(--color-primary) / 0.25) !important;
    border-right: 2px solid hsl(var(--color-primary) / 0.25) !important;
}

.cz-matrix-col-cloud-tf {
    background-color: hsl(var(--color-primary) / 0.06) !important;
    border-left: 2px solid hsl(var(--color-primary) / 0.25) !important;
    border-right: 2px solid hsl(var(--color-primary) / 0.25) !important;
    border-bottom: 2px solid hsl(var(--color-primary) / 0.25) !important;
}

.cz-matrix-row:hover {
    background-color: hsl(var(--color-primary) / 0.02);
}

.cz-matrix-cross-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: hsl(var(--color-muted));
    font-size: 0.875rem;
}

.cz-matrix-check-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--color-base));
    font-weight: 600;
    font-size: 0.875rem;
}


/* ==========================================================================
   VPS SERVER PRODUCT PAGE STYLES (ZERO INLINE CSS)
   ========================================================================== */
.cz-vps-feature-card {
    border-radius: 1rem !important;
    overflow: hidden;
}

.cz-vps-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background-color: hsl(var(--color-primary) / 0.1);
    color: hsl(var(--color-primary));
    border: 1px solid hsl(var(--color-primary) / 0.25);
}

/* ==========================================================================
   PRINT MEDIA STYLES FOR CLEAN INVOICE PRINTING
   ========================================================================== */
@media print {
    /* Hide top nav, header, footer, verify banner, action buttons and widgets */
    header,
    nav,
    footer,
    .print\:hidden,
    [wire\:id*="verify-banner"],
    #cz-chat-root,
    #cz-chat-bubble,
    .fixed.bottom-0,
    .impersonate-banner,
    button:not(.allow-print) {
        display: none !important;
    }

    body {
        background: #ffffff !important;
        color: #000000 !important;
    }

    .shadow-sm, .shadow-md, .shadow-lg {
        box-shadow: none !important;
    }

    .bg-background-secondary {
        background: #ffffff !important;
    }
}
