/* ============================================================
   LAYANAN WEBSITE — layanan-website.css
   Scope: halaman /layanan/jasa-pembuatan-website
   Prefix: lw-
   ============================================================ */

:root {
    --lw-bg:          #0d1117;
    --lw-bg-2:        #161b22;
    --lw-bg-3:        #21262d;
    --lw-text:        #ffffff;
    --lw-muted:       #9ca3af;
    --lw-border:      rgba(255, 255, 255, 0.08);
    --lw-green:       #84cc16;
    --lw-green-dark:  #65a30d;
    --lw-green-glow:  rgba(132, 204, 22, 0.14);
    --lw-blue:        #3b82f6;
    --lw-radius:      12px;
    --lw-radius-lg:   18px;
}


/* ============================================================
   HERO
   ============================================================ */
.lw-hero {
    position: relative;
    min-height: 100vh;
    background: var(--lw-bg);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}


/* ── Background dekoratif ── */
.lw-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Dot grid */
.lw-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* Green glow */
.lw-hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--lw-green-glow) 0%, transparent 65%);
    border-radius: 50%;
    animation: lw-glow-pulse 8s ease-in-out infinite;
}

@keyframes lw-glow-pulse {
    0%, 100% { transform: scale(1);     opacity: 1; }
    50%       { transform: scale(1.15); opacity: 0.6; }
}

/* Blue brush strokes */
.lw-stroke {
    position: absolute;
}

.lw-stroke--1 {
    width: 340px;
    top: 10%;
    left: -20px;
    transform: rotate(-8deg);
}

.lw-stroke--2 {
    width: 240px;
    bottom: 22%;
    right: 5%;
    transform: rotate(6deg);
}

.lw-stroke--3 {
    width: 280px;
    bottom: 8%;
    left: 30%;
    transform: rotate(-4deg);
}


/* ── Layout grid ── */
.lw-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}


/* ============================================================
   KOLOM KIRI — Konten
   ============================================================ */
.lw-hero-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}


/* ── Breadcrumb ── */
.lw-breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lw-breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.78rem;
    color: var(--lw-muted);
}

.lw-breadcrumb li + li::before {
    content: '/';
    margin: 0 6px;
    color: rgba(255,255,255,0.2);
}

.lw-breadcrumb a {
    color: var(--lw-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.lw-breadcrumb a:hover { color: var(--lw-text); }

.lw-breadcrumb li:last-child { color: rgba(255,255,255,0.45); }


/* ── Badge pill ── */
.lw-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(132, 204, 22, 0.08);
    border: 1px solid rgba(132, 204, 22, 0.22);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lw-green);
    width: fit-content;
}

.lw-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lw-green);
    flex-shrink: 0;
    animation: lw-dot-blink 2s ease-in-out infinite;
}

@keyframes lw-dot-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(132,204,22,0.4); }
    50%       { opacity: 0.7; box-shadow: 0 0 0 4px rgba(132,204,22,0); }
}


/* ── Heading ── */
.lw-hero-h1 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--lw-text);
    margin: 0;
    letter-spacing: -0.02em;
}

.lw-accent {
    color: var(--lw-green);
    position: relative;
    display: inline-block;
}

/* Underline dekoratif di bawah kata aksen */
.lw-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--lw-green), transparent);
    border-radius: 2px;
    opacity: 0.6;
}


/* ── Deskripsi ── */
.lw-hero-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--lw-muted);
    margin: 0;
    max-width: 520px;
}

.lw-hero-desc strong {
    color: var(--lw-text);
    font-weight: 600;
}


/* ── CTA Buttons ── */
.lw-hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.lw-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 24px;
    background: var(--lw-green);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--lw-radius);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(132,204,22,0.3);
    white-space: nowrap;
}

.lw-btn-primary:hover {
    background: var(--lw-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(132,204,22,0.38);
}

.lw-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 22px;
    background: transparent;
    color: var(--lw-text);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--lw-border);
    border-radius: var(--lw-radius);
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
    white-space: nowrap;
}

.lw-btn-outline:hover {
    border-color: rgba(255,255,255,0.25);
    color: var(--lw-text);
    transform: translateY(-2px);
}


/* ── Stats row ── */
.lw-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 4px;
}

.lw-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lw-stat-num {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--lw-text);
    line-height: 1;
    letter-spacing: -0.02em;
}

