/* =============================================
   JKR DESIGN SYSTEM — PRODUCTION CSS
   Jiwa Karya Rental · Sewa Excavator Bali
   ============================================= */

/* === TOKENS === */
:root {
  --red:       #CC1A1A;
  --red-dark:  #A81414;
  --red-light: rgba(204,26,26,0.08);
  --navy:      #1B2B5E;
  --navy-dark: #13204A;
  --white:     #FFFFFF;
  --off-white: #F7F8FA;
  --slate-50:  #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0F172A;
  --text:      #111827;
  --text-muted:#64748B;

  --ff-head: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --ff-body: 'DM Sans', 'Inter', system-ui, sans-serif;

  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);

  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --max-w:  1160px;
  --nav-h:  64px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--ff-body); font-size: 16px; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5 { font-family: var(--ff-head); line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { line-height: 1.7; color: var(--slate-700); }
strong { font-weight: 600; color: var(--text); }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 96px 0; }

/* === GRID === */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }

/* === SECTION HEADER === */
.section-label { display: inline-block; font-family: var(--ff-head); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); background: var(--red-light); padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }
.section-title { font-family: var(--ff-head); color: var(--navy); margin-bottom: 16px; }
.section-title em { color: var(--red); font-style: normal; }
.section-desc { color: var(--slate-600); max-width: 560px; font-size: 1.05rem; }
.section-head { margin-bottom: 48px; }
.section-head--center { text-align: center; }
.section-head--center .section-desc { margin: 0 auto; }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.10); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo img { height: 40px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link { font-size: 0.9rem; font-weight: 500; color: var(--slate-700); padding: 8px 12px; border-radius: var(--r-sm); transition: var(--transition); white-space: nowrap; }
.nav-link:hover { color: var(--red); background: var(--red-light); }
.nav-link.active { color: var(--red); font-weight: 600; }
.nav-cta { margin-left: 8px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-body); font-size: 0.95rem; font-weight: 600; padding: 12px 24px; border-radius: var(--r-md); transition: var(--transition); text-decoration: none; white-space: nowrap; cursor: pointer; }
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(204,26,26,0.35); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27,43,94,0.35); }
.btn--outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.85); }
.btn--outline-white:hover { background: var(--white); color: var(--navy); }
.btn--ghost { background: transparent; color: var(--red); }
.btn--ghost:hover { background: var(--red-light); }
.btn--lg { font-size: 1.05rem; padding: 14px 32px; }
.btn--sm { font-size: 0.85rem; padding: 8px 16px; }
.btn--wa { background: #25D366; color: var(--white); }
.btn--wa:hover { background: #1da850; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
.btn--full { width: 100%; justify-content: center; }

/* === HERO === */
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2a4080 100%);
  display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/sany-sy75c-hero.jpg');
  background-size: cover; background-position: center;
  opacity: 0.12;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(204,26,26,0.15) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; padding: 64px 0 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); color: var(--white); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; }
.hero-badge::before { content: ''; display: block; width: 8px; height: 8px; background: #4ade80; border-radius: 50%; }
.hero h1 { color: var(--white); font-size: clamp(2.4rem, 6vw, 3.8rem); line-height: 1.1; margin-bottom: 20px; }
.hero h1 em { color: var(--red); font-style: normal; display: block; }
.hero-desc { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 540px; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); }
.hero-stat-num { font-family: var(--ff-head); font-size: 2rem; font-weight: 700; color: var(--white); }
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.82); margin-top: 2px; }

/* === TRUST STRIP === */
.trust-strip { background: var(--navy); padding: 18px 0; }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500; padding: 8px 24px; border-right: 1px solid rgba(255,255,255,0.15); }
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--red); flex-shrink: 0; }

/* === SERVICE CARDS === */
.service-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--r-lg); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.service-card:hover { border-color: var(--red); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card-img { height: 200px; overflow: hidden; position: relative; background: var(--slate-100); }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); background: var(--red-light); padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.service-card-title { font-family: var(--ff-head); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card-desc { font-size: 0.9rem; color: var(--slate-600); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.service-card-price { font-family: var(--ff-head); font-size: 1.1rem; color: var(--navy); font-weight: 700; margin-bottom: 16px; }
.service-card-price span { font-size: 0.8rem; font-weight: 400; color: var(--slate-600); }
.service-card-footer { display: flex; gap: 8px; margin-top: auto; }

/* === WHY CHOOSE === */
.why-card { padding: 28px; background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--r-lg); transition: var(--transition); }
.why-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); }
.why-card-icon { width: 48px; height: 48px; background: var(--red-light); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--red); margin-bottom: 16px; }
.why-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--slate-600); line-height: 1.6; }

/* === STATS BAR === */
.stats-section { background: var(--navy); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 24px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--ff-head); font-size: 2.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-num em { color: var(--red); font-style: normal; }
.stat-label { color: rgba(255,255,255,0.82); font-size: 0.85rem; margin-top: 8px; }

