@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ========================================================================= */
/* RUNWIND GLOBAL DESIGN SYSTEM & COMPONENT TOKENS                           */
/* ========================================================================= */
:root {
    --rw-ds-font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --rw-ds-font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Elegant Light Industrial Color Palette */
    --rw-ds-color-primary: #FF5733;         /* Hot Amber / Fire Red */
    --rw-ds-color-teal: #0f766e;            /* Deep Teal */
    --rw-ds-color-teal-dark: #115e59;
    --rw-ds-color-teal-light: #ccfbf1;
    
    --rw-ds-color-dark: #0b0f19;            /* Real dark background */
    --rw-ds-color-bg-dark: #111827;         /* Dark card background */
    --rw-ds-color-bg-light: #ffffff;        /* White background */
    --rw-ds-color-bg-gray: #f8fafc;         /* Light gray background */
    
    --rw-ds-color-text-dark: #0f172a;       /* Dark Text for light sections */
    --rw-ds-color-text-light: #f8fafc;      /* Light Text for dark sections */
    --rw-ds-color-text-muted-dark: #475569; /* Muted Dark Text */
    --rw-ds-color-text-muted-light: #94a3b8;/* Muted Light Text */
    
    --rw-ds-color-border-light: #e2e8f0;
    --rw-ds-color-border-dark: #1f2937;
    
    /* Layout Tokens */
    --rw-ds-container-width: 1200px;
    --rw-ds-radius: 12px;
    --rw-ds-radius-sm: 8px;
    
    /* Refined Shadows & Glassmorphic Shadows */
    --rw-ds-shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.1);
    --rw-ds-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.06);
    --rw-ds-shadow-lg: 0 10px 30px rgba(11, 19, 41, 0.08);
    --rw-ds-shadow-card-hover: 0 20px 40px rgba(11, 19, 41, 0.12);
    
    /* Physics-based transitions from generatepress-child/main.css */
    --rw-ds-transition-fast: 250ms cubic-bezier(0.16, 1, 0.3, 1);
    --rw-ds-transition-base: 400ms cubic-bezier(0.16, 1, 0.3, 1);
    --rw-ds-transition-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);
    --rw-ds-transition-spring: 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ========================================================================= */
/* BASE LAYOUT SYSTEM                                                        */
/* ========================================================================= */
.rw-ds-container {
    width: 100%;
    max-width: var(--rw-ds-container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.rw-ds-section {
    padding: 80px 0;
}
.rw-ds-section-dark {
    background-color: var(--rw-ds-color-dark);
    color: var(--rw-ds-color-text-light);
}
.rw-ds-section-light {
    background-color: #ffffff;
}
.rw-ds-section-gray {
    background-color: var(--rw-ds-color-bg-light);
}

/* Typography elements */
.rw-ds-h1, .rw-ds-h2, .rw-ds-h3, .rw-ds-h4 {
    font-family: var(--rw-ds-font-heading);
    font-weight: 700;
    margin: 0 0 16px 0;
}
.rw-ds-h1 {
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.rw-ds-h2 {
    font-size: clamp(1.85rem, 3vw, 2.375rem);
    line-height: 1.25;
    letter-spacing: -0.015em;
}
.rw-ds-h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.3;
}

.rw-ds-text-lead {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.6;
    color: var(--rw-ds-color-text-muted-dark);
}
.rw-ds-section-dark .rw-ds-text-lead {
    color: var(--rw-ds-color-text-muted-light);
}

.rw-ds-section-divider {
    width: 60px;
    height: 4px;
    background: var(--rw-ds-color-primary);
    border-radius: 2px;
    margin-bottom: 24px;
}
.rw-ds-section-divider.center {
    margin-left: auto;
    margin-right: auto;
}

.rw-ds-section-tag {
    font-family: var(--rw-ds-font-heading);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--rw-ds-color-primary);
    display: inline-block;
    margin-bottom: 12px;
}

/* ========================================================================= */
/* SHARED HIGH-END STYLES AND CARDS WITH HOVER ANIMATIONS                    */
/* ========================================================================= */

/* Standard Card hover effects */
.rw-ds-card {
    background: #ffffff;
    border: 1px solid var(--rw-ds-color-border-light);
    border-radius: var(--rw-ds-radius);
    padding: 30px;
    box-shadow: var(--rw-ds-shadow-sm);
    transition: transform var(--rw-ds-transition-spring), box-shadow var(--rw-ds-transition-spring), border-color var(--rw-ds-transition-fast);
    will-change: transform, box-shadow;
    height: 100%;
}
.rw-ds-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--rw-ds-color-teal);
    box-shadow: var(--rw-ds-shadow-card-hover);
}