.lw-stat-label {
    font-size: 0.72rem;
    color: var(--lw-muted);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.lw-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--lw-border);
    flex-shrink: 0;
}


/* ============================================================
   KOLOM KANAN — Image Grid
   ============================================================ */
.lw-hero-visual {
    min-width: 0;
    padding-top: 48px;
}

.lw-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.lw-img-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: var(--lw-bg-2);
    border: 1px solid var(--lw-border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lw-img-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(0,0,0,0.55);
}

/* Baris bawah: span full width */
.lw-img-card--wide {
    grid-column: 1 / -1;
}

.lw-img-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.lw-img-card--wide img {
    height: 130px;
}

.lw-img-card:hover img {
    transform: scale(1.04);
}

/* Label tag */
.lw-img-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 4px 10px;
    background: rgba(13, 17, 23, 0.82);
    border: 1px solid var(--lw-border);
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* ============================================================
   SCROLL HINT
   ============================================================ */
.lw-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
}

.lw-scroll-hint span {
    display: block;
    width: 20px;
    height: 34px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    position: relative;
}

.lw-scroll-hint span::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--lw-green);
    border-radius: 100px;
    animation: lw-scroll-dot 2.2s ease-in-out infinite;
}

@keyframes lw-scroll-dot {
    0%   { top: 5px;  opacity: 1; }
    75%  { top: 17px; opacity: 0; }
    100% { top: 5px;  opacity: 0; }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .lw-hero {
        padding: 120px 0 80px;
        align-items: flex-start;
    }

    .lw-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
        /* Ganti width:90% dengan explicit padding agar aman di semua lebar layar */
        width: 100%;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
        box-sizing: border-box;
    }

    .lw-hero-visual {
        padding-top: 0;
        order: -1;
    }

    .lw-hero-desc { max-width: 100%; }

    .lw-hero-ctas { justify-content: center; }

    .lw-hero-stats { justify-content: center; }

    .lw-badge { margin: 0 auto; }

    .lw-img-grid { max-width: 560px; margin: 0 auto; }

    .lw-stroke--1 { width: 220px; }
    .lw-stroke--2 { display: none; }
}

@media (max-width: 600px) {
    .lw-hero { padding: 100px 0 70px; }

    .lw-hero-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .lw-hero-h1 { font-size: 1.75rem; }

    .lw-hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

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

    .lw-img-grid { gap: 8px; }

    .lw-img-card img       { height: 130px; }
    .lw-img-card--wide img { height: 110px; }

    .lw-hero-stats { gap: 16px; flex-wrap: wrap; }

    .lw-stat-num { font-size: 1.2rem; }

    .lw-stroke--1,
    .lw-stroke--3 { display: none; }
}


/* ============================================================
   SECTION: KENAPA WEBSITE BISNIS TIDAK MEMBERIKAN HASIL?
   ============================================================ */
.lw-why {
    background: #ffffff;
}

.lw-why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* ── Eyebrow label (shared) ── */
.lw-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #84cc16;
    margin-bottom: 12px;
}

/* ── Accent heading dark (untuk section putih) ── */
.lw-accent-dark {
    color: #84cc16;
}

/* ── Section h2 (white bg) ── */
.lw-why h2,
.lw-process h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 800;
    line-height: 1.22;
    color: #111827;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.lw-why-text {
    min-width: 0;
}

.lw-why-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
    margin: 0 0 16px;
}

.lw-why-text p:last-child { margin-bottom: 0; }

.lw-why-text strong { color: #111827; font-weight: 600; }

/* Pullquote */
.lw-pullquote {
    margin: 24px 0;
    padding: 20px 24px;
    border-left: 4px solid #84cc16;
    background: #f9fafb;
    border-radius: 0 10px 10px 0;
}

.lw-pullquote p {
    font-size: 1.1rem !important;
    font-weight: 600;
    font-style: italic;
    color: #111827 !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

.lw-pullquote strong {
    color: #84cc16 !important;
}

/* Figure / gambar */
.lw-why-visual {
    min-width: 0;
    margin: 0;
}

.lw-why-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}

.lw-why-visual figcaption,
.lw-process-visual figcaption {
    margin-top: 12px;
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
    font-style: italic;
    line-height: 1.5;
}


/* ============================================================
   SECTION: PROSES KAMI
   ============================================================ */
.lw-process {
    background: #f8fafc;
}

.lw-process-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.lw-process-lead {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.75;
    margin: 0;
}

/* ── Steps list ── */
.lw-steps {
    list-style: none;
    margin: 0 0 64px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
    position: relative;
}

.lw-step {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.lw-step--last {
    grid-column: 1 / -1;
    border-bottom: none;
}

.lw-step-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: #84cc16;
    line-height: 1;
    flex-shrink: 0;
    width: 52px;
    opacity: 0.9;
    letter-spacing: -0.04em;
    padding-top: 2px;
}

.lw-step-body {
    min-width: 0;
}

.lw-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
    line-height: 1.3;
}

