/* ============================================================
   BATIK HARJONO — Complete Redesign CSS
   Reference: batikharjono.id
   Colors:
     --dark-slate : #2a333c  (topbar, footer, factory)
     --batik-brown: #4a2c1f  (hero background)
     --orange     : #f38814  (accent, icons, CTA)
     --white      : #ffffff
     --light-gray : #f5f5f5  (section backgrounds)
     --text-dark  : #1a1a1a
     --text-body  : #555555
============================================================ */

/* ---- RESET ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   TOPBAR
============================================================ */
.topbar {
    background: #2a333c;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

.topbar-inner {
    display: flex;
    justify-content: flex-end;
}

.topbar-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
}

.topbar-item svg {
    color: #f38814;
    flex-shrink: 0;
}

.topbar-item span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.topbar-item a,
.topbar-item strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.topbar-sep {
    color: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   HEADER
============================================================ */
.header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 8px;
    justify-content: space-between;
    flex-wrap: nowrap;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.brand-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.logo:hover .brand-logo-img {
    transform: scale(1.05);
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text-brand {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-text-brand span {
    color: #f38814;
}

.logo-text-tag {
    font-size: 10px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Footer variant */
.footer-logo .logo-text-brand {
    color: #ffffff;
}

.footer-logo .logo-text-tag {
    color: rgba(255, 255, 255, 0.6);
}

/* Nav */
.nav {
    display: flex;
    flex: 1;
    justify-content: center;
    overflow: hidden;
}

/* Hide mobile-specific nav elements on desktop */
.nav-close, .nav-mobile-cta {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-link {
    display: block;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 700;
    color: #2a333c;
    letter-spacing: 0.2px;
    transition: color 0.2s;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #f38814;
}

.nav-link.active {
    color: #f38814;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 11px;
    right: 11px;
    height: 2px;
    background: #f38814;
    border-radius: 2px;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-hubungi {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f38814;
    color: #fff;
    padding: 9px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
    border: 2px solid #f38814;
}

.btn-hubungi:hover {
    background: #d97706;
    border-color: #d97706;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2a333c;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    background: #3d1f0a;
    min-height: 520px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(58, 28, 8, 0.55);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 20px 160px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.hero-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.hero-price {
    font-size: clamp(52px, 8vw, 90px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.75);
    letter-spacing: -2px;
    line-height: 1;
}

.hero-icon-thumb {
    width: clamp(60px, 8vw, 90px);
    height: clamp(60px, 8vw, 90px);
    flex-shrink: 0;
}

.hero-icon-thumb svg {
    width: 100%;
    height: 100%;
}

.hero-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.btn-hero {
    display: inline-block;
    background: #f38814;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 40px;
    border-radius: 3px;
    transition: all 0.2s;
    border: 2px solid #f38814;
}

.btn-hero:hover {
    background: transparent;
    color: #f38814;
}

/* Slider buttons */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.2s, transform 0.2s;
    user-select: none;
    backdrop-filter: blur(4px);
}

.hero-slider-btn:hover {
    background: rgba(243, 136, 20, 0.8);
    transform: translateY(-50%) scale(1.08);
}

.hero-slider-btn.prev {
    left: 28px;
}

.hero-slider-btn.next {
    right: 28px;
}

/* Slides Wrapper */
.hero-slides-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Individual Slide */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.hero-slide .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide .hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 160px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Tag */
.hero-slide-tag {
    display: inline-block;
    background: rgba(243, 136, 20, 0.25);
    border: 1px solid rgba(243, 136, 20, 0.5);
    color: #f38814;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
    backdrop-filter: blur(4px);
}

/* Outline hero button */
.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 36px;
    border-radius: 3px;
    transition: all 0.2s;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, width 0.3s;
}

.hero-dot.active {
    background: #f38814;
    width: 28px;
    border-radius: 5px;
}

/* Batik border decoration at bottom of hero */
.hero-batik-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='8' fill='none' stroke='rgba(196,132,74,0.5)' stroke-width='1'/%3E%3Ccircle cx='20' cy='20' r='4' fill='rgba(196,132,74,0.3)'/%3E%3Cpath d='M0 20 Q10 10 20 20 Q30 30 40 20' fill='none' stroke='rgba(196,132,74,0.3)' stroke-width='0.8'/%3E%3C/svg%3E") repeat;
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

/* ============================================================
   LAYANAN CARDS (overlapping hero)
============================================================ */
.layanan-cards-section {
    padding: 0 0 60px;
    position: relative;
    z-index: 2;
    margin-top: -90px;
}

.layanan-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.l-card {
    background: #fff;
    padding: 44px 36px;
    text-align: center;
    border-right: none;
    border-radius: 6px;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.l-card:last-child {
    border-right: none;
}

.l-card:hover {
    background: #4a2c1f;
    box-shadow: 0 12px 40px rgba(74, 44, 31, 0.25);
    transform: translateY(-4px);
}

.l-card:hover .l-card-title {
    color: #fff;
}

.l-card:hover .l-card-desc {
    color: rgba(255, 255, 255, 0.75);
}

.l-card:hover .l-card-icon svg {
    stroke: #f38814;
}

.l-card--active {
    position: relative;
}

.l-card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #f38814;
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.l-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
}

.l-card-icon svg {
    width: 100%;
    height: 100%;
}

.l-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.l-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section {
    background: #fff;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Single photo left */
.about-photo-single {
    position: relative;
    height: 560px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.about-single-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s ease;
}

.about-photo-single:hover .about-single-img {
    transform: scale(1.03);
}

.about-text {
    padding-left: 0;
}

.section-tag-orange {
    display: block;
    color: #f38814;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-title strong {
    font-weight: 800;
}

.about-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 28px;
}

.about-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-bottom: 32px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.check-icon {
    color: #dc2626;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.about-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-orange {
    display: inline-block;
    background: #f38814;
    color: #fff;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: background 0.2s;
}

.btn-orange:hover {
    background: #d97706;
}

.btn-orange-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #f38814;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 3px;
    border: 2px solid #f38814;
    transition: all 0.2s;
}

.btn-orange-outline:hover {
    background: #f38814;
    color: #fff;
}

/* ============================================================
   ORANGE BANNER
============================================================ */
.orange-banner {
    background: #f38814;
    padding: 20px 0;
}

.orange-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.orange-banner-text {
    text-align: center;
    color: #fff;
}

.orange-banner-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.orange-banner-text p:last-child {
    font-size: 16px;
}

.orange-banner-text strong {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

/* ============================================================
   LAYANAN FULL
============================================================ */
.layanan-full-section {
    padding: 80px 0;
    background: #fdfaf6;
}

.section-header-center {
    text-align: center;
    margin-bottom: 52px;
}

.section-title-dark {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.3;
}

.section-title-dark strong {
    font-weight: 800;
}

.layanan-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lf-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    color: #f38814;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.lf-card:hover {
    background: #4a2c1f;
    box-shadow: 0 12px 40px rgba(74,44,31,0.25);
    transform: translateY(-4px);
    color: #f38814;
}

.lf-card:hover .lf-num { color: rgba(255,255,255,0.10); }
.lf-card:hover h4 { color: #fff; }
.lf-card:hover p { color: rgba(255,255,255,0.70); }

.lf-num {
    font-size: 48px;
    font-weight: 900;
    color: #f0f0f0;
    line-height: 1;
    position: absolute;
    top: 12px;
    right: 16px;
}

.lf-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
}

.lf-icon svg {
    width: 100%;
    height: 100%;
}

.lf-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.lf-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ============================================================
   FACTORY SECTION — Full Bleed Redesign
============================================================ */
.factory-section {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Background */
.factory-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.factory-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.factory-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10,18,24,0.95) 0%,
        rgba(10,18,24,0.88) 45%,
        rgba(10,18,24,0.30) 70%,
        transparent 100%
    );
}

/* Content wrap */
.factory-content-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 72px 0 48px 80px;
}

.factory-content-box {
    max-width: 400px;
}

/* Eyebrow */
.factory-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f38814;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.factory-eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: #f38814;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Heading */
.factory-heading {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.factory-heading strong {
    font-weight: 800;
    color: #fff;
}

/* Body */
.factory-body {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 28px;
    border-left: 3px solid #f38814;
    padding-left: 16px;
}

/* Feature list */
.factory-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-bottom: 36px;
}
.factory-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* CTA */
.factory-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f38814;
    color: #fff;
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: background 0.2s, transform 0.2s;
}
.factory-cta:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* Stats bar */
.factory-stats-bar {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.10);
    padding: 28px 0;
}

