
/* ===== WRAPPER ===== */
.lp-wrapper {
    position: relative;
    min-height: 100vh;
    padding: 40px 0;
}

.lp-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('/images/test-pattern-design.png');
    background-repeat: repeat;
    opacity: 0.08; /* 🔥 control pattern visibility */

    z-index: 0;
}

.lp-wrapper > * {
    position: relative;
    z-index: 1;
}

/* ===== CONTENT WIDTH CONTROL ===== */
.lp-content {
    max-width: 1100px;   /* controls side margins */
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ===== ROW GAP CONTROL ===== */
.lp-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px; /* reduced gap */
}

/* ===== LEFT ===== */
.lp-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
}

.lp-title span {
    color: #00b3b3;
}

.lp-desc {
    color: #6b7280;
    font-size: 0.9rem;
    max-width: 400px;
}

/* BADGES */
.lp-badge {
    background: #fff;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ===== RIGHT CARD ===== */
.lp-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.4);
}

/* ICON */
.lp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,#00b3b3,#00D4D4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: white;
    font-size: 22px;
}

/* INPUT */
.lp-input {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #e5e7eb;
}

.lp-input:focus {
    border-color: #00b3b3;
    box-shadow: 0 0 0 0.2rem rgba(0,179,179,0.2);
}

/* BUTTON */
.lp-btn {
    background: linear-gradient(135deg,#00b3b3,#00D4D4);
    color: white;
    font-weight: 600;
    padding: 14px;
    border-radius: 10px;
    border: none;
    transition: 0.3s;
}

.lp-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ===== DESKTOP WIDTH FIX ===== */
@media (min-width: 992px) {
    .lp-left {
        flex: 0 0 46%;
        max-width: 46%;
    }

    .lp-right {
        flex: 0 0 52%;
        max-width: 52%;
    }
}

/* ===== MOBILE ===== */
/* ===== FIX MOBILE PROPERLY ===== */
@media (max-width: 992px) {

    .lp-row {
        flex-direction: column;
        gap: 25px;
    }

    .lp-left,
    .lp-right {
        width: 100%;
        max-width: 100%;
    }

    .lp-right {
        display: flex;
        justify-content: center;
    }

    .lp-card {
        width: 100%;
        padding: 22px;
    }

    .lp-title {
        font-size: 2rem;
        text-align: center;
        line-height: 1.3;
    }

    .lp-desc {
        text-align: center;
        margin: auto;
        font-size: 0.85rem;
    }

    /* badges center + wrap nicely */
    .lp-left .d-flex {
        justify-content: center;
    }

    .lp-badge {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 576px) {

    .lp-wrapper {
        padding: 20px 12px;
    }

    .lp-title {
        font-size: 1.7rem;
    }

    .lp-card {
        padding: 18px;
        border-radius: 16px;
    }

    .lp-input {
        padding: 10px;
        font-size: 13px;
    }

    .lp-btn {
        padding: 12px;
        font-size: 14px;
    }

    .lp-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}
