/* =========================================================
   RANCANGDENAH — Landing Page
   Font: Poppins | Palette: sage green + coral + cream + ink
   ========================================================= */

:root {
  --base:        #f7f4ec;   /* cream page background */
  --surface:     #ffffff;
  --tint:        #edf0e3;   /* soft sage tint */
  --ink:         #26251f;   /* near-black text */
  --muted:       #6d6c63;
  --green:       #8b9a68;   /* sage green (brand) */
  --green-dark:  #56613c;
  --accent:      #e07a54;   /* coral (brand) */
  --accent-dark: #c9633f;
  --dark:        #26251f;   /* dark section bg */
  --line:        #e4e0d3;
  --radius:      16px;
  --shadow:      0 14px 40px -18px rgba(38, 37, 31, .35);
  --shadow-sm:   0 6px 20px -12px rgba(38, 37, 31, .4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

.bg-base { background: var(--base); }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--base);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { line-height: 1.2; font-weight: 700; letter-spacing: -.01em; text-wrap: balance; }
h1 { font-size: clamp(1.9rem, 4.6vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.15rem; }
p  { color: var(--muted); text-wrap: pretty; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .8rem 1.6rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -12px var(--accent); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--green-dark); border-color: var(--green); }
.btn-outline1 { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-light { background: #fff; color: var(--accent-dark); }
.btn-light:hover { background: #fff8f3; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 244, 236, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1rem; height: 72px; }

.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); }
.brand-logo { height: 46px; width: auto; display: block; }

.main-nav {margin-left:auto; margin-right:75px;}
.main-nav ul { display: flex; gap: .3rem; list-style: none; }
.main-nav a {
  display: block; padding: 1.5rem 1.8rem; border-radius: 8px;
  text-decoration: none; color: var(--ink); font-size: .9rem; font-weight: 500;
  transition: background .15s, color .15s;
}
.main-nav a:hover, .main-nav a.active { background: var(--tint); color: var(--green-dark); }

.btn-header { padding: .6rem 1.2rem; font-size: .88rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 6px; margin-left: auto;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 3rem) 0; }
.section--tint { background: var(--tint); }
.section--dark { background: var(--dark); color: #fff; }
.section--dark p { color: #cfcdc2; }

.section-head { max-width: 680px; margin: 0 auto clamp(2rem, 5vw, 3rem); text-align: center; }
.section-head p { margin-top: .8rem; }

.eyebrow {
  display: inline-block; font-size: 1.78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent-dark); margin-bottom: .7rem;
}
.eyebrow--light { color: #f0a084; }

.hl { color: var(--accent); }
.check { color: var(--green); font-weight: 800; }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(139,154,104,.18), transparent 42%),
    radial-gradient(circle at 88% 25%, rgba(224,122,84,.16), transparent 40%);
}
.hero-inner {
  max-width: 820px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero-logo { height: clamp(60px, 10vw, 92px); width: auto; margin-bottom: 1.6rem; }
.hero-inner .eyebrow { margin-bottom: 1rem; }
.hero-inner p { font-size: 1.08rem; margin: 1.2rem auto 1.8rem; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; justify-content: center; margin-top: 1.8rem; }
.hero-tags { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; text-align: center; }
.hero-tags li {
  font-size: .8rem; font-weight: 500; background: var(--surface); color: var(--green-dark);
  padding: .4rem .8rem; border-radius: 999px; border: 1px solid var(--line);
}
.hero-inner {
    position: center;
    z-index: 2;
}

/* "Anti Ribet?" oranye */
#hero #hero-title .hl {
    color: #EF8565 !important;
}

/* ---------- Masalah ---------- */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.problem-copy p { margin-top: 1rem; color: #111 !important;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5; }
.problem-punch { font-weight: 700; color: var(--accent-dark) !important; font-size: 1.15rem; margin: 1.2rem 0 1.6rem !important; }
.pain-list { list-style: none; display: grid; gap: .8rem; }
.pain-list li {
  display: flex; align-items: center; gap: .9rem; background: var(--surface);
  padding: 1rem 1.2rem; border-radius: 12px; border: 1px solid var(--line);
  font-weight: 500; box-shadow: var(--shadow-sm); transition: transform .18s;
}
.pain-list li:hover { transform: translateX(6px); }
.pain-x {
  flex: none; width: 28px; height: 28px; display: grid; place-items: center;
  background: #fdeee7; color: var(--accent-dark); border-radius: 50%; font-weight: 800; font-size: 1.1rem;
}

.problem-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.problem-image img{
    width:70%;
    max-width:520px;
    height:auto;
    animation: float 3.5s ease-in-out infinite;
}

/* ================= PROMOSI ================= */

#promosi{
    background:#fff;
}
.promosi-wrap{
    max-width:900px;
}
.promosi-content{
    max-width:760px;
    margin:auto;
}
#promosi-title{
    font-size:clamp(2rem,4vw,2.8rem);
    font-weight:800;
    color:var(--ink);
    margin-bottom:.3rem;
}
.promosi-subtitle{
    color:var(--ink);
    font-size:1.2rem;
    margin-bottom:1rem;
}