.factory-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.factory-stat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 20px;
}

.factory-stat-num {
    font-size: 48px;
    font-weight: 900;
    color: #f38814;
    line-height: 1;
    letter-spacing: -1px;
}

.factory-stat-suffix {
    font-size: 28px;
    font-weight: 900;
    color: #f38814;
    line-height: 1;
    margin-left: 2px;
}

.factory-stat > span:first-child,
.factory-stat > span:nth-child(2) {
    display: inline;
}

.factory-stat-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.factory-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.factory-stat-divider {
    width: 1px;
    height: 56px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ============================================================
   PROSES PEMESANAN (INDUSTRI)
============================================================ */
.proses-section {
    padding: 95px 0;
    background: #fdfaf6;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.proses-subtitle {
    max-width: 640px;
    margin: 14px auto 0;
    font-size: 15px;
    color: #64748b;
    line-height: 1.65;
    text-align: center;
}

.pipeline-wrap {
    position: relative;
    margin-top: 56px;
}

.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.pipeline-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pipeline-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 18px 38px -10px rgba(28, 40, 48, 0.12);
    border-color: #f38814;
}

/* Featured / Dark Industrial Phase Card */
.pipeline-card--active {
    background: #1c2830;
    border-color: #1c2830;
    box-shadow: 0 16px 36px -8px rgba(28, 40, 48, 0.22);
    transform: translateY(-10px);
}