.lw-step-body p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #374151;
    margin: 0;
}

/* ── Gambar alur kerja ── */
.lw-process-visual {
    margin: 0;
}

.lw-process-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 6;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}


/* ============================================================
   RESPONSIVE — WHY & PROCESS
   ============================================================ */
@media (max-width: 960px) {

    .lw-why-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lw-why-visual {
        order: -1;
    }

    .lw-why-visual img {
        aspect-ratio: 16 / 9;
    }

    .lw-steps {
        grid-template-columns: 1fr;
    }

    .lw-step--last {
        grid-column: 1;
    }
}

@media (max-width: 600px) {

    .lw-why-inner,
    .lw-process .container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .lw-why h2,
    .lw-process h2 {
        font-size: 1.5rem;
    }

    .lw-process-header {
        margin-bottom: 36px;
    }

    .lw-steps {
        margin-bottom: 40px;
    }

    .lw-step {
        gap: 14px;
        padding: 20px 0;
    }

    .lw-step-num {
        font-size: 1.7rem;
        width: 40px;
    }

    .lw-process-visual img {
        aspect-ratio: 4 / 3;
        border-radius: 12px;
    }
}


/* ============================================================
   SECTION: HARGA PEMBUATAN WEBSITE
   ============================================================ */

/* Override padding global untuk section ini */
.lw-pricing {
    background: #326733;
    padding: 0 !important;
}

/* ── Wave dividers ── */
.lw-pricing-wave {
    line-height: 0;
    overflow: hidden;
}

.lw-pricing-wave--top {
    background: #f8fafc;
}

.lw-pricing-wave--bottom {
    background: #326733;
}

.lw-pricing-wave svg {
    display: block;
    width: 100%;
    height: 90px;
}

/* ── Konten area ── */
.lw-pricing-content {
    padding: 56px 0 64px;
}

/* ── Eyebrow light (untuk bg gelap) ── */
.lw-eyebrow--light {
    color: #a3e635;
}

/* ── Header ── */
.lw-pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.lw-pricing-header h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.22;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.lw-pricing-brand {
    color: #a3e635;
}

.lw-pricing-header p {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

/* ── Pricing Cards ── */
.lw-pcards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.lw-pcard {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.lw-pcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.22);
}

/* Card custom (Portal) */
.lw-pcard--custom {
    background: rgba(163, 230, 53, 0.08);
    border-color: rgba(163, 230, 53, 0.35);
}

.lw-pcard--custom:hover {
    border-color: rgba(163, 230, 53, 0.6);
    box-shadow: 0 24px 56px rgba(163, 230, 53, 0.12);
}

/* Ikon */
.lw-pcard-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(163, 230, 53, 0.15);
    border: 1px solid rgba(163, 230, 53, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a3e635;
    flex-shrink: 0;
}

/* Nama tipe */
.lw-pcard-type {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

/* Harga */
.lw-pcard-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lw-pcard-from {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.lw-pcard-amount {
    font-size: 1.55rem;
    font-weight: 800;
    color: #a3e635;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.lw-pcard-price--custom .lw-pcard-amount {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Deskripsi */
.lw-pcard-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    flex: 1;
}

/* CTA link */
.lw-pcard-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-top: auto;
    transition: color 0.2s, gap 0.2s;
}

.lw-pcard-cta:hover {
    color: #a3e635;
    gap: 10px;
}

/* CTA custom card */
.lw-pcard-cta--custom {
    justify-content: center;
    padding: 11px 20px;
    background: #ffffff;
    color: #326733;
    border-radius: 10px;
    font-weight: 700;
    transition: background 0.2s, transform 0.2s;
    gap: 8px;
}

.lw-pcard-cta--custom:hover {
    background: #a3e635;
    color: #1a3a00;
    transform: translateY(-1px);
    gap: 8px;
}

/* ── Note box ── */
.lw-pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    margin-bottom: 40px;
}