/* Card */

.brand-card{
    width: 72% !important;
    max-width: 800px !important;
    margin: 1.5rem auto !important;
    padding: 18px 35px !important;

    display: flex !important;
    align-items: center !important;
    gap: 28px !important;

    box-sizing: border-box !important;

    background: #F8F2E7 !important;
    border: 2px solid #333 !important;
    border-radius: 28px !important;
}

.brand-title{
    font-size:2rem;
    line-height:1;
}
.brand-title strong{
    font-weight:800;
}
.brand-title span{
    font-weight:400; /* tipis */
}
.brand-logo-card{
    width:58px;
    flex-shrink:0;
}

.brand-info h3{
    font-size:2rem;
    line-height:1;
    margin-bottom:6px;
}

.brand-info strong{
    font-weight:800;
}

.brand-info p{
    margin:0;
    color:#222;
    line-height:1.35;
}

.brand-info span{
    color:var(--accent);
    font-weight:700;
}

/* Deskripsi */

.promosi-desc1{
    font-size:1.6rem;
    line-height:1.45;
    font-weight:800;
    color:#111;
    padding-top: 2rem;
    align:center;
}

.promosi-desc{
    font-size:1.6rem;
    line-height:1.45;
    color:#222;
}

.promosi-desc span{
    color:var(--accent);
    font-weight:700;
}

.promosi-desc strong{
    color:#111;
    font-weight:700;
}

/* Wilayah */

.promosi-region{
    margin:2.5rem 0;
}

.region-title{
    color:#222;
    margin-bottom:8px;
    font-weight:500;
}

.region-list{
    letter-spacing:.18em;
    font-size:.95rem;
    color:#111;
    font-weight:600;
}

/* ======PROMOSI - KEUNGGULAN===== */

#promosi .hero-tags {
    list-style: none;

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

    gap: 20px;

    width: 100%;
    max-width: 1000px;

    margin: 38px auto 0;
    padding: 0;

    box-sizing: border-box;
}

/* =================================================
   BRAND CARD - SATU RUMAH UNTUK SEMUA
================================================= */

.promosi-brand {
    width: 55%;
    max-width: 750px;
    margin: 3rem auto 0;

    display: flex;
    align-items: left;
    justify-content: left;
    gap: 20px;

    padding: 28px;

    background: #F8F2E7;
    border: 1.5px solid #333;
    border-radius: 22px;

    box-sizing: border-box;
}

/* Logo */
.promosi-brand-logo {
    width: 65px;
    height: 65px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Tulisan */
.promosi-brand-text {
    text-align: left;
}

.promosi-brand-text h3 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 800;
    color: #111;
}

.promosi-brand-text h3 span {
    color: #111;
    font-weight:400;
}

.promosi-brand-text p {
    margin: 5px 0 0;
    font-size: 1.2rem;
    color: #111;
    line-height: 1.2;
}

/* ================= CARD ================= */

#promosi .hero-tags li {
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-height: 124px;
    padding: 16px 14px;
    box-sizing: border-box;
    background: #F8F2E8;
    border: 1px solid #555;
    border-radius: 16px;
    gap: 8px;
    text-align: left;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