.pipeline-card--active:hover {
    background: #243240;
    transform: translateY(-16px);
    border-color: #f38814;
    box-shadow: 0 24px 48px -12px rgba(28, 40, 48, 0.30);
}

.pipeline-card--active .pipeline-title { color: #ffffff; }
.pipeline-card--active .pipeline-desc { color: rgba(255, 255, 255, 0.75); }
.pipeline-card--active .pipeline-card-header { border-bottom-color: rgba(255, 255, 255, 0.1); }
.pipeline-card--active .pipeline-node { background: #f38814; color: #ffffff; border-color: #f38814; }
.pipeline-card--active .pipeline-tag { background: rgba(243, 136, 20, 0.2); color: #f38814; border-color: rgba(243, 136, 20, 0.3); }

.pipeline-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(100, 116, 139, 0.25);
}

.pipeline-node {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #1e293b;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pipeline-card:hover .pipeline-node {
    border-color: #f38814;
    color: #f38814;
}

.pipeline-card--active:hover .pipeline-node {
    color: #ffffff;
}

.pipeline-phase {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f38814;
}

.pipeline-icon {
    width: 46px;
    height: 46px;
    color: #f38814;
    margin-bottom: 22px;
}

.pipeline-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.pipeline-title {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.35;
}

.pipeline-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 24px;
}

.pipeline-footer {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.pipeline-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(243, 136, 20, 0.1);
    color: #d97706;
    border: 1px solid rgba(243, 136, 20, 0.25);
    transition: background 0.2s;
}

.pipeline-card:hover .pipeline-tag {
    background: #f38814;
    color: #ffffff;
    border-color: #f38814;
}

.color-orange {
    color: #f38814 !important;
}

/* ============================================================
   GALERI SECTION
============================================================ */
.galeri-section {
    background: #2a333c;
}

.galeri-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 560px;
}