.lw-pricing-note-icon {
    color: #a3e635;
    flex-shrink: 0;
    margin-top: 1px;
}

.lw-pricing-note p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.lw-pricing-note strong {
    color: #ffffff;
    font-weight: 600;
}

/* ── CTA bawah ── */
.lw-pricing-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.lw-btn-pricing {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    background: #ffffff;
    color: #326733;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.lw-btn-pricing:hover {
    background: #a3e635;
    color: #1a3a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.lw-pricing-cta-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.lw-pricing-cta-note strong {
    color: rgba(255, 255, 255, 0.85);
}


/* ── Responsive pricing ── */
@media (max-width: 720px) {
    .lw-pcards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .lw-pricing-content {
        padding: 40px 0 48px;
    }

    .lw-pricing-content .container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .lw-pricing-wave svg {
        height: 60px;
    }

    .lw-pcard {
        padding: 22px;
    }

    .lw-pcard-amount {
        font-size: 1.3rem;
    }

    .lw-pricing-note {
        flex-direction: column;
        gap: 8px;
    }

    .lw-btn-pricing {
        width: 100%;
        justify-content: center;
    }
}


/* ============================================================
   SECTION: JENIS WEBSITE YANG KAMI KERJAKAN
   ============================================================ */
.lw-types {
    background: #ffffff;
}

/* ── Header ── */
.lw-types-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.lw-types-lead {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ── Grid 6 jenis website ── */
.lw-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.lw-type-card {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

/* Subtle green corner glow on hover */
.lw-type-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(132,204,22,0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.lw-type-card:hover {
    border-color: rgba(132,204,22,0.35);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(132,204,22,0.15);
}

.lw-type-card:hover::before { opacity: 1; }

.lw-type-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.lw-type-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(132,204,22,0.12);
    border: 1px solid rgba(132,204,22,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #84cc16;
    flex-shrink: 0;
    transition: background 0.2s;
}

.lw-type-card:hover .lw-type-icon {
    background: rgba(132,204,22,0.2);
}

.lw-type-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.lw-type-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.lw-type-desc {
    font-size: 0.86rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.5);
    margin: 0;
    flex: 1;
}

.lw-type-uses {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.lw-type-uses span {
    font-size: 0.72rem;
    font-weight: 600;
    color: #84cc16;
    background: rgba(132,204,22,0.08);
    border: 1px solid rgba(132,204,22,0.18);
    padding: 3px 10px;
    border-radius: 20px;
}

/* ── CTA inline ── */
.lw-types-cta-text {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.7;
    text-align: center;
    margin: 0 0 64px;
}

.lw-types-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #84cc16;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(132,204,22,0.3);
    transition: color 0.2s, border-color 0.2s;
}

.lw-types-cta-link:hover {
    color: #65a30d;
    border-color: #65a30d;
}

/* ── Sub heading portfolio ── */
.lw-portfolio-sub {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0 0 28px;
}

/* ── Portfolio grid ── */
.lw-portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 36px;
}

.lw-porto-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.lw-porto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.09);
    border-color: #84cc16;
}

/* Thumbnail */
.lw-porto-thumb {
    position: relative;
    line-height: 0;
    overflow: hidden;
}

.lw-porto-thumb > img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.lw-porto-card:hover .lw-porto-thumb > img {
    transform: scale(1.04);
}

/* Logo overlay */
.lw-porto-logo-wrap {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lw-porto-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Body */
.lw-porto-body {
    padding: 16px 20px 20px;
}

.lw-porto-name {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
}

.lw-porto-cat {
    font-size: 0.78rem;
    color: #84cc16;
    font-weight: 600;
    margin: 0 0 12px;
}

.lw-porto-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lw-porto-tags span {
    font-size: 0.72rem;
    font-weight: 600;
    color: #374151;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 3px 10px;
    border-radius: 100px;
}

/* Link lihat semua */
.lw-porto-more {
    text-align: center;
    margin-bottom: 48px;
}

.lw-btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: #111827;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.lw-btn-outline-dark:hover {
    border-color: #84cc16;
    color: #65a30d;
    transform: translateY(-2px);
}


/* ── Client logo strip ── */
.lw-clients {
    border-top: 1px solid #e5e7eb;
    padding-top: 36px;
    text-align: center;
}

.lw-clients-label {
    font-size: 0.88rem;
    color: #6b7280;
    margin: 0 0 24px;
    line-height: 1.6;
}

