*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
.landing-rantang{
    background:
    radial-gradient(circle at top left, rgba(212,175,55,0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(120,0,0,0.10), transparent 30%),
    linear-gradient(135deg, #050505 0%, #0d0d0d 40%, #111111 100%);

    color:#ffffff;
    position:relative;
    overflow:hidden;
}
.landing-rantang::before{
    content:'';
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);

    background-size:40px 40px;

    pointer-events:none;
    opacity:.35;
    z-index:0;
}
.landing-rantang section{
    position:relative;
    z-index:1;
}
img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

section{
    padding:90px 0;
}

.gold{
    color:#d4af37;
}

.section-tag{
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#d4af37;
    margin-bottom:18px;
}

.section-title{
    font-size:54px;
    line-height:1.1;
    font-family:'Cormorant Garamond', serif;
    font-weight:700;
    margin-bottom:25px;
}

.section-desc{
    color:#cfcfcf;
    margin-bottom:22px;
}

.btn-group{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:35px;
}

.btn{
    padding:15px 30px;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
    display:inline-block;
}

.btn-primary{
    background:#d4af37;
    color:#000;
}

.btn-primary:hover{
    background:#f0cb58;
}

.btn-outline{
    border:1px solid #d4af37;
    color:#d4af37;
}

.btn-outline:hover{
    background:#d4af37;
    color:#000;
}

/* HERO */

.hero{
    padding-top:70px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-image{
    position:relative;
}

.hero-image img{
    border-radius:18px;
    object-fit:cover;
    min-height:650px;
}

.hero-content p{
    margin-bottom:20px;
    color:#d2d2d2;
}

/* FEATURES */

.features{
    border-top:1px solid rgba(255,255,255,0.08);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}

.feature-card{
    padding:10px 20px;
    border-right:1px solid rgba(255,255,255,0.08);
}

.feature-card:last-child{
    border-right:none;
}

.feature-card h3{
    margin-bottom:25px;
    font-size:26px;
    font-family:'Cormorant Garamond', serif;
}

.feature-card ul{
    list-style:none;
}

.feature-card li{
    margin-bottom:14px;
    color:#d5d5d5;
    position:relative;
    padding-left:22px;
}

.feature-card li::before{
    content:"*";
    color:#d4af37;
    position:absolute;
    left:0;
}

/* STEPS */

.steps{
    position:relative;
    background:
    linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.85)),
    url('https://rantangcatering.com/uploads/file_upload__1778582553.jpg');
    background-size:cover;
    background-position:center;
}

.steps-header{
    text-align:center;
    margin-bottom:70px;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.step-card{
    text-align:center;
    padding:35px 20px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:16px;
    backdrop-filter:blur(8px);
}

.step-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    border:2px solid #d4af37;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:25px;
    font-size:28px;
    color:#d4af37;
}

.step-number{
    color:#d4af37;
    font-size:15px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.step-title{
    font-size:22px;
    margin-bottom:15px;
    font-family:'Cormorant Garamond', serif;
}

.step-card p{
    color:#cfcfcf;
    font-size:15px;
}

/* CTA */

.cta{
    border-top:1px solid rgba(255,255,255,0.08);
}

.cta-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.logo-box{
    display:flex;
    align-items:center;
    justify-content:center;
}

.logo-circle{
    width:320px;
    height:320px;
    border:1px solid rgba(212,175,55,.25);
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
}

.logo-icon{
    font-size:70px;
    margin-bottom:20px;
}

.logo-title{
    font-size:52px;
    font-family:'Cormorant Garamond', serif;
    letter-spacing:4px;
    color:#d4af37;
}

.logo-sub{
    color:#bdbdbd;
    letter-spacing:5px;
    font-size:14px;
    margin-top:10px;
}

/* RESPONSIVE */

@media(max-width:1100px){

.hero-grid,
.cta-grid{
    grid-template-columns:1fr;
}

.feature-grid{
    grid-template-columns:repeat(2,1fr);
}

.steps-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-title{
    font-size:46px;
}

}

@media(max-width:768px){

section{
    padding:70px 0;
}

.hero-image img{
    min-height:auto;
}

.feature-grid,
.steps-grid{
    grid-template-columns:1fr;
}

.feature-card{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding-bottom:35px;
}

.feature-card:last-child{
    border-bottom:none;
}

.section-title{
    font-size:38px;
}

.logo-circle{
    width:100%;
    height:auto;
    border-radius:25px;
}

.logo-title{
    font-size:40px;
}

}