.galeri-text {
    padding: 70px 48px 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.section-tag-orange-light {
    display: block;
    color: #f38814;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.galeri-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
}

.galeri-title strong {
    font-weight: 800;
}

.galeri-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

.galeri-grid-wrap {
    padding: 16px;
    display: flex;
    align-items: stretch;
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 160px);
    gap: 4px;
    flex: 1;
    border: 4px solid #f38814;
}

.galeri-item {
    overflow: hidden;
    cursor: pointer;
}

.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* ============================================================
   HARGA / PRICING SECTION
============================================================ */
.harga-section {
    padding: 80px 0;
    background: #fdfaf6;
}

.harga-subtitle {
    font-size: 15px;
    color: #666;
    margin-top: 10px;
    margin-bottom: 0;
}

.harga-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    align-items: start;
}

/* Base card */
.harga-tier-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 36px 28px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}
.harga-tier-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
    transform: translateY(-4px);
}

/* Popular card */
.harga-tier-card--popular {
    background: #2a333c;
    border-color: #2a333c;
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.harga-tier-card--popular:hover {
    transform: translateY(-16px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.22);
}
.harga-tier-card--popular .harga-tier-name { color: rgba(255,255,255,0.7); }
.harga-tier-card--popular .harga-price-from { color: rgba(255,255,255,0.5); }
.harga-tier-card--popular .harga-price-num { color: #f38814; }
.harga-tier-card--popular .harga-price-unit { color: rgba(255,255,255,0.5); }
.harga-tier-card--popular .harga-tier-features li { color: rgba(255,255,255,0.80); }
.harga-tier-card--popular .harga-tier-features li:not(:last-child) { border-bottom-color: rgba(255,255,255,0.08); }

/* Popular badge */
.harga-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #f38814;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap;
}

/* Icon */
.harga-tier-icon {
    width: 52px;
    height: 52px;
    color: #f38814;
    margin-bottom: 16px;
}
.harga-tier-icon svg {
    width: 100%;
    height: 100%;
}

/* Tier name */
.harga-tier-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 14px;
    display: block;
}

/* Price block */
.harga-tier-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}
.harga-tier-card--popular .harga-tier-price {
    border-bottom-color: rgba(255,255,255,0.10);
}
.harga-price-from {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 4px;
}
.harga-price-num {
    font-size: 34px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -1px;
}
.harga-price-unit {
    font-size: 13px;
    color: #aaa;
    margin-top: 4px;
}

/* Features list */
.harga-tier-features {
    list-style: none;
    flex: 1;
    margin-bottom: 28px;
}
.harga-tier-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
}
.harga-tier-features li:last-child { border-bottom: none; }

.harga-check {
    color: #f38814;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    width: 18px;
}

/* CTA button */
.harga-tier-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    border: 2px solid #e0e0e0;
    color: #333;
    background: transparent;
}
.harga-tier-btn:hover {
    border-color: #f38814;
    color: #f38814;
}
.harga-tier-btn--primary {
    background: #f38814;
    border-color: #f38814;
    color: #fff;
}
.harga-tier-btn--primary:hover {
    background: #d97706;
    border-color: #d97706;
    color: #fff;
}

/* Note */
.harga-note {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 32px;
    font-style: italic;
}

/* ============================================================
   TESTIMONI SECTION — Clean 3D Professional Design
============================================================ */
.testi-section {
    padding: 90px 0;
    background: #fdfaf6;
    position: relative;
    overflow: hidden;
}

.testi-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 52px;
    align-items: stretch;
}

/* Clean 3D Card Base */
.testi-card-v3 {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 
        0 10px 30px -5px rgba(18, 28, 45, 0.06), 
        0 20px 25px -5px rgba(18, 28, 45, 0.04),
        0 1px 3px 0 rgba(0, 0, 0, 0.02);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s;
    cursor: default;
    z-index: 1;
}

.testi-card-v3:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px -5px rgba(18, 28, 45, 0.12), 
        0 30px 60px -10px rgba(243, 136, 20, 0.10),
        0 4px 6px -2px rgba(18, 28, 45, 0.04);
    border-color: rgba(243, 136, 20, 0.35);
    z-index: 2;
}

