/* ===================================
   ARTICLE PAGE STYLES
   Dedicated CSS for blog post/article pages
   =================================== */

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-main-section {
    background: linear-gradient(135deg, #1a1d29 0%, #2d3748 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
    border: 1px solid #374151;
}

.cta-title {
    color: white;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
}

.cta-description {
    color: #cbd5e0;
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-buttons-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-outline {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border: 2px solid #ef4444;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: #ef4444;
    color: white;
}

.cta-benefits {
    color: #9ca3af;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 0;
}

@media (max-width: 1.23px) {
    .cta-main-section {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-description {
        font-size: 16px;
    }

    .btn-cta-outline {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-section {
    background: #1a1d29;
    padding: 50px 30px;
    border-radius: 12px;
    margin: 50px 0;
    border: 1px solid #374151;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-subtitle {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: #0f1419;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #374151;
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 16px;
}

.testimonial-text {
    color: #cbd5e0;
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: bold;
    color: white;
    margin-bottom: 3px;
}

.author-role {
    font-size: 13px;
    color: #9ca3af;
}

@media (max-width: 1.23px) {
    .testimonials-section {
        padding: 40px 20px;
    }

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

/* ===================================
   TRUST INDICATORS
   =================================== */

.trust-indicators-section {
    text-align: center;
    margin: 50px 0;
    padding: 30px;
    background: #1a1d29;
    border-radius: 8px;
    border: 1px solid #374151;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

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

.trust-stat-number {
    font-size: 42px;
    font-weight: bold;
    color: #ef4444;
    line-height: 1;
}

.trust-stat-label {
    color: #9ca3af;
    margin-top: 8px;
    font-size: 14px;
}

.trust-companies {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #374151;
}

.trust-companies-subtitle {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 10px;
}

.trust-companies-list {
    color: #cbd5e0;
    font-size: 16px;
    margin: 0;
}

@media (max-width: 1.23px) {
    .trust-stat-number {
        font-size: 32px;
    }

    .trust-stat-label {
        font-size: 13px;
    }

    .trust-companies-list {
        font-size: 14px;
    }
}

/* ===================================
   SCREENSHOTS SLIDER
   =================================== */

.screenshots-section {
    padding: 80px 0;
    background: #1a1d29;
    border-radius: 12px;
    margin: 50px 0;
}

.screenshots-header {
    text-align: center;
    margin-bottom: 50px;
}

.screenshots-label {
    text-transform: uppercase;
    font-size: 14px;
    color: #ef4444;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.screenshots-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.slider-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 0 80px;
}

.slide {
    text-align: center;
}

.slide-image-wrapper {
    background: #2d3748;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.slide-image {
    width: 50%;
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

.slide-caption {
    text-align: center;
    margin-top: 25px;
}

.slide-caption h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

.slide-caption p {
    color: #9ca3af;
    font-size: 16px;
    margin: 0;
}

.slider-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #ef4444;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #dc2626;
    transform: translateY(-52px);
}

.slider-arrow-prev {
    left: 0;
}

.slider-arrow-next {
    right: 0;
}

.slider-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #374151;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #ef4444;
}

@media (max-width: 1.23px) {
    .screenshots-section {
        padding: 60px 0;
    }
    
    .screenshots-title {
        font-size: 32px;
    }
    
    .slider-container {
        padding: 0 60px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 1.23px) {
    .screenshots-section {
        padding: 40px 0;
    }

    .screenshots-title {
        font-size: 28px;
    }

    .slider-container {
        padding: 0 50px;
    }

    .slide-image {
        width: 80%;
    }

    .slide-caption h3 {
        font-size: 20px;
    }

    .slide-caption p {
        font-size: 14px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* ===================================
   CASE STUDY SECTION
   =================================== */

.case-study-section {
    background: #1a1d29;
    border-left: 4px solid #ef4444;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
}

.case-study-title {
    color: #ef4444;
    margin-bottom: 20px;
    font-size: 24px;
}

.case-study-content {
    background: #2d3748;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #374151;
}

.case-study-quote {
    font-style: italic;
    color: #cbd5e0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.case-study-attribution {
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.case-study-stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #ef4444;
}

.stat-label {
    color: #9ca3af;
    font-size: 14px;
    margin-top: 5px;
}

.case-study-details {
    margin-top: 15px;
}

.case-study-details summary {
    cursor: pointer;
    color: #ef4444;
    font-weight: bold;
    padding: 10px 0;
}

.case-study-details-content {
    padding: 15px 0;
    color: #cbd5e0;
}

.case-study-details-content strong {
    color: white;
}

@media (max-width: 1.23px) {
    .case-study-section {
        padding: 20px;
    }

    .case-study-title {
        font-size: 20px;
    }

    .stat-number {
        font-size: 28px;
    }
}

/* ===================================
   ROI CALCULATOR
   =================================== */

.roi-calculator-section {
    background: #1a1d29;
    padding: 50px 30px;
    border-radius: 12px;
    margin: 60px 0;
    border: 1px solid #374151;
}

.roi-calculator-container {
    max-width: 800px;
    margin: 0 auto;
}

.roi-calculator-title {
    text-align: center;
    margin-bottom: 15px;
    color: white;
    font-size: 32px;
}

.roi-calculator-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #cbd5e0;
}

.roi-calculator-form {
    background: #2d3748;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid #374151;
}

.roi-input-group {
    margin-bottom: 25px;
}

.roi-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: white;
    font-size: 14px;
}

.roi-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #374151;
    outline: none;
    -webkit-appearance: none;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ef4444;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.roi-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ef4444;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.roi-slider::-webkit-slider-runnable-track {
    background: #374151;
    height: 8px;
    border-radius: 5px;
}

.roi-slider::-moz-range-track {
    background: #374151;
    height: 8px;
    border-radius: 5px;
}

.roi-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.roi-slider-min, .roi-slider-max {
    color: #9ca3af;
    font-size: 14px;
}

.roi-slider-value {
    color: #ef4444;
    font-weight: bold;
    font-size: 18px;
}

.roi-number-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #374151;
    background: #1a1d29;
    color: white;
    border-radius: 6px;
    font-size: 16px;
}

.roi-number-input:focus {
    border-color: #ef4444;
    outline: none;
}

.roi-results {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    padding: 30px;
    border-radius: 8px;
    color: white;
}

.roi-results-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
}

.roi-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.roi-result-card {
    text-align: center;
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 8px;
}

.roi-result-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.roi-result-value {
    font-size: 36px;
    font-weight: bold;
}

.roi-result-period {
    font-size: 14px;
    opacity: 0.8;
}

.roi-net-savings {
    border-top: 2px solid rgba(255,255,255,0.3);
    padding-top: 20px;
    text-align: center;
}

.roi-net-savings-label {
    font-size: 18px;
    margin-bottom: 10px;
}

.roi-net-savings-value {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.roi-net-savings-message {
    font-size: 16px;
    opacity: 0.9;
}

.roi-cta {
    margin-top: 25px;
    text-align: center;
}

.roi-cta-btn {
    display: inline-block;
    background: white;
    color: #ef4444;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}

.roi-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.roi-disclaimer {
    text-align: center;
    margin-top: 20px;
    color: #9ca3af;
    font-size: 14px;
}

@media (max-width: 1.23px) {
    .roi-calculator-section {
        padding: 40px 20px;
    }

    .roi-calculator-form {
        padding: 25px 20px;
    }

    .roi-calculator-title {
        font-size: 26px;
    }

    .roi-calculator-subtitle {
        font-size: 16px;
    }

    .roi-result-value {
        font-size: 28px;
    }

    .roi-net-savings-value {
        font-size: 36px;
    }
}

/* ===================================
   COST OF WAITING SECTION
   =================================== */

.cost-waiting-section {
    background: #1a1d29;
    padding: 50px 30px;
    border-radius: 12px;
    margin: 60px 0;
    border: 1px solid #374151;
}

.cost-waiting-header {
    text-align: center;
    margin-bottom: 50px;
}

.cost-waiting-label {
    text-transform: uppercase;
    font-size: 14px;
    color: #ef4444;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cost-waiting-title {
    text-align: center;
    margin-bottom: 15px;
    color: white;
    font-size: 32px;
}

.cost-waiting-subtitle {
    color: #6b7280;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.cost-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cost-card {
    padding: 40px;
    border-radius: 12px;
}

.cost-card-negative {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #ef4444;
}

.cost-card-positive {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.cost-card-title {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
}

.cost-card-negative .cost-card-title {
    color: #991b1b;
}

.cost-card-positive .cost-card-title {
    color: #065f46;
}

.cost-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cost-card-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: start;
    gap: 10px;
}

.cost-card-list li:last-child {
    border-bottom: none;
}

.cost-card-negative .cost-card-list li {
    color: #991b1b;
}

.cost-card-positive .cost-card-list li {
    color: #065f46;
}

.cost-icon {
    font-weight: bold;
    flex-shrink: 0;
}

.cost-card-result {
    margin-top: 25px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    text-align: center;
}

.cost-result-number {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}

.cost-card-result-negative .cost-result-number {
    color: #dc2626;
}

.cost-card-result-positive .cost-result-number {
    color: #059669;
}

.cost-result-label {
    font-size: 14px;
}

.cost-card-result-negative .cost-result-label {
    color: #991b1b;
}

.cost-card-result-positive .cost-result-label {
    color: #065f46;
}

.cost-waiting-cta {
    text-align: center;
    margin-top: 40px;
}

.cost-waiting-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    transition: transform 0.2s;
}

.cost-waiting-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 1.23px) {
    .cost-waiting-section {
        padding: 40px 20px;
    }

    .cost-waiting-title {
        font-size: 24px;
    }

    .cost-waiting-subtitle {
        font-size: 16px;
    }

    .cost-comparison-grid {
        grid-template-columns: 1fr;
    }

    .cost-card {
        padding: 25px 20px;
    }

    .cost-card-title {
        font-size: 20px;
    }

    .cost-result-number {
        font-size: 26px;
    }
}

/* ===================================
   PRICING SECTION
   =================================== */

.pricing-section-wrapper {
    margin: 60px 0;
}

.pricing-section-title {
    text-align: center;
    margin-bottom: 40px;
    color: white;
    font-size: 32px;
}

.feature-list-addons {
    border-top: 1px solid #374151;
    padding-top: 15px;
    margin-top: 15px;
}

.addons-header {
    color: #9ca3af !important;
}

.pricing-bonus-text {
    text-align: center;
    margin-top: 30px;
    color: #cbd5e0;
    line-height: 1.8;
}

.pricing-bonus-text strong {
    color: white;
}

@media (max-width: 1.23px) {
    .pricing-section-title {
        font-size: 26px;
    }

    .pricing-bonus-text {
        font-size: 14px;
    }
}

/* ===================================
   QUICK DEMO FORM
   =================================== */

.quick-demo-section {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    padding: 60px 30px;
    border-radius: 12px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.quick-demo-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
}

.quick-demo-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quick-demo-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.quick-demo-badge span {
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.quick-demo-title {
    color: white;
    margin-bottom: 15px;
    font-size: 32px;
}

.quick-demo-subtitle {
    color: white;
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}

.quick-demo-form {
    background: #1a1d29;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group-checkbox {
    font-size: 14px;
    padding-bottom: 10px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
    font-size: 14px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #374151;
    background: #2d3748;
    color: white;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #ef4444;
    outline: none;
}

.form-textarea {
    resize: vertical;
    font-family: inherit;
}

.form-hint {
    color: #9ca3af;
    font-size: 13px;
    display: block;
    margin-top: 5px;
}

.form-link {
    color: #ef4444;
    text-decoration: underline;
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
}

.form-trust-indicators {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #374151;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-indicator {
    color: #10b981;
    font-size: 14px;
}

@media (max-width: 1.23px) {
    .quick-demo-section {
        padding: 40px 20px;
    }

    .quick-demo-title {
        font-size: 26px;
    }

    .quick-demo-subtitle {
        font-size: 16px;
    }

    .quick-demo-form {
        padding: 25px 20px;
    }

    .form-trust-indicators {
        gap: 15px;
    }

    .trust-indicator {
        font-size: 12px;
    }
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-item {
    margin-top: 10px;
    border: 1px solid #374151;
    border-radius: 8px;
    padding: 15px;
    background: #1a1d29;
}

.faq-item summary {
    cursor: pointer;
    font-weight: bold;
    color: white;
    padding: 5px 0;
}

.faq-item p {
    margin-top: 10px;
    color: #cbd5e0;
    line-height: 1.6;
}

.faq-item[open] summary {
    color: #ef4444;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta-section {
    background: #1a1d29;
    color: white;
    padding: 60px 30px;
    border-radius: 12px;
    text-align: center;
    margin: 60px 0;
    border: 1px solid #374151;
}

.final-cta-section h2 {
    margin-bottom: 15px;
    font-size: 32px;
}

.final-cta-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #cbd5e0;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.final-cta-btn {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border: 2px solid #ef4444;
    transition: all 0.3s ease;
}

.final-cta-btn:hover {
    background: #ef4444;
    color: white;
}

.final-cta-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #374151;
}

.final-cta-questions {
    color: #9ca3af;
    margin-bottom: 10px;
}

.final-cta-email {
    font-size: 18px;
    margin: 0;
}

.final-cta-email a {
    color: #ef4444;
    text-decoration: none;
}

.final-cta-email a:hover {
    text-decoration: underline;
}

@media (max-width: 1.23px) {
    .final-cta-section {
        padding: 40px 20px;
    }
    
    .final-cta-section h2 {
        font-size: 24px;
    }
    
    .final-cta-subtitle {
        font-size: 16px;
    }
    
    .final-cta-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.quick-demo-title {
    animation: float 3s ease-in-out infinite;
}





@media (max-width: 991.98px) {

    .slider-container, .container-xxl, .roi-calculator-container, .quick-demo-container, .lp-container, .testimonial-card, .cost-comparison-grid {
        width: 100% !important;
        max-width: 100% !important;
    }

    .article-content {
        padding: 0 0rem !important;
    }
    .container, .container-xxl {
        padding-right: 0px !important;
        padding-left: 0px !important;
    }
    .cost-waiting-section {
        padding: 15px;
    }
    #salesForm {
        padding:15px;
    }
    .quick-demo-section {
        margin: 40px 0px 40px 0px;
    }
    .roi-calculator-form {
        padding: 20px 15px 20px 15px;
    }
    #roi-calculator, .testimonials-section, .cost-card {
        padding: 20px 10px 20px 10px;
    }

    .screenshots-section {
        display:none;
    }

    .cost-comparison-grid {
        grid-template-columns: none;
    }
}

.demo-btn {
    color: #fff !important;
}
.roi-cta-btn {
    color: #ef4444  !important;
}