/* Hover */

#promosi .hero-tags li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,.08);
}


/* ================= CHECK ================= */

#promosi .tag-check {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 15px;
    width: 15px;
    height: 15px;
    margin-top: 2px;
    background: #7BCB25;
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    line-height: 15px;
}


/* Matikan icon/check dari CSS lama */
#promosi .hero-tags li::before {
    content: none !important;
}


/* ================= CONTENT ================= */

#promosi .tag-content {
    flex: 1;
    min-width: 0;
}
#promosi .tag-content strong {
    display: block;
    margin: 0 0 9px;
    color: #222;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1.2;
}
#promosi .tag-content p {
    margin: 0;
    color: #222;
    font-size: .85rem;
    font-weight: 400;
    line-height: 1.3;
}


/* =====TOMBOL===== */

#promosi .promosi-action {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 26px;
}


#promosi .promosi-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 225px;
    height: 38px;
    padding: 0 20px;
    box-sizing: border-box;
    background: #EF8565;
    border: none;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1;
    transition: .2s ease;
}

#promosi .promosi-btn:hover {
    background: #E57453;
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- Manfaat ---------- */
.benefit-head { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; justify-content: center; text-align: left; }
.benefit-illu { width: 120px; height: auto; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.benefit-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.3rem; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.benefit-card .check { font-size: 1.5rem; display: block; margin-bottom: .6rem; }
.benefit-card p { color: var(--ink); font-weight: 500; }

/* ==== PROSES / 8 TAHAP KERJA ==== */

.proses-section {
    background: #F6F0E5;
    color: #222;
}


/* ================= HEADING ================= */

.proses-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: left;
}

.proses-heading h2 {
    margin: 0 0 14px;

    color: #111;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
}

.proses-heading p {
    margin: 0;

    color: #333;
    font-size: 1.2rem;
    line-height: 1.45;
}

.proses-heading p span {
    color: #EF8565;
    font-weight: 800;
}

.proses-heading p strong {
    color: #222;
    font-weight: 800;
}


/* ================= GRID ================= */

.proses-section .steps-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 30px;

    max-width: 1200px;
    margin: 0 auto;
}


/* ================= CARD ================= */

.proses-section .step-card-light {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 235px;

    padding: 26px 22px;

    box-sizing: border-box;

    background: #FFFFFF;

    border: 1px solid #666;
    border-radius: 18px;

    overflow: hidden;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.proses-section .step-card-light:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.08);
}


/* ================= ICON ================= */

.step-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.step-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}


/* ================= TITLE ================= */

.proses-section .step-card-light h3 {
    margin: 0 0 10px;

    color: #111;

    font-size: 1.05rem;
    font-weight: 800;

    line-height: 1.3;
}

.proses-section .step-card-light h3 span {
    font-weight: 800;
    color: #222;
}


/* ================= DESCRIPTION ================= */

.proses-section .step-card-light p {
    margin: 0;
    color: #333;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.45;
}

/* ================= GALLERY ================= */

.gallerySwiper{
    padding:20px 10px 90px;
    position: relative;
    padding-bottom: 70px;
}

.gallerySwiper .swiper-pagination{
    bottom: -25px !important;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:var(--shadow);
    aspect-ratio:4/3;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item figcaption{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    padding:18px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.75)
    );

    color:#fff;
    font-weight:600;
}

/* Tombol */

.swiper-button-next,
.swiper-button-prev{
    color:var(--accent);
    width:45px;
    height:45px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:18px;
    font-weight:bold;
}

/* Pagination */

.swiper-pagination-bullet{
    background:#bbb;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:var(--accent);
}

/* ================= SWIPER PAGINATION ================= */

.gallerySwiper{
    padding:20px 10px 80px; /* ruang bawah lebih besar */
}

/* Posisi pagination */
.gallerySwiper .swiper-pagination{
    bottom:10px !important;
}