/* === PRICING TABLE === */
.price-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--r-lg); overflow: hidden; }
.price-card--featured { border-color: var(--red); box-shadow: 0 8px 32px rgba(204,26,26,0.15); }
.price-card-header { padding: 24px; background: var(--slate-50); border-bottom: 1px solid var(--slate-200); }
.price-card--featured .price-card-header { background: var(--red); }
.price-card--featured .price-card-header h3,
.price-card--featured .price-card-header p { color: var(--white); }
.price-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--white); color: var(--red); padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.price-amount { font-family: var(--ff-head); font-size: 2rem; font-weight: 700; color: var(--navy); }
.price-card--featured .price-amount { color: var(--white); }
.price-unit { font-size: 0.82rem; color: var(--slate-600); }
.price-card--featured .price-unit { color: rgba(255,255,255,0.90); }
.price-card-body { padding: 24px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--slate-100); font-size: 0.9rem; }
.price-row:last-child { border-bottom: none; }
.price-row-label { color: var(--slate-600); }
.price-row-val { font-weight: 600; color: var(--navy); }

/* === TESTIMONIAL === */
.testi-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--r-lg); padding: 28px; position: relative; }
.testi-stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote { color: var(--slate-700); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--ff-head); font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.testi-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.testi-role { font-size: 0.78rem; color: var(--slate-600); }

/* === FAQ === */
.faq-item { border: 1px solid var(--slate-200); border-radius: var(--r-md); overflow: hidden; margin-bottom: 8px; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; background: var(--white); text-align: left; font-weight: 600; color: var(--navy); font-size: 0.95rem; cursor: pointer; transition: var(--transition); gap: 12px; }
.faq-q:hover { background: var(--slate-50); }
.faq-q[aria-expanded="true"] { background: var(--red-light); color: var(--red); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--slate-500); transition: transform var(--transition); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--red); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; }
.faq-a.open { padding: 16px 20px 20px; max-height: 600px; }
.faq-a p { font-size: 0.9rem; color: var(--slate-600); line-height: 1.7; }

/* === GALLERY === */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.gallery-item { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%); opacity: 0; transition: var(--transition); }
.gallery-item:hover::after { opacity: 1; }

/* === PROCESS STEPS === */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px); height: 2px; background: var(--slate-200); z-index: 0; }
.step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num { width: 56px; height: 56px; background: var(--white); border: 2px solid var(--slate-200); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--ff-head); font-size: 1.3rem; font-weight: 700; color: var(--navy); transition: var(--transition); }
.step:hover .step-num { border-color: var(--red); background: var(--red); color: var(--white); }
.step h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.step p { font-size: 0.82rem; color: var(--slate-600); }

/* === CTA SECTION === */
.cta-section { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; right: -10%; top: -30%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(204,26,26,0.15) 0%, transparent 70%); }
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.92); font-size: 1.05rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === STICKY WA BUTTON === */
.sticky-wa { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; align-items: center; gap: 10px; background: #25D366; color: var(--white); font-weight: 700; font-size: 0.9rem; padding: 12px 20px 12px 14px; border-radius: 50px; box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: var(--transition); text-decoration: none; }
.sticky-wa:hover { background: #1da850; transform: scale(1.04); }
.sticky-wa svg { flex-shrink: 0; }
@media (max-width: 640px) { .sticky-wa span { display: none; } .sticky-wa { padding: 14px; border-radius: 50%; } }

/* === BREADCRUMB === */
.breadcrumb { padding: 16px 0; background: var(--slate-50); border-bottom: 1px solid var(--slate-200); }
.breadcrumb-list { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--slate-500); flex-wrap: wrap; }
.breadcrumb-list a { color: var(--slate-600); transition: var(--transition); }
.breadcrumb-list a:hover { color: var(--red); }
.breadcrumb-list .sep { color: var(--slate-500); }
.breadcrumb-list .current { color: var(--navy); font-weight: 500; }

/* === PAGE HERO (inner pages) === */
.page-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: calc(var(--nav-h) + 48px) 0 56px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(204,26,26,0.12) 0%, transparent 70%); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.92); max-width: 560px; font-size: 1.05rem; }

/* === SPEC TABLE === */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; font-size: 0.88rem; font-weight: 600; }
.spec-table td { padding: 11px 16px; border-bottom: 1px solid var(--slate-100); font-size: 0.9rem; color: var(--slate-700); }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(even) td { background: var(--slate-50); }

/* === CONTACT FORM === */
.contact-form { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--r-lg); padding: 36px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--slate-200); border-radius: var(--r-md); font-size: 0.95rem; color: var(--text); background: var(--white); transition: var(--transition); }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,26,26,0.08); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--slate-500); }

/* === FOOTER === */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand-logo img { height: 38px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand-desc { font-size: 0.88rem; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; color: rgba(255,255,255,0.88); margin-bottom: 10px; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.footer-col-title { font-family: var(--ff-head); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.88); margin-bottom: 18px; }
.footer-link { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.88); padding: 4px 0; transition: var(--transition); }
.footer-link:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.78); }
.footer-nav { display: flex; gap: 20px; }
.footer-nav a { font-size: 0.82rem; color: rgba(255,255,255,0.78); transition: var(--transition); }
.footer-nav a:hover { color: var(--white); }

