:root {
    --lpm-primary: #2E8B57;
    --lpm-primary-dark: #256F46;
    --lpm-gold: #C9A227;
    --lpm-bg: #F5F8F6;
    --lpm-white: #fff;
    --lpm-text: #1E293B;
    --lpm-text-light: #64748B;
    --lpm-border: #E8ECEA;
    --radius: 32px;
    --shadow:
        0 20px 60px rgba(0, 0, 0, .08);
    --font-primary: "Poppins", sans-serif;
}
body{
    font-family: var(--font-primary);
}

/* ========
HERO */

.lpm-hero {
    padding: 0 20px;
}

.lpm-container {
    max-width: 1280px;
    margin: auto;
}

.lpm-hero-content {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    background: #fff;
    border-radius: 40px;
    padding: 70px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.lpm-hero-content::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background: #EAF8F1;
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.lpm-hero-text {
    position: relative;
    z-index: 2;
}

.lpm-hero-badge {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    background: #F5EFD8;
    color: #B68A10;
    font-weight: 600;
    margin-bottom: 25px;
}

.lpm-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1.1;
    color: var(--lpm-text);
    margin-bottom: 25px;
}

.lpm-hero h1 span {
    color: var(--lpm-primary);
    font-family: "Lilita One", serif;
    font-style: italic;
    font-weight: 200;
}

.lpm-hero-desc {
    color: var(--lpm-text-light);
    line-height: 1.9;
    max-width: 560px;
    margin-bottom: 35px;
}

.lpm-hero-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--lpm-primary);
    margin-bottom: 18px;
}

.lpm-hero-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.lpm-hero-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #F8FAF9;
    border-radius: 18px;
    padding: 15px 18px;
    border: 1px solid var(--lpm-border);
}

.lpm-hero-list i {
    color: var(--lpm-primary);
    font-size: 18px;
}

.lpm-hero-button {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.lpm-btn-primary {
    background: var(--lpm-primary);
    color: #fff !important;
    padding: 16px 30px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.lpm-btn-primary i {
    font-size: 22px;
}

.lpm-btn-primary:hover {
    transform: translateY(-5px);
    background: var(--lpm-primary-dark);
}

.lpm-btn-outline {
    border: 2px solid var(--lpm-primary);
    color: var(--lpm-primary);
    padding: 16px 30px;
    border-radius: 999px;
    gap: 12px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.lpm-btn-outline:hover {
    background: var(--lpm-primary);
    color: #fff !important;
}

.lpm-hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lpm-hero-image::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EAF8F1, #F5F8F6);
    z-index: 1;
}

.lpm-hero-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .12));
    background: none;
}

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

.lpm-hero-trust {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
}

.lpm-trust-item {
    background: #fff;
    border-radius: 24px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--lpm-border);
    transition: .35s;
}

.lpm-trust-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .08);
}

.lpm-trust-item img {
    margin-bottom: 15px;
    background: none;
}

.lpm-trust-item h3 {
    color: var(--lpm-primary);
    font-size: 36px;
    margin: 12px auto;
}