/* Dynamic product display cards */
.rw-ds-product-card {
    background: #ffffff;
    border: 1px solid var(--rw-ds-color-border-light);
    border-radius: var(--rw-ds-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--rw-ds-shadow-sm);
    transition: transform var(--rw-ds-transition-spring), box-shadow var(--rw-ds-transition-spring), border-color var(--rw-ds-transition-fast);
    will-change: transform, box-shadow;
}
.rw-ds-product-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--rw-ds-color-primary);
    box-shadow: var(--rw-ds-shadow-card-hover);
}

/* Dynamic buttons with transition */
.rw-ds-btn {
    font-family: var(--rw-ds-font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    gap: 8px;
    transition: transform var(--rw-ds-transition-spring), box-shadow var(--rw-ds-transition-spring), background-color var(--rw-ds-transition-fast);
    will-change: transform, box-shadow;
}
.rw-ds-btn span {
    color: inherit !important;
}
.rw-ds-btn:hover {
    transform: translateY(-3px) scale(1.02);
}
.rw-ds-btn:active {
    transform: translateY(-1px) scale(0.99);
}

.rw-ds-btn-primary {
    background-color: var(--rw-ds-color-teal);
    color: #ffffff !important;
}
.rw-ds-btn-primary:hover {
    background-color: var(--rw-ds-color-teal-dark);
    box-shadow: var(--rw-ds-shadow-md);
}

.rw-ds-btn-accent {
    background-color: var(--rw-ds-color-primary);
    color: #ffffff !important;
}
.rw-ds-btn-accent:hover {
    background-color: #e04a26 !important;
    color: #ffffff !important;
    box-shadow: var(--rw-ds-shadow-md);
}

.rw-ds-btn-secondary {
    background-color: transparent;
    color: var(--rw-ds-color-teal) !important;
    border-color: rgba(15, 118, 110, 0.25);
}
.rw-ds-btn-secondary:hover {
    background-color: var(--rw-ds-color-teal) !important;
    border-color: var(--rw-ds-color-teal) !important;
    color: #ffffff !important;
}

/* Dark Section Button Overrides */
.rw-ds-section-dark .rw-ds-btn-secondary {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
}
.rw-ds-section-dark .rw-ds-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

/* --- High Contrast Dark Section Overrides --- */
.rw-ds-section-dark {
    color: rgba(255, 255, 255, 0.85) !important;
}
.rw-ds-section-dark .rw-ds-h1,
.rw-ds-section-dark .rw-ds-h2,
.rw-ds-section-dark .rw-ds-h3,
.rw-ds-section-dark .rw-ds-h4,
.rw-ds-section-dark h1,
.rw-ds-section-dark h2,
.rw-ds-section-dark h3,
.rw-ds-section-dark h4 {
    color: #ffffff !important;
}
.rw-ds-section-dark p,
.rw-ds-section-dark span,
.rw-ds-section-dark li,
.rw-ds-section-dark td,
.rw-ds-section-dark th,
.rw-ds-section-dark .rw-ds-text-lead {
    color: rgba(255, 255, 255, 0.8) !important;
}
.rw-ds-section-dark .rw-ds-section-tag {
    color: var(--rw-ds-color-primary) !important;
}

/* Restore dark text colors for light-colored cards nested within dark sections */
.rw-ds-section-dark .dcp-cta-card p,
.rw-ds-section-dark .dcp-cta-card span,
.rw-ds-section-dark .dcp-cta-card li,
.rw-ds-section-dark .dcp-cta-card h1,
.rw-ds-section-dark .dcp-cta-card h2,
.rw-ds-section-dark .dcp-cta-card h3,
.rw-ds-section-dark .dcp-cta-card h4,
.rw-ds-section-dark .dcp-cta-card strong,
.rw-ds-section-dark .dcp-cta-card em,
.rw-ds-section-dark .rw-ds-product-card p,
.rw-ds-section-dark .rw-ds-product-card span,
.rw-ds-section-dark .rw-ds-product-card li,
.rw-ds-section-dark .rw-ds-product-card h1,
.rw-ds-section-dark .rw-ds-product-card h2,
.rw-ds-section-dark .rw-ds-product-card h3,
.rw-ds-section-dark .rw-ds-product-card h4,
.rw-ds-section-dark .rw-ds-product-card strong,
.rw-ds-section-dark .rw-ds-product-card em,
.rw-ds-section-dark .rw-ds-card p,
.rw-ds-section-dark .rw-ds-card span,
.rw-ds-section-dark .rw-ds-card li,
.rw-ds-section-dark .rw-ds-card h1,
.rw-ds-section-dark .rw-ds-card h2,
.rw-ds-section-dark .rw-ds-card h3,
.rw-ds-section-dark .rw-ds-card h4,
.rw-ds-section-dark .rw-ds-card strong,
.rw-ds-section-dark .rw-ds-card em {
    color: var(--rw-ds-color-text-dark) !important;
}

/* ========================================================================= */
/* PREMIUM INDUSTRIAL SPECS TABLE & GRID                                     */
/* ========================================================================= */
.rw-ds-specs-table-container {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--rw-ds-color-border-light);
    border-radius: var(--rw-ds-radius);
    background: #ffffff;
    box-shadow: var(--rw-ds-shadow-sm);
}