/* Bullet */
.gallerySwiper .swiper-pagination-bullet{
    width:12px;
    height:12px;
    margin:0 6px !important;
    background:#d9d3c3;
    opacity:1;
    transition:all .3s ease;
}

/* Bullet aktif */
.gallerySwiper .swiper-pagination-bullet-active{
    width:32px;
    border-radius:999px;
    background:var(--accent);
}

/* Hover */
.gallerySwiper .swiper-pagination-bullet:hover{
    background:var(--green);
}

/* ================= NAVIGATION ================= */

.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev{
    width:52px;
    height:52px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:50%;
    color:var(--accent);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.3s;
}

.gallerySwiper .swiper-button-next:hover,
.gallerySwiper .swiper-button-prev:hover{
    background:var(--accent);
    color:#fff;
    transform:translateY(-2px);
}

.gallerySwiper .swiper-button-next::after,
.gallerySwiper .swiper-button-prev::after{
    font-size:18px;
    font-weight:700;
}

/* ================= MORE BUTTON ================= */
.gallery-more{
    display:flex;
    justify-content:center;
    margin-top:10px;
    
}
.gallery-more .btn{
    min-width:180px;
}


/* ================= SOLUSI ================= */

.solusi-section{
    background:#F8F6F1;
}

.solusi-divider{
    width:100%;
    height:1px;
    background:var(--line);
    margin:70px 0;
}

/* proses */

.step-card-light{
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    padding:30px;
    box-shadow:var(--shadow-sm);
    transition:.3s;

}

.step-card-light:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}

.step-card-light h3{
    color:var(--ink);
    margin:.6rem 0;
}
.step-card-light p{
    color:var(--muted);
}
.step-card-light .step-no{
 color:var(--accent);
}

.benefit-card{
    display:flex;
    align-items:flex-start;
    gap:14px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    padding:22px;
    box-shadow:var(--shadow-sm);
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
}

.benefit-card .check{
    flex-shrink:0;
    font-size:1.5rem;
    color:var(--green);
    margin-top:2px;
}

.benefit-card p{
    margin:0;
    color:var(--ink);
    font-size:1rem;
    line-height:1.5;
    font-weight:600;
}

/* ==================== PILIHAN LAYANAN ==================== */

#paket {
    background: #F8F2E7;
}

/* ---------- Heading ---------- */

.layanan-heading {
    max-width: 850px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.layanan-heading h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: .7rem;
}

.layanan-heading p {
    font-size: 1.05rem;
    line-height: 1.45;
    color: #333;
    max-width: 750px;
    margin: 0 auto;
}


/* ---------- Grid ---------- */

.layanan-grid {
    max-width: 1020px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


/* ---------- Card ---------- */

.layanan-card {
    background: #fff;
    border: 1.5px solid #777;
    border-radius: 20px;
    padding: 26px 22px;
    min-height: 245px;
    display: flex;
    flex-direction: column;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.layanan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}


/* ---------- Nomor ---------- */

.layanan-number {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #F18161;
    margin-bottom: 18px;
}


/* ---------- Judul ---------- */

.layanan-card h3 {
    font-size: 1.15rem;
    line-height: 1.25;
    font-weight: 800;
    color: #111;
    margin: 0 0 22px;
}


/* ---------- Deskripsi ---------- */

.layanan-card p {
    font-size: .98rem;
    line-height: 1.4;
    color: #333;
    margin: 0;
}

/* ============MULAI PROYEK========== */

.mulai-proyek {
    text-align: center;
    max-width: 600px;
    margin: 34px auto 0;
}

.mulai-proyek > h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.mulai-proyek > p {
    max-width: 420px;
    margin: 0 auto 22px;
    font-size: .82rem;
    line-height: 1.35;
    color: #333;
}

/* =====================================================
   MULAI PROYEK / WHATSAPP CTA
===================================================== */

.mulai-proyek {
    width: 100%;
    margin: 3.5rem auto 0;
    text-align: center;
}

/* ---------- Heading ---------- */

.mulai-proyek-heading {
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.mulai-proyek-heading h2 {
    margin: 0 0 1rem;
    color: #111;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.mulai-proyek-heading p {
    margin: 0;
    color: #222;
    font-size: 1.15rem;
    line-height: 1.45;
}

/* ---------- Card ---------- */

.whatsapp-card {
    width: min(560px, 100%);
    min-height: 270px;
    margin: 0 auto;

    padding: 28px 30px;

    box-sizing: border-box;

    background: #fff;
    border: 1.5px solid #777;
    border-radius: 18px;

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

    box-shadow: 0 10px 28px rgba(0, 0, 0, .05);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.whatsapp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .09);
}

/* ---------- Icon WhatsApp ---------- */

.whatsapp-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 12px;

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

.whatsapp-icon img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
}