.lpm-trust-item p {
    color: var(--lpm-text-light);
    margin: 0;
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px) {

    .lpm-hero-content {
        grid-template-columns: 1fr;
        padding: 45px;
        gap: 50px;
    }

    .lpm-hero-image {
        order: -1;
    }

    .lpm-hero-image::before {
        width: 380px;
        height: 380px;
    }

    .lpm-hero-list {
        grid-template-columns: 1fr 1fr;
    }

    .lpm-hero-trust {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:576px) {

    .lpm-hero {
        padding: 50px 15px;
    }

    .lpm-hero-content {
        padding: 28px;
        border-radius: 26px;
    }

    .lpm-hero h1 {
        font-size: 2rem;
    }

    .lpm-hero-list {
        grid-template-columns: 1fr;
    }

    .lpm-hero-button {
        flex-direction: column;
    }

    .lpm-btn-primary,
    .lpm-btn-outline {
        justify-content: center;
        width: 100%;
    }

    .lpm-hero-image::before {
        width: 280px;
        height: 280px;
    }

    .lpm-hero-image img {
        max-width: 280px;
    }

    .lpm-hero-trust {
        grid-template-columns: 1fr;
    }
}

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

  
.tsm-section{
    padding:100px 0;
}

.tsm-heading{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:70px;
}

.pill-title{

    display:inline-block;
    padding:8px 18px;
    background:rgba(29,78,216,.08);
    color:var(--primary);
    border-radius:50px;
    font-size:.85rem;
    font-weight:600;
    margin-bottom:18px;
}

.tsm-heading h2{

    font-size:2.5rem;
    color:var(--text);
    margin-bottom:18px;
}

.tsm-heading p{

    color:var(--text-light);
    line-height:1.8;
}

.tsm-grid{

    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap:30px;
}

.tsm-card{

    position:relative;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(18px);
    border:1px solid rgba(59,130,246,.12);
    border-radius:28px;
    padding:35px;
    transition:.35s;
    overflow:hidden;
    box-shadow:
    0 20px 50px rgba(0,0,0,.05);
}

.tsm-card::before{

    content:"";
    position:absolute;
    top:-80px;
    right:-80px;
    width:180px;
    height:180px;
    background:radial-gradient(circle,
    rgba(13,148,136,.18),
    transparent 70%);
    transition:.4s;
}

.tsm-card:hover{

    transform:translateY(-10px);
    box-shadow:
    0 30px 60px rgba(13, 148, 136, .15);

	border-color:#0D9488;
}

.tsm-card:hover::before{

    transform:scale(1.4);
}

.tsm-quote{

    width:56px;
    height:56px;
    border-radius:16px;
    background:linear-gradient(135deg,#9EFCFF ,#fff);
    color:#069494;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    box-shadow:0 10px 25px rgba(29,78,216,.25);
}

.tsm-quote i{

    font-size:30px;
}

.tsm-rating{

    color:#fbbf24;
    letter-spacing:3px;
    font-size:1.2rem;
    margin-bottom:20px;
}

.tsm-text{

    color:var(--text-light);
    line-height:1.9;
    margin-bottom:35px;
}

.tsm-user{
    display:flex;
    align-items:center;
    gap:16px;
}

.tsm-avatar{

    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(135deg,#13D4D4,#fff);
    color:#069494;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.25rem;
    font-weight:700;
    flex-shrink:0;
}

.tsm-user h4{
    margin:0;
    color:var(--text);
    font-size:1rem;
}

.tsm-user span{
    color:var(--text-light);
    font-size:.9rem;
}

@media(max-width:768px){

.tsm-section{
padding:30px 0;
}

.tsm-heading h2{
font-size:2rem;
}
}

/*=========
VARIAN PRODUK */

.lpm-varian{
    padding:100px 0;
    
    overflow:hidden;
}

/* title */

.lpm-section-title{
    max-width:720px;
    margin:auto;
    text-align:center;
    margin-bottom:50px;
}

.lpm-section-title span{

    display:inline-block;
    padding:8px 18px;

    background:rgba(46,139,87,.1);
    color:var(--lpm-primary);

    border-radius:100px;
    font-weight:600;
    margin-bottom:18px;

}

.lpm-section-title h2{

    font-size:clamp(34px,4vw,48px);
    margin-bottom:18px;
    color:var(--lpm-text);

}

.lpm-section-title p{

    color:var(--lpm-text-light);
    line-height:1.8;

}

/* TAB */

.lpm-varian-tabs{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;

    margin-bottom:45px;

}

.lpm-varian-tabs button{

    border:none;
    cursor:pointer;
    background:white;
    padding:14px 26px;
    border-radius:100px;
    color:var(--lpm-text);
    font-size:15px;
    transition:.3s;
    border:1px solid var(--lpm-border);

}

.lpm-varian-tabs button i{

    margin-right:8px;

}

.lpm-varian-tabs button.active{

    background:var(--lpm-primary);
    color:white;
    box-shadow:0 15px 35px rgba(46,139,87,.25);

}

/* CARD */

.lpm-varian-box{

    background:white;
    border-radius:40px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    box-shadow:var(--shadow);
  	margin: 0 20px;

}

/* IMAGE */

.lpm-varian-image{

    background:#edf7f2;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:60px;

}

.lpm-varian-image img{

    width:100%;
    max-width:520px;
    display:block;
  	border-radius: 50px;

}

/* CONTENT */

.lpm-varian-content{

    padding:70px;

}

.badge{

    display:inline-block;
    padding:8px 18px;
    border-radius:100px;
    background:rgba(201,162,39,.12);
    color:var(--lpm-gold);
    font-weight:600;
    margin-bottom:20px;

}

.lpm-varian-content h3{

    font-size:40px;
    color:var(--lpm-text);
    margin-bottom:18px;

}

.lpm-varian-content p{

    color:var(--lpm-text-light);
    line-height:1.9;
    margin-bottom:30px;

}

.lpm-chip{

    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:40px;

}

.lpm-chip span{

    padding:10px 16px;
    border-radius:100px;
    background:white;
    border:1px solid var(--lpm-border);
    transition:.3s;
    font-size:14px;

}

.lpm-chip span:hover{

    background:var(--lpm-primary);
    color:white;
    border-color:var(--lpm-primary);

}

/* button */

.lpm-btn-primary{

    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 28px;
    border-radius:100px;
    text-decoration:none;

    color:white;
    background:var(--lpm-primary);
    transition:.3s;

}

.lpm-btn-primary:hover{

    transform:translateY(-3px);
    background:var(--lpm-primary-dark);

}

/* RESPONSIVE */

@media(max-width:992px){

.lpm-varian-box{

grid-template-columns:1fr;

}

.lpm-varian-content{

padding:40px;

}

.lpm-varian-image{

padding:40px;

}

}

@media(max-width:576px){

.lpm-varian{

padding:70px 0;

}

.lpm-varian-content h3{

font-size:30px;

}

.lpm-varian-tabs{

justify-content:flex-start;
overflow:auto;
padding-bottom:10px;

}

.lpm-varian-tabs::-webkit-scrollbar{

display:none;

}

}
  
.lpm-panel{

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);

    transition:
        opacity .35s ease,
        transform .35s ease;

    position:absolute;
    width:100%;
}

.lpm-panel.active{

    opacity:1;
    visibility:visible;
    transform:translateY(0);

    position:relative;

}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.lpm-process{
    padding:100px 0;
    
}

.lpm-section-title{
    max-width:700px;
    margin:auto;
    text-align:center;
    margin-bottom:70px;
}

.lpm-section-title span{
    color:var(--lpm-primary);
    font-weight:700;
    letter-spacing:2px;
}

.lpm-section-title h2{
    margin:15px 0;
    font-size:42px;
    color:var(--lpm-text);
}

.lpm-section-title p{
    color:var(--lpm-text-light);
    line-height:1.8;
}

/* timeline */

.lpm-timeline{

    position:relative;

    display:grid;

    grid-template-columns:repeat(8,1fr);

    gap:20px;
}

.lpm-line{

    position:absolute;

    top:55px;
    left:6%;

    width:88%;
    height:3px;

    background:var(--lpm-border);

    z-index:0;
}

/* item */

.lpm-item{

    position:relative;

    text-align:center;

    z-index:1;
}

.lpm-circle{

    width:110px;
    height:110px;

    margin:auto;

    border-radius:50%;

    background:var(--lpm-white);

    border:2px solid var(--lpm-border);

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:var(--shadow);

    transition:.35s;
}

.lpm-circle i{
    font-size:42px;
    color:var(--lpm-primary);
    transition:.35s;
    line-height:1;
}

.lpm-item:hover .lpm-circle i{
    color:#fff;
}

.step{

    display:inline-block;

    margin-top:18px;

    color:var(--lpm-gold);

    font-weight:700;

    letter-spacing:1px;

    font-size:13px;
}

.lpm-item h3{

    margin:10px 0;

    color:var(--lpm-text);

    font-size:18px;
}

.lpm-item p{

    color:var(--lpm-text-light);

    font-size:14px;

    line-height:1.7;
}

/* hover */

.lpm-item:hover .lpm-circle{

    background:var(--lpm-primary);

    border-color:var(--lpm-primary);

    transform:translateY(-10px);
}

.lpm-item:hover .lpm-circle span{

    color:white;
}

/* mobile */

@media(max-width:1200px){

.lpm-timeline{

    grid-template-columns:repeat(4,1fr);

    row-gap:60px;
}

.lpm-line{

    display:none;
}

}

@media(max-width:768px){

.lpm-timeline{

    grid-template-columns:1fr;
}

.lpm-item{

    max-width:320px;

    margin:auto;
}

}
