
/* VideoSecurity Core - Elementor Widgets Stylesheet */

/* Generic Badges & Buttons */
.vs-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.vs-badge-accent {
    background: rgba(2, 132, 199, 0.12);
    color: #0284c7;
    border: 1px solid rgba(2, 132, 199, 0.25);
}

.vs-badge-hot {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

/* ==========================================================================
   1. CCTV Hero Animated Scene
   ========================================================================== */
.vs-cctv-hero-wrap {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, monospace;
}

.om-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #090d16;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #1e293b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 60px rgba(0, 0, 0, 0.8);
}

.om-grid {
    position: absolute;
    inset: 0;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    pointer-events: none;
    z-index: 1;
}

/* Surveillance Camera Pivot & Sweeping Cone */
.om-cam-pivot {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 10;
    animation: omCamSweep 8s ease-in-out infinite alternate;
    transform-origin: 15px 15px;
}

@keyframes omCamSweep {
    0% { transform: rotate(-10deg); }
    100% { transform: rotate(40deg); }
}

.om-cam-housing {
    position: relative;
    width: 32px;
    height: 18px;
    background: #334155;
    border-radius: 4px;
    border: 1px solid #475569;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.om-cam-lens {
    position: absolute;
    right: -4px;
    top: 3px;
    width: 6px;
    height: 12px;
    background: #0284c7;
    border-radius: 2px;
}

.om-cam-ir {
    position: absolute;
    right: 2px;
    top: 6px;
    width: 4px;
    height: 4px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 6px #ef4444;
}

.om-cone {
    position: absolute;
    top: 6px;
    left: 28px;
    width: 400px;
    height: 250px;
    background: radial-gradient(circle at left center, rgba(56, 189, 248, 0.25) 0%, rgba(2, 132, 199, 0.05) 60%, transparent 80%);
    clip-path: polygon(0 45%, 100% 0%, 100% 100%, 0 55%);
    pointer-events: none;
    z-index: 2;
}

/* Scene Landscape & Objects */
.om-scene-landscape {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
}

.om-roadway {
    position: relative;
    width: 100%;
    height: 120px;
    background: #111827;
    border-top: 1px dashed #334155;
}

.om-entity {
    position: absolute;
    z-index: 5;
}

.om-car {
    bottom: 25px;
    left: -80px;
    animation: omDriveCar 10s linear infinite;
}

@keyframes omDriveCar {
    0% { transform: translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(780px); opacity: 0; }
}

.om-car-svg {
    width: 65px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.6));
}

.om-pedestrian {
    bottom: 30px;
    right: 120px;
}

.om-person-figure {
    width: 12px;
    height: 26px;
    background: #e2e8f0;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.om-box {
    position: absolute;
    top: -24px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid #10b981;
    border-radius: 3px;
    pointer-events: none;
}

.om-box-car {
    border-color: #38bdf8;
}

.om-box-person {
    border-color: #10b981;
}

.om-label {
    position: absolute;
    top: -14px;
    left: 0;
    background: #10b981;
    color: #ffffff;
    font-size: 8px;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 2px;
    white-space: nowrap;
}

.om-box-car .om-label {
    background: #0284c7;
}

/* HUD Overlay */
.om-hud-top {
    position: absolute;
    top: 14px;
    left: 70px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 11px;
    z-index: 15;
}

.om-cam-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.7);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.om-rec-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: omRecPulse 1.2s ease-in-out infinite alternate;
}

