/* ── LP CRM Frontend Styles ── */

.lpcrm-hero * { box-sizing: border-box; }

.lpcrm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.lpcrm-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

/* ── LEFT ── */
.lpcrm-left {
    flex: 0 0 42%;
    max-width: 42%;
    color: #fff;
    text-align: left;
}

.lpcrm-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.lpcrm-badge {
    padding: 4px 12px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 999px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: rgba(255,255,255,.06);
    color: #fff;
}

.lpcrm-headline {
    color: #fff !important;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 6px;
}

.lpcrm-highlight {
    background: #ef233c;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    line-height: 1.2;
    margin-top: 4px;
}

.lpcrm-sub { display: inline-block; margin-top: 4px; }

.lpcrm-tagline {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    font-weight: 300;
    margin: 10px 0 20px;
}

.lpcrm-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.lpcrm-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}
.lpcrm-check {
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    font-weight: 700;
}

.lpcrm-cta-btn {
    display: inline-block;
    background: #ef233c;
    color: #fff !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: background .2s;
}
.lpcrm-cta-btn:hover { background: #c81b30; }

/* ── RIGHT / FORM ── */
.lpcrm-right {
    flex: 0 0 36%;
    max-width: 36%;
}

.lpcrm-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 28px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.lpcrm-form-title {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px;
    line-height: 1.4;
}

.lpcrm-form input[type="text"],
.lpcrm-form input[type="tel"],
.lpcrm-form input[type="email"] {
    width: 100%;
    padding: 11px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 13px;
    color: #374151;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    margin-bottom: 12px;
    display: block;
}
.lpcrm-form input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}

.lpcrm-select-wrap {
    position: relative;
    margin-bottom: 12px;
}
.lpcrm-select-wrap select {
    width: 100%;
    padding: 11px 36px 11px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 13px;
    color: #374151;
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: border-color .2s;
}
.lpcrm-select-wrap select:focus { border-color: #3b82f6; }
.lpcrm-chevron {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #9ca3af;
    pointer-events: none;
}

.lpcrm-submit-btn {
    width: 100%;
    background: #03254c;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border: none;
    padding: 13px;
    border-radius: 5px;
    cursor: pointer;
    transition: background .2s;
    margin-top: 4px;
    margin-bottom: 12px;
}
.lpcrm-submit-btn:hover { background: #021833; }
.lpcrm-submit-btn:disabled { opacity: .7; cursor: not-allowed; }

.lpcrm-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #ef233c;
    animation: lpcrm-pulse 1.5s ease-in-out infinite;
}
@keyframes lpcrm-pulse { 0%,100%{opacity:1} 50%{opacity:.55} }

.lpcrm-notice {
    padding: 10px 14px;
    border-radius: 5px;
    font-size: 13px;
    margin-bottom: 12px;
}
.lpcrm-notice-success { background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; }
.lpcrm-notice-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .lpcrm-flex { flex-direction: column; gap: 32px; }
    .lpcrm-left, .lpcrm-right { flex: 0 0 100%; max-width: 100%; }
    .lpcrm-headline { text-align: center; }
    .lpcrm-badges, .lpcrm-features { justify-content: center; }
    .lpcrm-tagline { text-align: center; }
    .lpcrm-cta-btn { display: block; text-align: center; }
    .lpcrm-features li { justify-content: center; }
}