/* ---------- Judul ---------- */

.whatsapp-card h3 {
    margin: 0 0 5px;

    color: #111;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.25;
}

/* ---------- Deskripsi ---------- */

.whatsapp-card p {
    margin: 0 0 25px;

    color: #111;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.3;
}

/* ---------- Button ---------- */

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 260px;
    min-height: 46px;

    padding: 0 25px;

    border-radius: 999px;

    background: #F18161;
    color: #fff;

    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;

    text-decoration: none;

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    background: #e87554;
    box-shadow: 0 7px 16px rgba(241, 129, 97, .25);
}

/* ===========================
   FOOTER
=========================== */

.site-footer {
    background: var(--dark);
    color: #d7d5ca;
    padding-top: 70px;
}

/* ===========================
   FOOTER GRID
=========================== */

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1.6fr 1fr;
    gap:40px;
    align-items:start;
}

/* ===========================
   KOLOM FOOTER
=========================== */

.footer-about,
.footer-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* ===========================
   LOGO
=========================== */

.brand--footer {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 20px;
}

.brand-logo {
    height: 55px;
    width: auto;
    background: #fff;
    padding: 10px 16px;
    border-radius: 12px;
}

/* ===========================
   JUDUL
=========================== */

.footer-title {
    color: #fff;
    font-size: 20px;
    margin: 0 0 18px;
}

/* ===========================
   TEXT
=========================== */

.footer-about p,
.footer-col p {
    color: #b4b2a7;
    line-height: 1.8;
    font-size: .95rem;
}

/* ===========================
   GOOGLE MAPS
=========================== */

.footer-maps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 20px 0 12px;
}

.footer-map {
    width: 100%;
    min-width: 0;
    overflow: hidden;

    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.15);

    background: #24231f;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 130px;
    border: 0;
}

/* Link lokasi */

.footer-map-link {
    display: block;
    padding: 11px 14px;

    color: #EF8A62;
    background: #24231f;

    font-size: .9rem;
    font-weight: 600;
    line-height: 1.3;

    text-decoration: none;
}

.footer-map-link:hover {
    color: #fff;
}

/* ===========================
   JAM OPERASIONAL
=========================== */

.footer-hours {
    line-height: 1.7;
}

/* ===========================
   KONTAK
=========================== */

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.footer-contact li {
    margin-bottom: 12px;
}

.footer-contact a {
    color: #d7d5ca;
    text-decoration: none;
    transition: .3s;
}

.footer-contact a:hover {
    color: var(--accent);
}

/* ===========================
   COPYRIGHT
=========================== */

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
}

.footer-bottom .container {
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    text-align: center;
    color: #8f8d82;
    font-size: .85rem;
    line-height: 1.5;
}

/* ---------- Floating buttons ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 24px -8px rgba(37,211,102,.6);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.to-top {
  position: fixed; right: 20px; bottom: 86px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--ink); color: #fff; font-size: 1.2rem;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .25s, transform .25s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav {
    position: fixed; inset: 72px 0 auto 0; background: var(--base);
    border-bottom: 1px solid var(--line); margin: 0;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 70vh; overflow-y: auto; }
  .main-nav ul { flex-direction: column; padding: .6rem 20px 1rem; gap: .1rem; }
  .main-nav a { padding: .8rem .6rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-toggle { display: flex; }
  .btn-header { display: none; }

  .problem-grid { grid-template-columns: 1fr; gap: 2rem; }
  .benefit-grid, .deliver-grid, .payment-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .mitra-grid { grid-template-columns: 1fr; }
  .mitra-benefit { grid-template-columns: 1fr; text-align: left; }
  .benefit-head { flex-direction: column; text-align: center; }
  .hero-tags {text-align: center;}
}

@media (max-width: 560px) {
  .pricing { grid-template-columns: 1fr; }
  .deliver-grid, .steps-grid, .gallery, .payment-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; }
}


/* ================= PROMOSI RESPONSIVE ================= */