/* === ALERT / NOTICE === */
.notice { padding: 14px 18px; border-radius: var(--r-md); font-size: 0.9rem; display: flex; align-items: flex-start; gap: 10px; }
.notice--info { background: #EFF6FF; border: 1px solid #BFDBFE; color: #1E40AF; }
.notice--success { background: #F0FDF4; border: 1px solid #BBF7D0; color: #15803D; }
.notice--warn { background: #FFFBEB; border: 1px solid #FDE68A; color: #92400E; }

/* === AVAILABILITY BADGE === */
.badge-avail { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.badge-avail--green { background: #F0FDF4; color: #15803D; border: 1px solid #BBF7D0; }
.badge-avail::before { content: ''; display: inline-block; width: 7px; height: 7px; background: currentColor; border-radius: 50%; }

/* === HIGHLIGHT BOX === */
.highlight-box { background: var(--slate-50); border-left: 4px solid var(--red); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 20px 24px; }
.highlight-box h4 { color: var(--navy); margin-bottom: 6px; }
.highlight-box p { font-size: 0.9rem; color: var(--slate-600); }

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 24px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 56px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .nav-menu { display: none; position: fixed; inset: var(--nav-h) 0 0 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 20px; overflow-y: auto; gap: 4px; z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: var(--r-md); font-size: 1rem; }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  .nav-hamburger { display: flex; }
  .hero-stats { gap: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .trust-item { padding: 6px 14px; font-size: 0.8rem; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .section-head { margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-bottom: 0; }
  .hero-content { padding: 40px 0 56px; }
  .trust-strip-inner { flex-direction: column; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }
  .contact-form { padding: 24px 20px; }
  .price-card-header, .price-card-body { padding: 18px; }
}

/* === PRINT === */
@media print { .sticky-wa, .navbar { display: none; } }

/* =============================================
   EXTENDED STYLES — Hero, Pricing, Process, Area
   ============================================= */

/* --- HERO 2-COLUMN LAYOUT --- */
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 80px 0 72px;
}
.hero-content { padding: 0; }

.hero-lead {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.75;
  margin: 0 0 0 0;
  max-width: 520px;
}

/* Hero price pills */
.hero-prices {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 28px;
}
.hero-price-item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 148px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.hero-price-item:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
}
.hero-price-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  line-height: 1;
}
.hero-price-val {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

/* Hero CTA row */
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 18px;
}

/* Hero footnote */
.hero-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
  line-height: 1.5;
}

/* Hero right column image */
.hero-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: radial-gradient(ellipse at center, rgba(204,26,26,0.2) 0%, transparent 70%);
  z-index: 0;
  border-radius: 24px;
}
.hero-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* --- PRICE TABLE (homepage & harga page) --- */
.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 560px;
}
.price-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--slate-100);
  font-size: 0.95rem;
  color: var(--slate-700);
  vertical-align: middle;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover td { background: var(--slate-50); }
.price-table td strong { color: var(--navy); }
.price-highlight {
  color: var(--red);
  font-weight: 700;
  font-family: var(--ff-head);
  font-size: 1.1rem;
}

/* --- PROCESS STEPS (SOP section) --- */
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  transition: var(--transition);
}
.process-step:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.process-step .step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  border: none;
  box-shadow: 0 4px 12px rgba(204,26,26,0.3);
}
.process-step h4 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 0.95rem;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin: 0;
}

/* --- AREA CARDS (index homepage grid) --- */
.area-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition);
  text-decoration: none;
}
.area-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.area-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.area-card p {
  font-size: 0.85rem;
  color: var(--slate-600);
  margin: 0;
  line-height: 1.5;
}
.area-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  margin-top: 8px;
  display: inline-block;
  transition: var(--transition);
}
.area-card:hover .area-link {
  padding-left: 4px;
}

/* --- PRICING CARD REFINEMENTS --- */
.price-card-header h3 { color: var(--navy); margin: 0 0 8px; }
.price-card--featured .price-card-header h3 { color: var(--white); }
.price-row-label { color: var(--slate-600); font-size: 0.88rem; }
.price-row-val { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.price-note {
  font-size: 0.8rem;
  color: var(--slate-600);
  font-style: italic;
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* --- SECTION HEADER UTILITIES --- */
.sec-label {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.sec-title {
  font-family: var(--ff-head);
  color: var(--navy);
  margin-bottom: 12px;
}
.sec-desc {
  color: var(--slate-600);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
}
.sec-desc--center { text-align: center; margin-left: auto; margin-right: auto; }

/* --- RESPONSIVE ADDITIONS --- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 64px 0 56px; }
  .hero-img { display: none; }
}
@media (max-width: 768px) {
  .hero-prices { gap: 10px; }
  .hero-price-item { min-width: 130px; padding: 12px 16px; }
  .hero-price-val { font-size: 1.3rem; }
  .process-step { padding: 16px 18px; gap: 16px; }
  .price-table td, .price-table th { padding: 12px 14px; }
}
@media (max-width: 480px) {
  .hero-prices { flex-direction: column; }
  .hero-price-item { min-width: 0; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