/* Featured / Top Elevated Card */
.testi-card-v3--top {
    transform: translateY(-12px);
    border-top: 4px solid #f38814;
    box-shadow: 
        0 18px 40px -5px rgba(18, 28, 45, 0.08), 
        0 28px 40px -10px rgba(243, 136, 20, 0.08);
}

.testi-card-v3--top:hover {
    transform: translateY(-20px);
    box-shadow: 
        0 24px 48px -5px rgba(18, 28, 45, 0.14), 
        0 36px 64px -12px rgba(243, 136, 20, 0.15);
}

.testi-card-v3-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

/* Star Rating */
.testi-stars-v3 {
    color: #f38814;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    filter: drop-shadow(0 2px 4px rgba(243, 136, 20, 0.2));
}

/* Body Text */
.testi-body-v3 {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 32px;
    flex-grow: 1;
}

/* Footer Section */
.testi-footer-v3 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid #edf2f7;
    position: relative;
}

/* Avatar Image */
.testi-ava-v3 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Meta Data */
.testi-meta-v3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    padding-right: 24px;
}

.testi-meta-v3 strong {
    font-size: 15px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 3px;
    line-height: 1.2;
}

.testi-meta-v3 span {
    font-size: 12px;
    font-weight: 500;
    color: #718096;
}

/* Subtle Quote Mark in Footer */
.testi-qmark {
    font-family: Georgia, serif;
    font-size: 56px;
    color: #f38814;
    opacity: 0.15;
    line-height: 0;
    position: absolute;
    right: 0;
    bottom: 15px;
    pointer-events: none;
}

/* ============================================================
   BLOG SECTION
============================================================ */
.blog-section {
    padding: 80px 0 80px;
    background: #fff;
    margin-top: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    overflow: hidden;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    background: #4a2c1f;
    box-shadow: 0 12px 40px rgba(74,44,31,0.25);
    transform: translateY(-4px);
}

.blog-card:hover .blog-title { color: #fff; }
.blog-card:hover .blog-excerpt { color: rgba(255,255,255,0.70); }
.blog-card:hover .blog-meta { color: rgba(255,255,255,0.50); }
.blog-card:hover .blog-readmore { color: #f38814; }

.blog-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}

.blog-date-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #f38814;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.blog-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card:hover .blog-title {
    color: #f38814;
}

.blog-excerpt {
    font-size: 13px;
    color: #777;
    line-height: 1.65;
    margin-bottom: 16px;
}

.blog-readmore {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.blog-readmore:hover {
    color: #f38814;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: #2a333c;
    color: rgba(255, 255, 255, 0.65);
}

.footer-top {
    padding: 60px 0;
}

.footer-top-inner {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 1.5fr 1.3fr;
    gap: 48px;
}

.footer-brand-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 16px 0 20px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-soc {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
}

.footer-soc:hover {
    background: #f38814;
    border-color: #f38814;
    color: #fff;
}

.footer-col-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f38814;
    display: inline-block;
}

.footer-phone {
    font-size: 22px;
    font-weight: 800;
    color: #f38814;
    margin-bottom: 10px;
    display: block;
}

.footer-konsultasi-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-footer-outline {
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: all 0.2s;
}

.btn-footer-outline:hover {
    border-color: #f38814;
    color: #f38814;
}

.footer-post {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-post img {
    width: 60px;
    height: 52px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
}

.footer-post a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    transition: color 0.2s;
    display: block;
    margin-bottom: 4px;
}

.footer-post a:hover {
    color: #f38814;
}

.footer-post-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-kontak-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-kontak-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 16px 0;
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: #f38814;
}

.footer-bottom a:hover {
    color: #ffa940;
}

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ============================================================
   NAV OVERLAY (mobile)
============================================================ */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.nav-overlay.open {
    display: block;
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: 0.1s;
}

.reveal-d2 {
    transition-delay: 0.2s;
}

.reveal-d3 {
    transition-delay: 0.3s;
}