@media (max-width: 768px){
    #promosi{
        padding: 60px 0;
    }
    .promosi-content{
        max-width: 100%;
    }
    /* Judul */
    #promosi-title{
        font-size: 1.8rem;
        line-height: 1.3;
        text-align: center;
        margin-bottom: .4rem;
    }
    .promosi-subtitle{
        text-align: center;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .brand-logo-card{
        width: 60px;
    }
    .brand-info h3{
        font-size: 1.6rem;
        margin-bottom: .4rem;
    }
    .brand-info p{
        font-size: .95rem;
        line-height: 1.5;
    }

    /* Deskripsi */
    .promosi-desc{
        font-size: 1.05rem;
        line-height: 1.7;
        text-align: center;
        margin: 1.8rem 0;
    }

    /* Wilayah */
    .promosi-region{
        text-align: center;
        margin: 2rem 0;
    }

    .region-title{
        margin-bottom: .5rem;
        font-size: .95rem;
    }

    .region-list{
        letter-spacing: .08em;
        line-height: 1.8;
        font-size: .85rem;
    }

    /* Checklist */
    .promosi-list{
        gap: .9rem;
    }
    .promosi-list li{
        font-size: .95rem;
        line-height: 1.5;
        padding-left: 30px;
    }
    .promosi-list li::before{
        font-size: 1rem;
    }
}

@media (max-width: 768px) {

    .step-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 6px;
    }

    .step-icon img {
        width: 30px;
        height: 30px;
    }

}

@media (max-width:480px){

    #promosi-title{
        font-size:1.5rem;
    }
    .brand-card{
        padding:16px;
    }

    .brand-logo-card{
        width:50px;
    }

    .brand-info h3{
        font-size:1.35rem;
    }

    .brand-info p{
        font-size:.9rem;
    }

    .promosi-desc{
        font-size:.95rem;
    }

    .region-list{
        font-size:.8rem;
        letter-spacing:.04em;
    }

    .promosi-list li{
        font-size:.9rem;
    }

}


@media (max-width:768px){
    .price-cta{
        margin:50px auto 28px;
        padding:24px 20px;
        border-radius:18px;
    }

    .price-cta h3{
        font-size:1.5rem;
        margin-bottom:16px;
    }

    .price-cta-btn{
        width:100%;
        min-width:unset;
        padding:14px 20px;
        font-size:.9rem;
    }
    .price-note{
        padding:0 6px;
    }
    .price-note li{
        font-size:.9rem;
        line-height:1.6;
    }
}

@media (max-width:480px){
    .price-cta h3{
        font-size:1.3rem;
    }
    .price-note li{
        font-size:.85rem;
    }
}

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