.lw-clients-label strong {
    color: #111827;
    font-weight: 700;
}

.lw-clients-logos {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.lw-client-logo {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    transition: border-color 0.25s, box-shadow 0.25s, opacity 0.25s;
    opacity: 0.6;
}

.lw-client-logo:hover {
    border-color: #84cc16;
    box-shadow: 0 4px 16px rgba(132,204,22,0.12);
    opacity: 1;
}

.lw-client-logo img {
    max-width: 100%;
    max-height: 38px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.25s;
}

.lw-client-logo:hover img {
    filter: grayscale(0%);
}


/* ── Responsive types & portfolio ── */
@media (max-width: 960px) {
    .lw-types-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .lw-portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .lw-clients-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .lw-types .container,
    .lw-types-grid,
    .lw-portfolio-grid {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .lw-types-grid {
        grid-template-columns: 1fr;
        padding-left: 0;
        padding-right: 0;
    }

    .lw-porto-thumb > img {
        height: 180px;
    }

    .lw-clients-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .lw-client-logo {
        height: 54px;
        padding: 8px 10px;
    }
}


/* ============================================================
   SECTION: MENGAPA MEMILIH HEXA TEKNOLOGI
   ============================================================ */
.lw-why-us {
    background: #0d1117;
    position: relative;
    overflow: hidden;
}

/* Subtle dot grid (inherited feel from hero) */
.lw-why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Subtle glow kiri bawah */
.lw-why-us::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(132,204,22,0.07) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

/* ── Layout ── */
.lw-why-us-inner {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ── Kolom kiri ── */
.lw-why-us-left {
    min-width: 0;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lw-why-us-left h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    margin: 0;
    letter-spacing: -0.02em;
}

.lw-why-us-brand {
    color: #84cc16;
    display: block;
}

.lw-why-us-tagline {
    font-size: 0.97rem;
    line-height: 1.7;
    color: #989ea8;
    margin: 0;
}

/* ── Kolom kanan: feature list ── */
.lw-why-us-right {
    min-width: 0;
}

.lw-feature {
    padding: 28px 0 28px 28px;
    border-left: 2px solid rgba(255, 255, 255, 0.07);
    position: relative;
    transition: border-left-color 0.35s ease;
    cursor: default;
}

.lw-feature--last {
    padding-bottom: 0;
}

/* Lime accent bar yang grow on hover */
.lw-feature::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 2px;
    height: 0;
    background: #84cc16;
    border-radius: 2px;
    transition: height 0.4s ease;
}

.lw-feature:hover::before {
    height: 100%;
}

/* Nomor + ikon */
.lw-feature-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.lw-feature-num {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #84cc16;
    line-height: 1;
}

.lw-feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(132, 204, 22, 0.1);
    border: 1px solid rgba(132, 204, 22, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #84cc16;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
}

.lw-feature:hover .lw-feature-icon {
    background: rgba(132, 204, 22, 0.18);
    border-color: rgba(132, 204, 22, 0.4);
}

.lw-feature-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    line-height: 1.3;
    transition: color 0.3s;
}

.lw-feature:hover .lw-feature-title {
    color: #a3e635;
}

.lw-feature-desc {
    font-size: 0.9rem;
    line-height: 1.72;
    color: #989ea8;
    margin: 0;
    transition: color 0.3s;
}

.lw-feature:hover .lw-feature-desc {
    color: #9ca3af;
}

/* Divider antar feature */
.lw-feature + .lw-feature {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}


/* ── Responsive ── */
@media (max-width: 960px) {
    .lw-why-us-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lw-why-us-left {
        position: static;
    }

    .lw-why-us-left h2 {
        font-size: 2rem;
    }

    .lw-why-us-brand { display: inline; }
}

@media (max-width: 600px) {
    .lw-why-us-inner {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .lw-feature {
        padding-left: 20px;
    }

    .lw-why-us-left h2 {
        font-size: 1.7rem;
    }
}


/* ============================================================
   SECTION: CARA PEMESANAN
   ============================================================ */
.lw-order {
    background: #f4f6f8;
}

.lw-order-header {
    text-align: center;
    margin-bottom: 48px;
}

.lw-order-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin: 10px 0 14px;
    letter-spacing: -0.02em;
}

.lw-order-header p {
    font-size: 1rem;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Langkah 1: Highlight block (dark premium) ── */
.lw-order-step1 {
    position: relative;
    background: linear-gradient(135deg, #0d1117 0%, #0f200f 100%);
    border: 1px solid rgba(132,204,22,0.2);
    border-radius: 20px;
    padding: 52px 52px 52px 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(132,204,22,0.08);
}

/* Subtle glow top-left inside card */
.lw-order-step1::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(132,204,22,0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Decorative dot grid inside card */
.lw-order-step1::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.lw-order-step1-badge {
    position: absolute;
    top: 22px;
    left: 56px;
    background: rgba(132,204,22,0.15);
    border: 1px solid rgba(132,204,22,0.3);
    color: #84cc16;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    z-index: 1;
}

.lw-order-step1-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
    position: relative;
    z-index: 1;
    padding-top: 16px;
}

.lw-order-step1-left h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.02em;
}

.lw-order-step1-left h3 span {
    color: #84cc16;
}

.lw-order-step1-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lw-order-step1-body p {
    font-size: 0.94rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin: 0;
}

.lw-order-step1-body strong {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

/* Right: visual contact card */
.lw-order-step1-right {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.lw-order-step1-visual {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(132,204,22,0.2);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    backdrop-filter: blur(4px);
}

.lw-order-step1-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #84cc16, #65a30d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 0 0 10px rgba(132,204,22,0.1), 0 0 0 20px rgba(132,204,22,0.05);
    margin-bottom: 6px;
}

.lw-order-step1-num {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin: 0;
}

.lw-order-step1-sublabel {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin: 0;
}

.lw-order-step1-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 6px;
}

.lw-order-step1-pills span {
    background: rgba(132,204,22,0.1);
    border: 1px solid rgba(132,204,22,0.2);
    color: #84cc16;
    font-size: 0.71rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Arrow divider */
.lw-order-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 28px 0 20px;
    color: #84cc16;
}

.lw-order-arrow span {
    font-size: 0.74rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── Steps 2–5: 4-col grid ── */
.lw-order-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.lw-order-steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 2px;
    background: linear-gradient(90deg, #84cc16, #65a30d);
    z-index: 0;
}

.lw-order-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

/* White card per step */
.lw-order-step-body {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px 16px 20px;
    width: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}

.lw-order-step:hover .lw-order-step-body {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.lw-order-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #84cc16;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px #f4f6f8;
}

.lw-order-step-num--final {
    background: linear-gradient(135deg, #84cc16, #3b82f6);
}

.lw-order-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f0fdf4;
    border: 2px solid #d1fae5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    margin-top: 16px;
    margin-bottom: 16px;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.lw-order-step:hover .lw-order-step-icon {
    background: #84cc16;
    border-color: #84cc16;
    color: #ffffff;
}

.lw-order-step-icon--final {
    background: linear-gradient(135deg, #f0fdf4, #eff6ff);
    border-color: #bfdbfe;
    color: #2563eb;
}

.lw-order-step:hover .lw-order-step-icon--final {
    background: linear-gradient(135deg, #84cc16, #3b82f6);
    border-color: transparent;
    color: #ffffff;
}

.lw-order-step-body h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}

.lw-order-step-body p {
    font-size: 0.81rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* CTA block */
.lw-order-cta {
    text-align: center;
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.lw-order-cta p {
    font-size: 1rem;
    color: #374151;
    margin: 0;
}

.lw-order-cta strong { color: #111827; }

.lw-order-note {
    font-size: 0.82rem;
    color: #9ca3af;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .lw-order-step1 {
        grid-template-columns: 1fr;
        padding: 44px 36px 36px;
    }

    .lw-order-step1-right { display: none; }

    .lw-order-steps {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

    .lw-order-steps::before { display: none; }
}

@media (max-width: 640px) {
    .lw-order-step1 { padding: 44px 20px 28px; }

    .lw-order-step1-badge { left: 20px; }

    .lw-order-steps { grid-template-columns: 1fr 1fr; row-gap: 36px; }

    .lw-order-step { padding: 0 6px; }

    .lw-order-cta .lw-btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .lw-order-steps { grid-template-columns: 1fr; }
}


/* ============================================================
   PREFERS-REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .lw-hero-glow,
    .lw-badge-dot,
    .lw-scroll-hint span::after { animation: none !important; }

    .lw-img-card:hover           { transform: none; }
    .lw-img-card:hover img       { transform: none; }
    .lw-btn-primary:hover,
    .lw-btn-outline:hover        { transform: none; }
}
