/* Outer wrapper, spacing handled by Elementor controls */
.smithtron-cta-outer-241cae7f {
    width: 100%;
    box-sizing: border-box;
}

/* Constrain width to typical site container */
.smithtron-cta-container-241cae7f {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Panel Design */
.smithtron-cta-panel-241cae7f {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 163, 163, 0.08), 0 5px 15px rgba(15, 39, 71, 0.2);
    background-color: #0F2747; /* Fallback baseline */
}

/* Subtle glowing background effect / technical dots - hidden on mobile to fix split background */
@media (min-width: 768px) {
    .smithtron-cta-panel-241cae7f::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 80%;
        height: 200%;
        background: radial-gradient(circle, rgba(0,163,163,0.08) 0%, rgba(15,39,71,0) 70%);
        pointer-events: none;
        z-index: 1;
    }

    .smithtron-cta-panel-241cae7f::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
        background-size: 20px 20px;
        pointer-events: none;
        z-index: 1;
    }
}

/* Ensure content sits above the background effects */
.smithtron-cta-content-241cae7f,
.smithtron-cta-actions-241cae7f {
    position: relative;
    z-index: 2;
}

/* Content Area */
.smithtron-cta-content-241cae7f {
    flex: 1 1 auto;
    max-width: 700px;
}

.smithtron-cta-eyebrow-241cae7f {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.smithtron-cta-heading-241cae7f {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.smithtron-cta-body-241cae7f {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Actions / Buttons */
.smithtron-cta-actions-241cae7f {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.smithtron-btn-241cae7f {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px; /* Increased horizontal padding */
    font-size: 16px;
    font-weight: 700; /* Updated font weight */
    text-decoration: none;
    border-radius: 8px; /* Updated border radius */
    transition: all 0.25s ease; /* Smooth transition */
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    height: 68px; /* Increased height */
    min-width: 200px; /* Increased width */
    box-shadow: 0 16px 36px rgba(0, 163, 163, 0.24); /* Added subtle shadow */
}

/* Primary Button Hover (Desktop) */
@media (hover: hover) {
    .smithtron-btn-primary-241cae7f:hover,
    .smithtron-btn-primary-241cae7f:focus {
        transform: translateY(-3px);
        filter: brightness(1.1);
        box-shadow: 0 20px 40px rgba(0, 163, 163, 0.35); /* Stronger shadow on hover */
    }
}

/* Active touch state */
.smithtron-btn-primary-241cae7f:active {
    transform: scale(0.98);
    filter: brightness(1.1);
}


/* Mobile/Tablet Styling */
@media (max-width: 991px) {
    .smithtron-cta-panel-241cae7f {
        padding: 40px !important;
    }
}

@media (max-width: 767px) {
    .smithtron-cta-panel-241cae7f {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding: 32px 24px !important;
        /* Ensure consistent dark background on mobile */
        background-image: none !important; 
    }
    
    .smithtron-cta-heading-241cae7f {
        font-size: 26px;
    }

    .smithtron-cta-actions-241cae7f {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .smithtron-btn-241cae7f {
        width: 100%;
        height: 56px; /* Minimum height for mobile */
        padding: 0 24px;
        min-width: 0;
    }
    
}