.rw-ds-specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14.5px;
}

.rw-ds-specs-table th {
    background-color: var(--rw-ds-color-bg-gray);
    color: var(--rw-ds-color-text-dark) !important;
    font-family: var(--rw-ds-font-heading);
    font-weight: 700;
    padding: 16px 20px;
    border-bottom: 2px solid var(--rw-ds-color-border-light);
}

.rw-ds-specs-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--rw-ds-color-border-light);
    color: var(--rw-ds-color-text-muted-dark) !important;
}

.rw-ds-specs-table tr:last-child td {
    border-bottom: none;
}

.rw-ds-specs-table tr:nth-child(even) {
    background-color: var(--rw-ds-color-bg-light);
}

.rw-ds-specs-table tr {
    transition: background-color var(--rw-ds-transition-fast);
}

.rw-ds-specs-table tr:hover {
    background-color: rgba(15, 118, 110, 0.04);
}

/* ========================================================================= */
/* CUSTOM GRID PRIMITIVES                                                    */
/* ========================================================================= */
.rw-ds-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}
.rw-ds-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

/* ========================================================================= */
/* GENERATEPRESS NAV / OVERRIDES                                             */
/* ========================================================================= */
.site-header {
    background-color: #ffffff !important;
    border-bottom: 1px solid var(--rw-ds-color-border-light) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03) !important;
}

.main-navigation .main-nav ul li a {
    font-family: var(--rw-ds-font-heading) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: var(--rw-ds-color-text-dark) !important;
    transition: var(--rw-ds-transition-fast) !important;
}

.main-navigation .main-nav ul li a:hover,
.main-navigation .main-nav ul li.current-menu-item > a {
    color: var(--rw-ds-color-teal) !important;
    background: transparent !important;
}

/* GeneratePress footer override */
.site-footer {
    background-color: var(--rw-ds-color-dark) !important;
    color: var(--rw-ds-color-text-muted-light) !important;
    border-top: 1px solid var(--rw-ds-color-border-dark) !important;
}

.site-footer a {
    color: var(--rw-ds-color-text-muted-light) !important;
    transition: var(--rw-ds-transition-fast) !important;
}

.site-footer a:hover {
    color: var(--rw-ds-color-primary) !important;
}

.footer-widgets {
    padding: 80px 0 40px 0 !important;
}

.footer-widgets .widget-title {
    font-family: var(--rw-ds-font-heading) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #ffffff !important;
    margin-bottom: 24px !important;
}

.site-info {
    background-color: rgba(0,0,0,0.2) !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
    padding: 30px 0 !important;
    font-size: 13px !important;
}

/* ========================================================================= */
/* PREMIUM CONTACT FORM STYLING                                             */
/* ========================================================================= */
.rw-ds-form-container {
    background: #ffffff;
    border: 1px solid var(--rw-ds-color-border-light);
    padding: 40px;
    border-radius: var(--rw-ds-radius);
    box-shadow: var(--rw-ds-shadow-lg);
}