.reveal-d4 {
    transition-delay: 0.4s;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */
@media (max-width: 1024px) {
    .layanan-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-photos {
        height: 380px;
        order: -1;
    }

    .factory-inner {
        grid-template-columns: 1fr;
    }

    .factory-text {
        padding: 60px 48px;
    }

    .factory-photo {
        height: 340px;
    }

    .galeri-inner {
        grid-template-columns: 1fr;
    }

    .galeri-text {
        padding: 48px;
        text-align: center;
    }

    .galeri-grid-wrap {
        padding: 20px 48px;
    }

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

    .harga-photo {
        display: none;
    }

    .harga-tier-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        gap: 36px;
    }
    
    .harga-tier-card--popular {
        transform: none;
    }
    
    .harga-tier-card--popular:hover {
        transform: translateY(-4px);
    }

    .testi-grid-v3 {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin: 48px auto 0;
        gap: 28px;
    }

    .testi-card-v3--top {
        transform: none;
    }

    .testi-card-v3--top:hover {
        transform: translateY(-6px);
    }

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

    .footer-top-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

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

    .pipeline-card--active {
        transform: none;
    }
    
    .pipeline-card--active:hover {
        transform: translateY(-6px);
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */
@media (max-width: 768px) {

    /* Topbar */
    .topbar-items {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .topbar-sep {
        display: none;
    }

    .topbar-item span {
        display: none;
    }

    /* Header */
    .header-inner {
        height: 60px;
    }

    .brand-logo-img {
        height: 38px;
    }

    .logo-text-brand {
        font-size: 18px;
    }

    /* Nav mobile */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 24px 40px;
        transition: right 0.35s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav.open {
        right: 0;
    }

    .nav-close {
        position: absolute;
        top: 24px;
        right: 24px;
        background: transparent;
        border: none;
        color: #111;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 0;
        z-index: 10;
    }

    .nav-close svg { width: 24px; height: 24px; }

    .nav-mobile-cta {
        display: block;
        margin-top: 32px;
        width: 100%;
    }

    .nav-mobile-cta .btn-hubungi {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 13px;
    }

    /* Hide desktop CTA in header on mobile */
    .header-right .btn-hubungi {
        display: none;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        padding: 13px 12px;
        font-size: 14px;
        width: 100%;
        border-radius: 4px;
    }

    .nav-link:hover {
        background: #fff8f0;
    }

    .nav-link.active::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-socials {
        display: none;
    }

    .btn-follow {
        font-size: 11px;
        padding: 8px 12px;
    }

    /* Hero */
    .hero {
        min-height: 420px;
    }

    .hero-price {
        font-size: 42px;
    }

    .hero-icon-thumb {
        width: 52px;
        height: 52px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-tagline {
        font-size: 14px;
    }



    .layanan-cards-grid {
        grid-template-columns: 1fr;
    }

    .l-card {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .l-card:last-child {
        border-bottom: none;
    }

    /* About */
    .about-photos {
        height: 300px;
    }

    .about-checklist {
        grid-template-columns: 1fr;
    }

    .about-ctas {
        flex-direction: column;
    }

    .btn-orange,
    .btn-orange-outline {
        text-align: center;
        justify-content: center;
    }

    /* Factory */
    .factory-text {
        padding: 48px 24px;
    }

    .factory-stats {
        flex-direction: column;
        gap: 20px;
    }

    /* Proses */
    .pipeline-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
        gap: 24px;
    }

    /* Galeri */
    .galeri-text {
        padding: 36px 24px;
    }

    .galeri-grid-wrap {
        padding: 16px 24px;
    }

    .galeri-grid {
        grid-template-rows: repeat(3, 120px);
    }

    /* Testi */
    .testi-section {
        padding: 60px 0;
    }

    .blog-section {
        margin-top: 40px;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-top-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-price {
        font-size: 34px;
    }

    .hero-price-row {
        flex-direction: column;
        gap: 8px;
    }

    .pipeline-grid {
        grid-template-columns: 1fr;
    }

    .galeri-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 110px);
    }

    .layanan-full-grid {
        grid-template-columns: 1fr;
    }
}