@keyframes omRecPulse {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.om-res-badge {
    background: rgba(15, 23, 42, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.om-hud-bottom {
    position: absolute;
    bottom: 12px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 11px;
    z-index: 15;
}

.om-live-clock {
    background: rgba(15, 23, 42, 0.85);
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.om-ai-status {
    background: rgba(15, 23, 42, 0.85);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #38bdf8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.om-ai-pulse {
    width: 6px;
    height: 6px;
    background: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 6px #38bdf8;
}

.om-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 0px, rgba(255, 255, 255, 0.015) 1px, transparent 1px, transparent 3px);
    pointer-events: none;
    z-index: 12;
}

/* Event Ticker */
.om-events-ticker {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.om-event-item {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.om-ev-tag {
    font-size: 9px;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 3px;
    color: #ffffff;
}

.om-ev-car { background: #0284c7; }
.om-ev-person { background: #10b981; }

/* ==========================================================================
   2. Phone Mockup Remote Control
   ========================================================================== */
.vs-phone-section-wrap {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.vs-phone-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 991px) {
    .vs-phone-grid {
        grid-template-columns: 1fr;
    }
}

.vs-phone-heading {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 16px;
}

.vs-phone-sub {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.vs-phone-feature-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vs-pf-card {
    display: flex;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 18px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.vs-pf-icon {
    font-size: 26px;
    flex-shrink: 0;
}

.vs-pf-card h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.vs-pf-card p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Smartphone Device Chassis */
.vs-phone-mockup-col {
    display: flex;
    justify-content: center;
}

.vs-phone-frame {
    width: 320px;
    height: 640px;
    background: #020617;
    border-radius: 46px;
    padding: 14px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.5), 0 0 0 4px #334155, inset 0 0 0 2px #0f172a;
    position: relative;
}

.vs-phone-notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 22px;
    background: #020617;
    border-radius: 20px;
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.vs-phone-speaker {
    width: 36px;
    height: 3px;
    background: #334155;
    border-radius: 2px;
}

.vs-phone-lens {
    width: 7px;
    height: 7px;
    background: #1e293b;
    border-radius: 50%;
    border: 1px solid #0f172a;
}

.vs-phone-screen {
    width: 100%;
    height: 100%;
    background: #0f172a;
    border-radius: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.vs-app-header {
    height: 48px;
    padding: 12px 18px 0 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
}

.vs-app-brand {
    display: flex;
    align-items: center;
    gap: 6px;
}

.vs-app-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}

.vs-app-viewport {
    flex: 1;
    background: #000000;
    position: relative;
    overflow: hidden;
    transition: filter 0.3s ease;
}

.vs-app-viewport.is-night-mode {
    filter: sepia(100%) hue-rotate(90deg) saturate(300%) contrast(120%);
}

.vs-app-viewport.is-alarm-active {
    animation: vsAlarmStrobe 0.4s infinite alternate;
}

@keyframes vsAlarmStrobe {
    0% { box-shadow: inset 0 0 60px rgba(239, 68, 68, 0.9); }
    100% { box-shadow: inset 0 0 60px rgba(59, 130, 246, 0.9); }
}

.vs-stream-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.vs-stream-dot {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
}

.vs-stream-bitrate {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #94a3b8;
    font-size: 9px;
    background: rgba(0, 0, 0, 0.6);
    padding: 3px 6px;
    border-radius: 4px;
}

.vs-stream-canvas {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 40%, #1e293b 0%, #090d16 80%);
    position: relative;
}

.vs-target-box {
    position: absolute;
    top: 35%;
    left: 40%;
    width: 60px;
    height: 100px;
    border: 1.5px solid #10b981;
    border-radius: 4px;
    animation: vsTargetTrack 5s infinite alternate ease-in-out;
}

@keyframes vsTargetTrack {
    0% { transform: translate(0, 0); }
    100% { transform: translate(25px, 15px); }
}

.vs-target-box span {
    position: absolute;
    top: -14px;
    left: 0;
    background: #10b981;
    color: #ffffff;
    font-size: 7px;
    font-weight: 700;
    padding: 1px 3px;
    border-radius: 2px;
}

.vs-stream-osd {
    position: absolute;
    bottom: 8px;
    left: 10px;
    color: #ffffff;
    font-size: 9px;
    font-family: monospace;
    background: rgba(0, 0, 0, 0.6);
    padding: 2px 6px;
    border-radius: 3px;
}

/* Cam Channels */
.vs-cam-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 10px 12px;
    background: #0f172a;
    border-top: 1px solid #1e293b;
}

.vs-cam-btn {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 6px 2px;
    color: #94a3b8;
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vs-cam-btn.is-active {
    background: #0284c7;
    color: #ffffff;
    border-color: #38bdf8;
}

.vs-cam-num { font-size: 10px; font-weight: 700; }
.vs-cam-loc { font-size: 8px; }

.vs-app-controls {
    display: flex;
    justify-content: space-around;
    padding: 8px 12px 16px 12px;
    background: #0f172a;
}

.vs-ctrl-btn {
    background: none;
    border: none;
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.vs-ctrl-btn:hover, .vs-ctrl-btn.is-active {
    color: #38bdf8;
}

.vs-ctrl-icon { font-size: 18px; }
.vs-ctrl-txt { font-size: 9px; }

.vs-phone-home-indicator {
    width: 90px;
    height: 4px;
    background: #475569;
    border-radius: 2px;
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
}

/* ==========================================================================
   3. Radar Map Coverage
   ========================================================================== */
.vs-radar-map-widget-wrap {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.vs-map-heading {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.vs-map-sub {
    font-size: 16px;
    color: #64748b;
    max-width: 680px;
    margin: 0 auto 30px auto;
}

.vs-radar-map-container {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    background: #090d16;
    border-radius: 20px;
    border: 2px solid #1e293b;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.vs-district-svg {
    width: 100%;
    height: auto;
    display: block;
}

.vs-map-district-boundary {
    fill: #0f172a;
    stroke: #334155;
    stroke-width: 2;
}

/* Radar Ripples */
.vs-radar-wave {
    transform-origin: 500px 310px;
    animation: vsRadarPulse 4s infinite linear;
}

.vs-wave-1 { animation-delay: 0s; }
.vs-wave-2 { animation-delay: 1.3s; }
.vs-wave-3 { animation-delay: 2.6s; }

@keyframes vsRadarPulse {
    0% { transform: scale(0.2); opacity: 0.8; }
    80% { opacity: 0.2; }
    100% { transform: scale(1.6); opacity: 0; }
}

.vs-pin-pulse {
    animation: vsPinPing 2s infinite ease-in-out;
}

@keyframes vsPinPing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Metrics Badges */
.vs-map-metric-badge {
    position: absolute;
    bottom: 24px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    color: #ffffff;
}

.vs-metric-left { left: 24px; }
.vs-metric-right { right: 24px; }

.vs-metric-icon { font-size: 24px; }
.vs-metric-val { font-size: 16px; font-weight: 800; color: #38bdf8; }
.vs-metric-label { font-size: 12px; color: #94a3b8; }

@media (max-width: 767px) {
    .vs-map-metric-badge {
        position: static;
        margin: 10px;
        display: inline-flex;
    }
}

/* ==========================================================================
   4. Calculator Widget
   ========================================================================== */
.vs-calc-widget-wrap {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    font-family: inherit;
}

.vs-calc-header {
    padding: 30px 30px 10px 30px;
    text-align: center;
}

.vs-calc-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.vs-calc-sub {
    color: #64748b;
    font-size: 15px;
}

.vs-calc-steps-nav {
    display: flex;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.vs-step-nav-item {
    flex: 1;
    padding: 14px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    border-right: 1px solid #e2e8f0;
}

.vs-step-nav-item:last-child { border-right: none; }

.vs-step-nav-item.is-active {
    background: #ffffff;
    color: #0284c7;
}

.vs-step-nav-num {
    width: 22px;
    height: 22px;
    background: #e2e8f0;
    color: #475569;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.vs-step-nav-item.is-active .vs-step-nav-num {
    background: #0284c7;
    color: #ffffff;
}

.vs-calc-body {
    padding: 30px;
}

.vs-calc-step {
    display: none;
}

.vs-calc-step.is-active {
    display: block;
}

.vs-step-heading {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.vs-calc-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.vs-calc-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
}

.vs-calc-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.vs-calc-card:hover {
    border-color: #93c5fd;
    transform: translateY(-2px);
}

.vs-calc-card.is-selected {
    border-color: #0284c7;
    background: #f0f9ff;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.15);
}

.vs-card-icon { font-size: 32px; margin-bottom: 10px; }
.vs-card-title { font-size: 15px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.vs-card-sub { font-size: 12px; color: #64748b; }

.vs-calc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.vs-total-label { font-size: 13px; color: #64748b; display: block; }
.vs-total-price { font-size: 28px; font-weight: 800; color: #0284c7; display: block; margin: 4px 0; }
.vs-total-hint { font-size: 11px; color: #94a3b8; }

.vs-calc-nav-buttons {
    display: flex;
    gap: 10px;
}

/* Modal Drawer */
.vs-calc-lead-modal {
    padding: 30px;
    background: #f0f9ff;
    border-top: 2px dashed #bae6fd;
}

.vs-lead-drawer-card h3 { margin-top: 0; font-size: 20px; color: #0f172a; }
.vs-lead-drawer-card p { font-size: 14px; color: #475569; margin-bottom: 20px; }

/* ==========================================================================
   5. Pricing Cards
   ========================================================================== */
.vs-pricing-widget-wrap {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

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

.vs-pricing-heading {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.vs-pricing-sub {
    font-size: 16px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

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

.vs-price-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.vs-price-card.is-popular {
    border-color: #0284c7;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15);
    transform: scale(1.02);
}

.vs-pc-badge {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
}

.vs-pc-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.vs-pc-price {
    font-size: 34px;
    font-weight: 800;
    color: #0284c7;
    margin-bottom: 12px;
}

.vs-price-currency { font-size: 16px; font-weight: 600; color: #64748b; }
.vs-pc-desc { font-size: 14px; color: #64748b; line-height: 1.5; margin-bottom: 20px; }

.vs-pc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.vs-pc-features li {
    font-size: 14px;
    color: #334155;
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
    line-height: 1.4;
}

.vs-check { color: #10b981; font-weight: 800; }

.vs-pc-btn {
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    padding: 12px 20px;
    text-decoration: none;
}

/* ==========================================================================
   6. FAQ Accordion
   ========================================================================== */
.vs-faq-widget-wrap {
    max-width: 840px;
    margin: 40px auto;
}

.vs-faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.vs-faq-heading {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
}

.vs-faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vs-faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.vs-faq-item.is-open {
    border-color: #0284c7;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.08);
}

.vs-faq-trigger {
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.vs-faq-icon {
    transition: transform 0.2s ease;
    color: #0284c7;
}

.vs-faq-item.is-open .vs-faq-icon {
    transform: rotate(180deg);
}

.vs-faq-content {
    border-top: 1px solid #f1f5f9;
}

.vs-faq-inner {
    padding: 18px 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

/* ==========================================================================
   7. Cases Grid
   ========================================================================== */
.vs-cases-widget-wrap {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.vs-cases-header {
    text-align: center;
    margin-bottom: 30px;
}

.vs-cases-heading {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.vs-cases-sub {
    font-size: 16px;
    color: #64748b;
}

.vs-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.vs-case-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.vs-case-img-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #0f172a;
}

.vs-case-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vs-case-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 16px;
    font-weight: 600;
}

.vs-case-loc-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.vs-case-body {
    padding: 20px;
}

.vs-case-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 14px 0;
}

.vs-case-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vs-spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #64748b;
}

.vs-spec-val { color: #0f172a; font-weight: 600; }
.vs-spec-cost .vs-spec-val { color: #0284c7; font-size: 15px; }

/* ==========================================================================
   8. Lead Form Widget
   ========================================================================== */
.vs-lead-form-widget-wrap {
    max-width: 680px;
    margin: 40px auto;
}

.vs-lead-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.vs-form-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.vs-lf-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.vs-lf-sub {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.vs-lf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 640px) {
    .vs-lf-grid { grid-template-columns: 1fr; }
}

.vs-form-group {
    margin-bottom: 16px;
}

.vs-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.vs-input, .vs-select, .vs-textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: #0f172a;
    background: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.vs-input:focus, .vs-select:focus, .vs-textarea:focus {
    border-color: #0284c7;
    outline: none;
    box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.15);
}

.vs-btn-submit-lead, .vs-btn-submit-calc {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0284c7 !important;
    border: none !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: background 0.2s;
}

.vs-btn-submit-lead:hover, .vs-btn-submit-calc:hover {
    background: #0369a1 !important;
}

.vs-form-guarantee-note {
    margin-top: 14px;
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
}

.vs-form-feedback {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.vs-form-feedback.is-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.vs-form-feedback.is-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}