.rw-ds-form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.rw-ds-form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.rw-ds-form-label {
    font-family: var(--rw-ds-font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--rw-ds-color-text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rw-ds-form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--rw-ds-font-body);
    font-size: 15px;
    color: var(--rw-ds-color-text-dark);
    background-color: var(--rw-ds-color-bg-light);
    border: 1px solid var(--rw-ds-color-border-light);
    border-radius: 8px;
    outline: none;
    transition: var(--rw-ds-transition-fast);
}

.rw-ds-form-control:focus {
    border-color: var(--rw-ds-color-teal);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.rw-ds-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: rw-ds-spin 1s ease-in-out infinite;
}

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

.rw-ds-form-success {
    display: none;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

/* ========================================================================= */
/* RESPONSIVENESS AND MOBILE ADAPTATION SYSTEM                               */
/* ========================================================================= */
@media (max-width: 1024px) {
    .rw-ds-container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .rw-ds-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .footer-widgets {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }
    .rw-ds-container,
    .dcp-cp-page .rw-ds-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* High Specificity Overrides to neutralize inline styles like style="grid-template-columns:..." */
    .dcp-cp-page [style*="grid-template-columns"],
    .dcp-cp-page [style*="display: grid"],
    .dcp-cp-page [style*="display:grid"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .dcp-cp-page h1,
    .dcp-cp-page .rw-ds-h1,
    .dcp-cp-page [style*="font-size: 44px"],
    .dcp-cp-page [style*="font-size:44px"],
    .dcp-cp-page [style*="font-size: 52px"],
    .dcp-cp-page [style*="font-size:52px"] {
        font-size: clamp(1.55rem, 5.5vw, 2.1rem) !important;
        line-height: 1.25 !important;
        margin-bottom: 16px !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        hyphens: auto !important;
    }
    .dcp-cp-page h2,
    .dcp-cp-page .rw-ds-h2 {
        font-size: clamp(1.3rem, 4.5vw, 1.7rem) !important;
        line-height: 1.3 !important;
        margin-bottom: 14px !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    .dcp-cp-page h3,
    .dcp-cp-page .rw-ds-h3 {
        font-size: clamp(1.1rem, 4vw, 1.3rem) !important;
        line-height: 1.35 !important;
        margin-bottom: 12px !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    .rw-ds-text-lead,
    .dcp-cp-page [style*="font-size: 18px"],
    .dcp-cp-page [style*="font-size:18px"] {
        font-size: 15px !important;
        line-height: 1.55 !important;
    }
    .rw-ds-grid-2, 
    .rw-ds-grid-3, 
    .rw-ds-grid-4,
    .dcp-grid-2,
    .dcp-grid-3,
    .dcp-grid-4,
    .rw-ds-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        width: 100% !important;
    }
    .rw-ds-section, 
    .rw-ds-section-light, 
    .rw-ds-section-gray, 
    .rw-ds-section-dark {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }
    .rw-ds-card, 
    .rw-ds-product-card,
    .dcp-card {
        padding: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }
    .footer-widgets {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .rw-ds-form-group-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    img, video, iframe, svg {
        max-width: 100% !important;
        height: auto !important;
    }
    .rw-ds-btn {
        width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
        margin-bottom: 10px !important;
    }
}

/* ========================================================================= */
/* RUNWIND COMPONENT CLASSES FOR INTERACTIVE LAYOUTS                         */
/* ========================================================================= */

.rw-ds-icon-check {
    width: 35px;
    height: 35px;
    background: var(--rw-ds-color-teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--rw-ds-color-teal);
    font-weight: bold;
}

.rw-ds-text-small {
    font-size: 13.5px;
    color: var(--rw-ds-color-text-muted-dark);
    line-height: 1.5;
    margin: 0;
}

.rw-ds-tag-small {
    font-family: var(--rw-ds-font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--rw-ds-color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rw-ds-card-footer {
    padding: 15px 25px;
    background: var(--rw-ds-color-bg-light);
    border-top: 1px solid var(--rw-ds-color-border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.rw-ds-card-footer a {
    font-weight: 700;
    color: var(--rw-ds-color-primary);
    text-decoration: none !important;
}

.rw-ds-grid-2-alt {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}
@media (max-width: 768px) {
    .rw-ds-grid-2-alt {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.rw-ds-image-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f8fafc;
    border-radius: var(--rw-ds-radius-sm);
    overflow: hidden;
    box-shadow: var(--rw-ds-shadow-sm);
    border: 1px solid var(--rw-ds-color-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.rw-ds-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.rw-ds-text-body {
    font-size: 14.5px;
    color: var(--rw-ds-color-text-muted-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.rw-ds-row-challenge {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--rw-ds-color-border-light);
}
@media (max-width: 768px) {
    .rw-ds-row-challenge {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.rw-ds-card-error {
    background: rgba(239, 68, 68, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.15);
    padding: 25px;
    border-radius: var(--rw-ds-radius-sm);
    transition: transform var(--rw-ds-transition-spring);
    will-change: transform;
}
.rw-ds-card-error:hover {
    transform: translateY(-4px);
}

.rw-ds-label-alert {
    font-family: var(--rw-ds-font-heading);
    font-weight: 700;
    color: #ef4444;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rw-ds-card-success {
    background: rgba(15, 118, 110, 0.03);
    border: 1px solid rgba(15, 118, 110, 0.15);
    padding: 25px;
    border-radius: var(--rw-ds-radius-sm);
    transition: transform var(--rw-ds-transition-spring);
    will-change: transform;
}
.rw-ds-card-success:hover {
    transform: translateY(-4px);
}

.rw-ds-label-success {
    font-family: var(--rw-ds-font-heading);
    font-weight: 700;
    color: var(--rw-ds-color-teal);
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rw-ds-step-badge {
    position: absolute;
    top: -15px;
    left: 25px;
    background: var(--rw-ds-color-primary);
    color: #ffffff;
    font-family: var(--rw-ds-font-heading);
    font-weight: 700;
    font-size: 13px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: var(--rw-ds-shadow-sm);
}

.rw-ds-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}
@media (max-width: 1024px) {
    .rw-ds-grid-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .rw-ds-grid-5 {
        grid-template-columns: 1fr;
    }
}

.rw-ds-padding-lg {
    padding: 90px 0;
}

.rw-ds-flex-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.rw-ds-material-tag {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--rw-ds-font-heading);
    font-size: 14.5px;
    color: var(--rw-ds-color-text-dark);
}

.rw-ds-btn-group-center {
    display: inline-flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.rw-ds-faq-item {
    margin-bottom: 10px;
    padding: 18px;
    transition: transform var(--rw-ds-transition-spring), box-shadow var(--rw-ds-transition-spring);
    will-change: transform, box-shadow;
}
.rw-ds-faq-item:hover {
    transform: translateY(-2px);
}

.rw-ds-faq-summary {
    font-family: var(--rw-ds-font-heading);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--rw-ds-color-teal);
    transition: color var(--rw-ds-transition-fast);
}
.rw-ds-faq-summary::-webkit-details-marker {
    display: none;
}
.rw-ds-faq-summary:hover {
    color: var(--rw-ds-color-teal-dark);
}

.rw-ds-faq-icon {
    font-size: 18px;
    font-weight: bold;
    color: var(--rw-ds-color-primary);
}

.rw-ds-faq-content {
    margin-top: 12px;
    font-size: 14.5px;
    color: var(--rw-ds-color-text-muted-dark);
    line-height: 1.6;
    border-top: 1px solid var(--rw-ds-color-border-light);
    padding-top: 10px;
}

/* Custom Mega Footer Styles */
.footer-html-inner .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}
.footer-html-inner .footer-col h4 {
    color: #ffffff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
    border-left: 3px solid #0f766e;
    padding-left: 8px;
    font-weight: 700;
}
.footer-html-inner .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-html-inner .footer-col ul li {
    margin-bottom: 0.6rem;
    list-style: none;
}
.footer-html-inner .footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-html-inner .footer-col ul li a:hover {
    color: #14b8a6;
}
.footer-html-inner .footer-col p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
.footer-html-inner .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.8rem;
}
@media (max-width: 768px) {
    .footer-html-inner .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Global GeneratePress Header & Navigation Overrides (Mockup-Matching dark theme) */
.site-header {
    background-color: #0f172a !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    padding: 0px 2rem !important;
}
.inside-header {
    max-width: var(--rw-ds-container-width) !important;
    height: 75px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}
/* Title & Logo Styling */
.site-branding .main-title a {
    display: inline-block !important;
    font-size: 0px !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}
.site-branding .main-title a::before {
    content: "DIECUTTER";
    font-size: 1.3rem !important;
    color: #ffffff !important;
}
.site-branding .main-title a::after {
    content: "PRESS";
    font-size: 1.3rem !important;
    color: #14b8a6 !important;
}
/* Navigation & Dropdown Styling */
.main-navigation,
.main-navigation ul {
    background-color: transparent !important;
}
.main-navigation a {
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    transition: color 0.2s !important;
}
.main-navigation .main-nav ul li a:hover,
.main-navigation .main-nav ul li.current-menu-item a {
    color: #14b8a6 !important;
}
/* Submenus / Dropdowns dropdown */
.main-navigation ul ul {
    background-color: #1e293b !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: var(--rw-ds-radius-sm) !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3) !important;
    padding: 0.5rem 0 !important;
}
.main-navigation ul ul a {
    color: #94a3b8 !important;
    font-size: 0.88rem !important;
    padding: 10px 20px !important;
}
.main-navigation ul ul a:hover {
    background-color: rgba(255,255,255,0.03) !important;
    color: #14b8a6 !important;
}

/* Global GeneratePress Footer Overrides */
.site-footer {
    background-color: #090d16 !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
    padding: 3rem 0 2rem 0 !important;
    color: #94a3b8 !important;
}
.site-info {
    background-color: transparent !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
    padding: 1.5rem 0 0 0 !important;
    margin-top: 2rem !important;
    color: #64748b !important;
    font-size: 0.8rem !important;
}
.inside-site-info {
    max-width: var(--rw-ds-container-width) !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}
.inside-site-info a {
    color: #64748b !important;
    text-decoration: none !important;
    margin-left: 15px !important;
}
.inside-site-info a:hover {
    color: #14b8a6 !important;
}

/* Custom Mega Footer Alignment Overrides */
.footer-html-inner {
    max-width: var(--rw-ds-container-width) !important;
    margin: 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 1.5rem !important;
    text-align: left !important;
}
.site-info {
    text-align: left !important;
    padding: 0 !important;
    margin-top: 0 !important;
}
.site-info .inside-site-info {
    display: block !important;
    padding: 0 !important;
}

/* Timeline Layout Fix for all permutations (li, dcp-step, and img size constraints) */
.dcp-cp-page .dcp-timeline {
  display: grid !important;
  gap: 16px !important;
  margin: 28px 0 !important;
  list-style: none !important;
  padding: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
}
.dcp-cp-page .dcp-timeline img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 16px !important;
  margin-bottom: 22px !important;
}
/* Base style: 1-column stacked layout (when strong is first, i.e. heading + description span without circle) */
.dcp-cp-page .dcp-timeline li {
  display: block !important;
  margin-bottom: 20px !important;
  color: #ffffff !important;
  list-style: none !important;
  padding: 0 !important;
}
.dcp-cp-page .dcp-timeline li strong {
  display: block !important;
  font-size: 15px !important;
  color: #fff !important;
  margin: 0 0 6px 0 !important;
}
.dcp-cp-page .dcp-timeline li span {
  display: block !important;
  font-size: 13.5px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  line-height: 1.5 !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* 2-column grid layout: ONLY when span is the first child (which acts as the number circle) */
.dcp-cp-page .dcp-timeline li:has(span:first-child) {
  display: grid !important;
  grid-template-columns: 42px 1fr !important;
  column-gap: 12px !important;
  row-gap: 4px !important;
}
.dcp-cp-page .dcp-timeline li span:first-child {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  display: inline-flex !important;
  width: 34px !important;
  height: 34px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: var(--dcp-orange) !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.dcp-cp-page .dcp-timeline li span:first-child + strong {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: block !important;
  color: #fff !important;
  font-size: 15px !important;
  margin: 0 !important;
}
.dcp-cp-page .dcp-timeline li span:first-child + strong + em {
  grid-column: 2 !important;
  grid-row: 2 !important;
  display: block !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-style: normal !important;
  font-size: 13.5px !important;
  line-height: 1.5 !important;
}

/* Fallback/alternative dcp-step class support */
.dcp-cp-page .dcp-step {
  display: grid !important;
  grid-template-columns: 42px 1fr !important;
  row-gap: 4px !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 18px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
  width: 100% !important;
  min-width: 0 !important;
}
.dcp-cp-page .dcp-step span:first-child {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  position: static !important;
  display: inline-flex !important;
  width: 34px !important;
  height: 34px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: var(--dcp-orange) !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 14px !important;
}
.dcp-cp-page .dcp-step div {
  grid-column: 2 !important;
  grid-row: 1 / span 2 !important;
  display: block !important;
  min-width: 0 !important;
}
.dcp-cp-page .dcp-step .rw-ds-h4 {
  margin: 0 0 4px 0 !important;
  color: #fff !important;
  font-size: 15px !important;
}
.dcp-cp-page .dcp-step .rw-ds-text-small {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 13.5px !important;
  line-height: 1.5 !important;
}

/* Timeline-item grid coordinate overrides to prevent paragraph squishing */
.dcp-cp-page .dcp-timeline-item {
  display: grid !important;
  grid-template-columns: 42px 1fr !important;
  column-gap: 12px !important;
  row-gap: 4px !important;
  align-items: start !important;
  position: relative !important;
  padding: 16px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 20px !important;
}
.dcp-cp-page .dcp-timeline-item span {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  position: static !important;
  display: inline-flex !important;
  width: 34px !important;
  height: 34px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: var(--dcp-orange) !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.dcp-cp-page .dcp-timeline-item strong {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: block !important;
  color: #fff !important;
  font-size: 15px !important;
  margin: 0 0 4px 0 !important;
}
.dcp-cp-page .dcp-timeline-item p {
  grid-column: 2 !important;
  grid-row: 2 !important;
  display: block !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 13.5px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* Contextual Colors for Timelines, Steps & Timeline Cards based on Section Theme */
/* -- 1. Dark Section Theme (Light text, dark cards) -- */
.rw-ds-section-dark .dcp-timeline li,
.rw-ds-section-dark .dcp-step,
.rw-ds-section-dark .dcp-timeline-item {
  color: rgba(255, 255, 255, 0.78) !important;
}
.rw-ds-section-dark .dcp-timeline li strong,
.rw-ds-section-dark .dcp-step .rw-ds-h4,
.rw-ds-section-dark .dcp-timeline-item strong {
  color: #ffffff !important;
}
.rw-ds-section-dark .dcp-timeline li em,
.rw-ds-section-dark .dcp-timeline li span:not(:first-child),
.rw-ds-section-dark .dcp-step .rw-ds-text-small,
.rw-ds-section-dark .dcp-timeline-item p {
  color: rgba(255, 255, 255, 0.78) !important;
}
.rw-ds-section-dark .dcp-timeline,
.rw-ds-section-dark .dcp-timeline-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
}

/* -- 2. Light Section Theme (Dark text, light cards) -- */
.rw-ds-section-light .dcp-timeline li,
.rw-ds-section-light .dcp-step,
.rw-ds-section-light .dcp-timeline-item,
.rw-ds-section-gray .dcp-timeline li,
.rw-ds-section-gray .dcp-step,
.rw-ds-section-gray .dcp-timeline-item {
  color: #475569 !important;
}
.rw-ds-section-light .dcp-timeline li strong,
.rw-ds-section-light .dcp-step .rw-ds-h4,
.rw-ds-section-light .dcp-timeline-item strong,
.rw-ds-section-gray .dcp-timeline li strong,
.rw-ds-section-gray .dcp-step .rw-ds-h4,
.rw-ds-section-gray .dcp-timeline-item strong {
  color: #0f172a !important;
}
.rw-ds-section-light .dcp-timeline li em,
.rw-ds-section-light .dcp-timeline li span:not(:first-child),
.rw-ds-section-light .dcp-step .rw-ds-text-small,
.rw-ds-section-light .dcp-timeline-item p,
.rw-ds-section-gray .dcp-timeline li em,
.rw-ds-section-gray .dcp-timeline li span:not(:first-child),
.rw-ds-section-gray .dcp-step .rw-ds-text-small,
.rw-ds-section-gray .dcp-timeline-item p {
  color: #475569 !important;
}
.rw-ds-section-light .dcp-timeline,
.rw-ds-section-light .dcp-timeline-card,
.rw-ds-section-gray .dcp-timeline,
.rw-ds-section-gray .dcp-timeline-card {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
}

/* =========================================================================
=! NEW B2B BLOG LAYOUT STYLING
------------------------------------------------------------------------- */
.dcp-blog-hero {
  padding: 100px 0 80px !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  color: #ffffff !important;
  text-align: left !important;
}
.dcp-blog-hero .rw-ds-h1 {
  font-size: clamp(28px, 4vw, 46px) !important;
  line-height: 1.15 !important;
  margin: 14px 0 20px 0 !important;
  color: #ffffff !important;
}
.dcp-blog-meta {
  display: flex !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
  font-size: 13.5px !important;
  color: rgba(255, 255, 255, 0.7) !important;
}
.dcp-blog-layout {
  display: grid !important;
  grid-template-columns: 2fr 1fr !important;
  gap: 40px !important;
  align-items: stretch !important;
}
.dcp-blog-main {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  align-self: start !important;
}
.dcp-blog-main p {
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: #334155 !important;
  margin: 0 0 10px 0 !important;
}
.dcp-blog-main .rw-ds-h2 {
  font-size: 26px !important;
  color: #0f172a !important;
  margin: 30px 0 10px 0 !important;
  border-bottom: 2px solid #e2e8f0 !important;
  padding-bottom: 8px !important;
}
.dcp-blog-main .rw-ds-h3 {
  font-size: 20px !important;
  color: #0f172a !important;
  margin: 20px 0 8px 0 !important;
}
.dcp-blog-toc {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 24px !important;
  margin-bottom: 20px !important;
}
.dcp-blog-toc .rw-ds-h4 {
  margin: 0 0 12px 0 !important;
  font-size: 17px !important;
  color: #0f172a !important;
}
.dcp-blog-toc ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.dcp-blog-toc li {
  margin: 8px 0 !important;
}
.dcp-blog-toc a {
  color: var(--dcp-orange) !important;
  text-decoration: none !important;
  font-size: 14.5px !important;
}
.dcp-blog-toc a:hover {
  text-decoration: underline !important;
}
blockquote {
  border-left: 4px solid var(--dcp-orange) !important;
  background: #fff7ed !important;
  padding: 16px 20px !important;
  margin: 20px 0 !important;
  border-radius: 0 16px 16px 0 !important;
  font-style: italic !important;
  color: #475569 !important;
}
.dcp-blog-callout {
  background: #f0fdf4 !important;
  border-left: 4px solid #22c55e !important;
  padding: 20px !important;
  border-radius: 0 16px 16px 0 !important;
  margin: 20px 0 !important;
}
.dcp-blog-callout .rw-ds-h4 {
  color: #14532d !important;
  margin: 0 0 8px 0 !important;
}
.dcp-blog-callout p {
  color: #166534 !important;
  font-size: 14.5px !important;
  margin: 0 !important;
}
.dcp-blog-sidebar {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  align-self: stretch !important;
}
.dcp-sidebar-widget {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 24px !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03) !important;
}
.dcp-sidebar-widget .rw-ds-h4 {
  margin: 0 0 12px 0 !important;
  font-size: 17px !important;
  color: #0f172a !important;
}
.dcp-sidebar-widget p {
  font-size: 14px !important;
  line-height: 1.55 !important;
  color: #475569 !important;
  margin: 0 0 16px 0 !important;
}
.dcp-sidebar-quote-box {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  padding: 16px 20px !important;
  position: sticky !important;
  top: 100px !important;
  z-index: 10 !important;
}
.dcp-sidebar-quote-box .rw-ds-h4 {
  margin: 0 0 6px 0 !important;
  font-size: 15px !important;
}
.dcp-sidebar-quote-box p {
  font-size: 13px !important;
  margin: 0 0 12px 0 !important;
}
.dcp-sidebar-quote-box .rw-ds-btn {
  padding: 8px 16px !important;
  font-size: 13px !important;
}
.dcp-sidebar-products {
  /* scrolls naturally */
}
.dcp-sidebar-products ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}
.dcp-sidebar-products a {
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
}
.dcp-sidebar-products a b {
  font-size: 14.5px !important;
  color: #0f172a !important;
}
.dcp-sidebar-products a span {
  font-size: 12.5px !important;
  color: #64748b !important;
  margin-top: 4px !important;
}
.dcp-sidebar-products a:hover b {
  color: var(--dcp-orange) !important;
}

@media (max-width: 980px) {
  .dcp-blog-layout {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .dcp-blog-sidebar {
    position: static !important;
  }
}