@media (max-width: 768px) {

    .site-footer{
        padding-top:50px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    .brand--footer{
        justify-content:center;
    }

    .brand-logo{
        height:48px;
    }

    .footer-title{
        font-size:1.1rem;
        margin-bottom:15px;
    }

    .footer-about p,
    .footer-col p,
    .footer-contact a{
        font-size:.92rem;
        line-height:1.7;
    }

    .footer-map{
        margin:18px auto;
    }

    .footer-map iframe{
        height:220px;
    }

    .footer-map-link{
        display:inline-flex;
        justify-content:center;
        align-items:center;
    }

    .footer-contact{
        margin-bottom:20px;
    }

    .footer-contact li{
        margin-bottom:10px;
    }

    .footer-col .btn{
        width:100%;
        max-width:280px;
        margin:0 auto;
    }

    .footer-bottom p{
        font-size:.8rem;
        line-height:1.6;
    }

}


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

@media (max-width: 900px) {

    /* ---------- Container ---------- */

    .container {
        width: min(92%, 720px);
        margin-inline: auto;
    }


    /* =====================================================
       PILIHAN LAYANAN
       ===================================================== */

    .layanan-heading {
        max-width: 600px;
        margin-bottom: 1.8rem;
    }

    .layanan-heading h2 {
        font-size: 1.7rem;
    }

    .layanan-heading p {
        font-size: 1rem;
    }

    .layanan-grid {
        max-width: 720px;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .layanan-card {
        min-height: 175px;
        padding: 18px 16px;
    }

    .layanan-number {
        font-size: .85rem;
    }

    .layanan-card h3 {
        font-size: 1rem;
        line-height: 1.25;
    }

    .layanan-card p {
        font-size: .85rem;
        line-height: 1.3;
    }


    /* =====================================================
       PROSES / 8 TAHAP KERJA
       ===================================================== */

    .proses-heading {
        max-width: 720px;
        margin-bottom: 35px;
    }

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

    .proses-heading p {
        font-size: 1rem;
    }

    .proses-section .steps-grid {
        max-width: 720px;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .proses-section .step-card-light {
        min-height: 190px;
        padding: 18px;
    }

    .step-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }

    .step-icon img {
        width: 42px;
        height: 42px;
    }

    .proses-section .step-card-light h3 {
        font-size: .95rem;
    }

    .proses-section .step-card-light p {
        font-size: .8rem;
        line-height: 1.35;
    }


    /* =====================================================
       GALLERY
       ===================================================== */

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .gallery-item {
        width: 100%;
    }


    /* =====================================================
       PRICE / PAKET
       ===================================================== */

    .pricing {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

}


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

@media (max-width: 600px) {

    /* ---------- Global ---------- */

    .container {
        width: min(92%, 420px);
        margin-inline: auto;
    }

    .section {
        padding-top: 50px;
        padding-bottom: 50px;
    }


    /* =====================================================
       PILIHAN LAYANAN
       ===================================================== */

    .layanan-heading {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .layanan-heading h2 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: .6rem;
    }

    .layanan-heading p {
        font-size: .9rem;
        line-height: 1.4;
    }

    .layanan-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .layanan-card {
        min-height: auto;
        padding: 18px 18px 20px;
        border-radius: 15px;
    }

    .layanan-number {
        font-size: .85rem;
        margin-bottom: 8px;
    }

    .layanan-card h3 {
        font-size: 1rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .layanan-card p {
        font-size: .85rem;
        line-height: 1.35;
    }


    /* =====================================================
       CTA MULAI PROYEK
       ===================================================== */

    .layanan-cta,
    .project-cta,
    .price-cta {
        width: 100%;
        margin-top: 35px;
    }

    .project-cta h2,
    .project-cta h3 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .project-cta p {
        font-size: .9rem;
        line-height: 1.4;
    }


    /* Card WhatsApp */

    .whatsapp-card {
        width: 100%;
        max-width: 360px;
        margin: 25px auto 0;
        padding: 25px 18px;
        border-radius: 18px;
    }

    .whatsapp-card img {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

    .whatsapp-card h3 {
        font-size: 1rem;
        margin: 10px 0 5px;
    }

    .whatsapp-card p {
        font-size: .8rem;
        line-height: 1.3;
    }

    .whatsapp-card .btn,
    .whatsapp-card a {
        max-width: 230px;
        margin-inline: auto;
    }


    /* =====================================================
       PROSES / 8 TAHAP KERJA
       ===================================================== */

    .proses-heading {
        width: 100%;
        margin-bottom: 30px;
        text-align: left;
    }

    .proses-heading h2 {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .proses-heading p {
        font-size: .95rem;
        line-height: 1.4;
    }

    .proses-section .steps-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .proses-section .step-card-light {
        min-height: auto;
        padding: 18px;
        border-radius: 14px;
    }

    .step-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }

    .step-icon img {
        width: 40px;
        height: 40px;
    }

    .proses-section .step-card-light h3 {
        font-size: .95rem;
        line-height: 1.25;
        margin-bottom: 6px;
    }

    .proses-section .step-card-light p {
        font-size: .8rem;
        line-height: 1.4;
    }


    /* =====================================================
       GALLERY
       ===================================================== */

    .gallery-grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        aspect-ratio: 1 / 1;
        border-radius: 12px;
        overflow: hidden;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Hilangkan swipe/carousel */

    .gallery-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        overflow: visible;
        transform: none !important;
    }

    .gallery-track .gallery-item {
        flex: none;
        width: 100%;
    }


    /* =====================================================
       PAKET / PRICE
       ===================================================== */

    .pricing {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .price-card {
        width: 100%;
    }

    .price-cta {
        padding: 20px;
    }


    /* =====================================================
       MASALAH
       ===================================================== */

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .problem-image {
        order: 1;
        text-align: center;
    }

    .problem-copy {
        order: 2;
        font-size: 1rem;
    }

    .problem-copy > p.reveal {
        font-size: .8rem;
        line-height: 1.4;
        margin-top: 15px;
    }


    /* =====FOOTER==== */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about,
    .footer-col {
        width: 100%;
    }

    .footer-map {
        width: 100%;
        height: 200px;
    }

    .footer-map iframe {
        width: 100%;
        height: 100%;
    }

    .footer-bottom {
        text-align: center;
    }

}


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

@media (max-width: 400px) {

    .container {
        width: 90%;
    }

    .layanan-heading h2 {
        font-size: 1.35rem;
    }

    .layanan-heading p {
        font-size: .85rem;
    }

    .layanan-card {
        padding: 16px;
    }

    .layanan-card h3 {
        font-size: .95rem;
    }

    .layanan-card p {
        font-size: .8rem;
    }

    .proses-heading h2 {
        font-size: 1.5rem;
    }

    .proses-heading p {
        font-size: .85rem;
    }

    .proses-section .step-card-light {
        padding: 16px;
    }

    .proses-section .step-card-light h3 {
        font-size: .9rem;
    }

    .proses-section .step-card-light p {
        font-size: .76rem;
    }

    .gallery-grid,
    .gallery-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

}


/* Keunggulan */
@media (max-width: 600px) {

    .hero-tags {
        width: 88%;
        max-width: 350px;
        margin: 20px auto 0;
        padding: 0;

        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px;

        box-sizing: border-box;
    }

    .hero-tags li {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        /* PENTING */
        min-height: 0 !important;
        height: auto !important;

        padding: 10px 12px !important;

        box-sizing: border-box;
        margin: 0;
    }

    .hero-tags .tag-content {
        min-width: 0;
        flex: 1;
    }

    .hero-tags .tag-content strong {
        display: block;
        font-size: .78rem;
        line-height: 1.2;
        margin: 0;
    }

    .hero-tags .tag-content p {
        font-size: .68rem;
        line-height: 1.25;
        margin: 3px 0 0;
    }

    .hero-tags .tag-check {
        flex-shrink: 0;
        font-size: .75rem;
    }
}

@media (max-width: 600px) {
    .promosi-desc1 {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}



@media (max-width:768px){
    .gallerySwiper{
        padding-bottom:60px;
    }
    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev{
        display:none;
    }
}

@media (max-width: 768px) {

    .promosi-brand {
        width: 90%;
        margin-top: 2.5rem;
        padding: 12px 18px;
        gap: 14px;
        border-radius: 18px;
    }

    .promosi-brand-logo {
        width: 52px;
        height: 52px;
    }

    .promosi-brand-text h3 {
        font-size: 1.25rem;
    }

    .promosi-brand-text p {
        font-size: .8rem;
    }
}

@media (max-width: 768px) {

    .hero {
        min-height: 650px;

        background-position: center;
    }

    .hero-description {
        max-width: 90%;
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.15;
    }

}

@media (max-width: 768px) {
    .hero-logo {
        width: 420px;
        max-width: 80%;
        margin: 0 auto 20px;
        transform: translateX(50px);
    }
}

@media (max-width: 768px) {

    .footer-maps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-map iframe {
        height: 220px;
    }
}