/*
Theme Name: HalalCert Pro by Kang Lintang
Theme URI: https://lintang.id
Author: Kang Lintang
Author URI: https://lintang.id
Description: Theme WordPress premium untuk jasa sertifikasi halal. Desain startup modern 2025, responsive, SEO-ready, dan lengkap dengan auto-setup halaman.
Version: 3.0.0
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: halalcert-pro
*/

/* =====================================================================
   TOKENS — Design System
   ===================================================================== */
:root {
  /* Brand Colors */
  --green:         #16a34a;
  --green-dark:    #15803d;
  --green-darker:  #166534;
  --green-light:   #dcfce7;
  --green-xlight:  #f0fdf4;
  --gold:          #ca8a04;
  --gold-mid:      #d97706;
  --gold-light:    #fef9c3;
  --gold-xlight:   #fefce8;

  /* Neutrals */
  --ink:           #0a0f1e;
  --ink-2:         #111827;
  --ink-3:         #1f2937;
  --gray-700:      #374151;
  --gray-600:      #4b5563;
  --gray-500:      #6b7280;
  --gray-400:      #9ca3af;
  --gray-300:      #d1d5db;
  --gray-200:      #e5e7eb;
  --gray-100:      #f3f4f6;
  --gray-50:       #f9fafb;
  --white:         #ffffff;

  /* Surfaces */
  --surface:       #ffffff;
  --surface-2:     #f9fafb;
  --surface-dark:  #0c1220;

  /* Typography */
  --font:          'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 40px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.16), 0 8px 16px rgba(0,0,0,.08);
  --shadow-green: 0 8px 32px rgba(22,163,74,.25);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --t-fast: 160ms;
  --t-mid:  240ms;
  --t-slow: 400ms;

  /* Container */
  --max-w: 1200px;
  --px:    1.5rem;
}

/* =====================================================================
   RESET
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink-2);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, textarea, select { font-family: var(--font); }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; letter-spacing: -.02em; font-weight: 700; }

/* =====================================================================
   TYPOGRAPHY
   ===================================================================== */
.text-xs   { font-size: .75rem; }
.text-sm   { font-size: .875rem; }
.text-base { font-size: 1rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; }
.text-3xl  { font-size: 1.875rem; }
.text-4xl  { font-size: 2.25rem; }
.text-muted { color: var(--gray-500); }

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, var(--green) 0%, #22c55e 50%, var(--gold-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section labels */
.label {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green);
  background: var(--green-xlight); border: 1px solid var(--green-light);
  padding: .3rem .875rem; border-radius: var(--r-full);
}
.label-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.4; transform:scale(.65); }
}

/* =====================================================================
   LAYOUT
   ===================================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}
.section      { padding: 6rem 0; }
.section-sm   { padding: 4rem 0; }
.section-xs   { padding: 2.5rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .75rem 1.75rem; border-radius: var(--r-md);
  font-size: .9375rem; font-weight: 600; line-height: 1;
  transition: all var(--t-mid) var(--ease); cursor: pointer;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background var(--t-fast);
}
.btn:hover::after { background: rgba(255,255,255,.08); }
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--green); color: var(--white);
  box-shadow: 0 1px 2px rgba(0,0,0,.15), 0 0 0 1px var(--green-dark) inset;
}
.btn-primary:hover { background: var(--green-dark); box-shadow: var(--shadow-green), 0 0 0 1px var(--green-darker) inset; }

.btn-gold {
  background: var(--gold-mid); color: var(--white);
}
.btn-gold:hover { background: var(--gold); }

.btn-ghost {
  background: rgba(255,255,255,.1); color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); }

.btn-outline {
  background: transparent; color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }

.btn-outline-dark {
  background: transparent; color: var(--ink-2);
  border: 1.5px solid var(--gray-200);
}
.btn-outline-dark:hover { border-color: var(--green); color: var(--green); }

.btn-sm  { padding: .55rem 1.125rem; font-size: .8125rem; border-radius: var(--r-sm); }
.btn-lg  { padding: .9375rem 2.25rem; font-size: 1.0625rem; border-radius: var(--r-lg); }
.btn-xl  { padding: 1.125rem 2.75rem; font-size: 1.125rem; border-radius: var(--r-lg); }
.btn-block { display: flex; width: 100%; }

.btn-icon::before { font-size: 1.1em; }
.btn-arr { position: relative; }
.btn-arr .arr { transition: transform var(--t-fast) var(--ease); }
.btn-arr:hover .arr { transform: translateX(4px); }

/* =====================================================================
   HEADER / NAVIGATION
   ===================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
  border-bottom: 1px solid transparent;
}
.site-header.solid {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.site-header.dark-mode {
  background: transparent;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 2rem;
}
.site-logo {
  display: flex; align-items: center; gap: .625rem;
  font-size: 1.1875rem; font-weight: 800; color: var(--white);
  flex-shrink: 0; transition: color var(--t-fast);
}
.site-header.solid .site-logo { color: var(--ink-2); }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; box-shadow: 0 2px 8px rgba(22,163,74,.35);
}
.logo-mark svg { color: var(--white); }
.site-logo img { height: 36px; width: auto; }

.primary-nav {
  display: flex; align-items: center; gap: 0;
  flex: 1 1 auto; justify-content: center;
  overflow: visible;                 /* TIDAK PERNAH clip */
}
.primary-nav li { list-style: none; overflow: visible; }  /* WordPress <li> wrapper */
.primary-nav a {
  display: block;
  padding: .5rem 1rem;               /* padding kanan lebih lega */
  border-radius: var(--r-sm);
  font-size: .9rem; font-weight: 500;
  letter-spacing: .01em;             /* sedikit spasi antar huruf */
  white-space: nowrap;
  color: rgba(255,255,255,.8);
  transition: all var(--t-fast);
  overflow: visible;                 /* huruf tidak dipotong */
}
.primary-nav a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.site-header.solid .primary-nav a { color: var(--gray-600); }
.site-header.solid .primary-nav a:hover { color: var(--ink-2); background: var(--gray-100); }
.primary-nav a.active { color: var(--white); background: rgba(255,255,255,.12); }
.site-header.solid .primary-nav a.active { color: var(--green); background: var(--green-xlight); }

/* Dropdown */
.nav-has-children { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + .5rem); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px; background: var(--white); border-radius: var(--r-md);
  box-shadow: var(--shadow-xl); border: 1px solid var(--gray-100);
  padding: .375rem; opacity: 0; visibility: hidden;
  transition: all var(--t-mid); pointer-events: none;
}
.nav-has-children:hover .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown a {
  display: block; padding: .5rem .875rem; border-radius: var(--r-sm);
  font-size: .875rem; color: var(--gray-600) !important; background: transparent !important;
}
.nav-dropdown a:hover { color: var(--green) !important; background: var(--green-xlight) !important; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: .75rem; }
.header-wa {
  display: flex; align-items: center; gap: .375rem;
  background: rgba(255,255,255,.12); color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  padding: .45rem 1rem; border-radius: var(--r-full);
  font-size: .8375rem; font-weight: 600;
  backdrop-filter: blur(8px);
  transition: all var(--t-fast);
}
.header-wa:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.4); }
.site-header.solid .header-wa { background: var(--green-xlight); color: var(--green); border-color: var(--green-light); }
.site-header.solid .header-wa:hover { background: var(--green-light); }

/* Hamburger */
.nav-hamburger {
  display: none; width: 40px; height: 40px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.site-header.solid .nav-hamburger { background: var(--gray-100); border-color: var(--gray-200); }
.nav-hamburger span {
  display: block; width: 18px; height: 2px; border-radius: 1px;
  background: var(--white); transition: all var(--t-mid);
}
.site-header.solid .nav-hamburger span { background: var(--ink-2); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 100vw);
  background: var(--white); z-index: 950; transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
  box-shadow: var(--shadow-xl); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 940; opacity: 0; pointer-events: none;
  transition: opacity var(--t-mid);
  backdrop-filter: blur(4px);
}
.drawer-overlay.show { opacity: 1; pointer-events: auto; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; }
.drawer-logo { font-size: 1.125rem; font-weight: 800; color: var(--ink-2); display: flex; align-items: center; gap: .5rem; }
.drawer-close {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gray-500); cursor: pointer;
  transition: background var(--t-fast);
}
.drawer-close:hover { background: var(--gray-200); }
.drawer-nav { display: flex; flex-direction: column; gap: .25rem; }
.drawer-nav a {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1rem; border-radius: var(--r-md);
  font-size: .9375rem; font-weight: 600; color: var(--ink-2);
  transition: all var(--t-fast);
}
.drawer-nav a:hover { background: var(--green-xlight); color: var(--green); }
.drawer-cta { display: flex; flex-direction: column; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--gray-100); }

/* =====================================================================
   HERO SECTION
   ===================================================================== */
.hero {
  background: var(--ink);
  padding: 9rem 0 6rem;
  position: relative; overflow: hidden; min-height: 100dvh;
  display: flex; align-items: center;
}

/* Background layers */
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 60% 45%, rgba(22,163,74,.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 95% 85%, rgba(202,138,4,.08) 0%, transparent 50%),
    radial-gradient(ellipse 30% 35% at 5% 15%, rgba(22,163,74,.07) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 0%, black 20%, transparent 75%);
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; position: relative;
}

/* Pill/badge */
.hero-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(22,163,74,.15); color: rgba(255,255,255,.9);
  border: 1px solid rgba(22,163,74,.3);
  padding: .35rem .875rem .35rem .5rem; border-radius: var(--r-full);
  font-size: .8rem; font-weight: 600; letter-spacing: .03em;
  margin-bottom: 1.5rem;
}
.hero-pill-badge {
  background: var(--green); color: var(--white);
  padding: .15rem .55rem; border-radius: var(--r-full);
  font-size: .7rem; font-weight: 700;
}

/* Hero headings */
.hero-eyebrow {
  font-size: .8125rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green); margin-bottom: .75rem;
}
.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.03em;
  color: var(--white); margin-bottom: 1.375rem;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #4ade80 0%, #86efac 50%, #bbf7d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.0625rem; line-height: 1.75;
  color: rgba(255,255,255,.6); max-width: 480px; margin-bottom: 2.25rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-social-proof {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08);
}
.avatars { display: flex; }
.avatars .av {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--ink); margin-right: -8px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 700; color: var(--white);
}
.hero-proof-text { font-size: .8375rem; color: rgba(255,255,255,.5); }
.hero-proof-text strong { color: rgba(255,255,255,.85); }

/* Hero illustration */
.hero-visual { position: relative; }
.hero-illustration { width: 100%; max-width: 560px; margin-left: auto; }

/* =====================================================================
   METRICS / PROOF BAR
   ===================================================================== */
.metrics-section {
  background: var(--green);
  padding: 3rem 0;
  position: relative; overflow: hidden;
}
.metrics-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--green-dark) 0%, var(--green) 40%, var(--green-dark) 100%);
}
.metrics-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.metric-item {
  padding: 1.5rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.metric-item:last-child { border-right: none; }
.metric-num {
  font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800;
  color: var(--white); line-height: 1; margin-bottom: .375rem;
  letter-spacing: -.03em;
}
.metric-label { font-size: .875rem; color: rgba(255,255,255,.7); font-weight: 500; }

/* =====================================================================
   TRUSTED BY / LOGO STRIP
   ===================================================================== */
.trusted-section { background: var(--gray-50); padding: 2.5rem 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.trusted-inner { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; justify-content: center; }
.trusted-label { font-size: .8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); white-space: nowrap; }
.trusted-logos { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; justify-content: center; }
.trusted-logo { opacity: .45; transition: opacity var(--t-fast); filter: grayscale(1); }
.trusted-logo:hover { opacity: .8; }
.trusted-chip {
  display: flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1px solid var(--gray-200);
  padding: .5rem 1rem; border-radius: var(--r-full);
  font-size: .875rem; font-weight: 700; color: var(--gray-700);
  box-shadow: var(--shadow-xs);
}
.trusted-chip-icon { font-size: 1.1rem; }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services-section { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.25rem; margin-top: .5rem;
}
.service-card {
  position: relative; border-radius: var(--r-xl);
  border: 1px solid var(--gray-100);
  padding: 2rem; background: var(--white);
  transition: all var(--t-mid) var(--ease);
  overflow: hidden; cursor: pointer;
  display: flex; flex-direction: column; gap: 1rem;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), #22c55e);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--green-light);
  box-shadow: 0 0 0 4px rgba(22,163,74,.06), var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card.featured {
  background: var(--ink-2); border-color: transparent;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset;
}
.service-card.featured::before { transform: scaleX(1); }
.service-card.featured:hover { box-shadow: 0 0 0 4px rgba(22,163,74,.15), var(--shadow-xl); }
.service-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
  background: var(--green-xlight); border: 1px solid var(--green-light);
  transition: all var(--t-mid);
}
.service-card.featured .service-icon-wrap { background: rgba(22,163,74,.2); border-color: rgba(22,163,74,.3); }
.service-card:hover .service-icon-wrap { background: var(--green-light); }
.service-badge {
  display: inline-block; font-size: .6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  background: var(--green-xlight); color: var(--green);
  padding: .2rem .625rem; border-radius: 4px;
  align-self: flex-start;
}
.service-card.featured .service-badge { background: rgba(22,163,74,.2); color: #4ade80; }
.service-title {
  font-size: 1.0625rem; font-weight: 700;
  color: var(--ink-2); line-height: 1.3;
}
.service-card.featured .service-title { color: var(--white); }
.service-desc {
  font-size: .9rem; color: var(--gray-500); line-height: 1.7; flex: 1;
}
.service-card.featured .service-desc { color: rgba(255,255,255,.6); }
.service-features { display: flex; flex-direction: column; gap: .375rem; }
.service-feat {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8375rem; color: var(--gray-500);
}
.service-feat::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.service-card.featured .service-feat { color: rgba(255,255,255,.65); }
.service-card.featured .service-feat::before { color: #4ade80; }
.service-cta {
  display: flex; align-items: center; gap: .375rem;
  font-size: .875rem; font-weight: 600; color: var(--green);
  margin-top: .25rem;
}
.service-card.featured .service-cta { color: #4ade80; }
.service-cta-arrow { transition: transform var(--t-fast); }
.service-card:hover .service-cta-arrow { transform: translateX(5px); }

/* =====================================================================
   WHY / FEATURES
   ===================================================================== */
.why-section { background: var(--surface-2); }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.bento-card {
  border-radius: var(--r-xl); padding: 2rem;
  border: 1px solid var(--gray-100); background: var(--white);
  transition: all var(--t-mid);
  position: relative; overflow: hidden;
}
.bento-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-md); }
.bento-card.span-2 { grid-column: span 2; }
.bento-card.dark { background: var(--ink-2); border-color: transparent; color: var(--white); }
.bento-card.green { background: var(--green); border-color: transparent; color: var(--white); }
.bento-num {
  font-size: 3.5rem; font-weight: 800; line-height: 1;
  color: var(--green); letter-spacing: -.03em; margin-bottom: .5rem;
}
.bento-card.dark .bento-num { color: #4ade80; }
.bento-card.green .bento-num { color: var(--white); }
.bento-title { font-size: 1.0625rem; font-weight: 700; color: var(--ink-2); margin-bottom: .5rem; }
.bento-card.dark .bento-title { color: var(--white); }
.bento-card.green .bento-title { color: var(--white); }
.bento-desc { font-size: .9rem; color: var(--gray-500); line-height: 1.65; }
.bento-card.dark .bento-desc { color: rgba(255,255,255,.6); }
.bento-card.green .bento-desc { color: rgba(255,255,255,.75); }
.bento-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--green-xlight); border: 1px solid var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.bento-card.dark .bento-icon { background: rgba(22,163,74,.2); border-color: rgba(22,163,74,.3); }
.bento-card.green .bento-icon { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.2); }

/* =====================================================================
   PROCESS
   ===================================================================== */
.process-section { background: var(--white); }
.process-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; position: relative; margin-top: 1rem;
}
.process-connector {
  position: absolute; top: 2.25rem; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--green) 0, var(--green) 8px,
    transparent 8px, transparent 18px
  );
  z-index: 0;
}
.process-step {
  position: relative; z-index: 1; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.process-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--green);
  color: var(--green); font-size: 1.1875rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-mid); flex-shrink: 0;
}
.process-step:hover .process-num { background: var(--green); color: var(--white); box-shadow: var(--shadow-green); }
.process-icon { font-size: 2rem; }
.process-title { font-size: 1rem; font-weight: 700; color: var(--ink-2); margin-bottom: .25rem; }
.process-desc { font-size: .875rem; color: var(--gray-500); line-height: 1.65; }
.process-time {
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--green); background: var(--green-xlight); border: 1px solid var(--green-light);
  padding: .2rem .65rem; border-radius: 4px;
}

/* =====================================================================
   ABOUT
   ===================================================================== */
.about-section { background: var(--surface-2); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-visual { position: relative; }
.about-card-main {
  border-radius: var(--r-2xl); overflow: hidden;
  aspect-ratio: 4/5; background: var(--ink);
  box-shadow: var(--shadow-xl); position: relative;
  display: flex; align-items: flex-end;
}
.about-card-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,.85) 0%, transparent 50%);
}
.about-card-stat {
  position: relative; padding: 2rem;
  display: flex; align-items: center; gap: 1rem;
}
.about-stat-num { font-size: 2.25rem; font-weight: 800; color: var(--white); line-height: 1; }
.about-stat-label { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.4; }
.about-badge {
  position: absolute; top: -1.5rem; right: -1.5rem;
  background: var(--gold-mid); color: var(--white);
  border-radius: var(--r-xl); padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg); text-align: center;
  min-width: 120px;
}
.about-badge-num { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge-text { font-size: .75rem; font-weight: 600; opacity: .9; margin-top: .25rem; }

.about-content .label { margin-bottom: 1.25rem; }
.about-content h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: var(--ink-2); margin-bottom: 1.125rem; }
.about-content p { color: var(--gray-500); line-height: 1.8; margin-bottom: 1.75rem; }
.about-checks { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.about-check {
  display: flex; align-items: flex-start; gap: .875rem;
  font-size: .9375rem; color: var(--ink-3);
}
.check-dot {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  margin-top: .1rem;
}
.check-dot svg { color: var(--white); width: 12px; height: 12px; }
.about-nums {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem; margin-top: 2rem;
  padding: 1.5rem; background: var(--white);
  border-radius: var(--r-lg); border: 1px solid var(--gray-100);
}
.about-num-item { text-align: center; }
.about-num-val { font-size: 1.625rem; font-weight: 800; color: var(--green); line-height: 1; }
.about-num-label { font-size: .75rem; color: var(--gray-400); font-weight: 500; margin-top: .25rem; }

/* =====================================================================
   COVERAGE / DARK SECTION
   ===================================================================== */
.coverage-section {
  background: var(--ink); position: relative; overflow: hidden;
}
.coverage-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(22,163,74,.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(202,138,4,.07) 0%, transparent 50%);
}
.coverage-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; position: relative; }
.coverage-content .label { background: rgba(22,163,74,.15); border-color: rgba(22,163,74,.3); }
.coverage-content h2 { color: var(--white); }
.coverage-content p { color: rgba(255,255,255,.55); }
.coverage-cities { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.city-pill {
  display: flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.1);
  padding: .5rem 1rem; border-radius: var(--r-full);
  font-size: .875rem; font-weight: 500;
  transition: all var(--t-fast); cursor: default;
}
.city-pill:hover { background: rgba(22,163,74,.2); border-color: rgba(22,163,74,.4); color: var(--white); }
.city-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.coverage-map {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/3; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testi-section { background: var(--surface-2); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.testi-card {
  background: var(--white); border-radius: var(--r-xl);
  border: 1px solid var(--gray-100); padding: 1.875rem;
  display: flex; flex-direction: column; gap: .875rem;
  transition: all var(--t-mid);
}
.testi-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-card.featured { background: var(--ink-2); border-color: transparent; }
.testi-rating { color: var(--gold-mid); display: flex; gap: .2rem; font-size: .9rem; }
.testi-quote {
  font-size: .9375rem; color: var(--gray-700); line-height: 1.75;
  font-style: italic; flex: 1; position: relative;
}
.testi-card.featured .testi-quote { color: rgba(255,255,255,.75); }
.testi-quote::before { content: '"'; font-size: 3rem; color: var(--green-light); line-height: .5; position: absolute; top: -.5rem; left: -.75rem; font-style: normal; }
.testi-card.featured .testi-quote::before { color: rgba(22,163,74,.25); }
.testi-author { display: flex; align-items: center; gap: .875rem; padding-top: .875rem; border-top: 1px solid var(--gray-100); }
.testi-card.featured .testi-author { border-top-color: rgba(255,255,255,.08); }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 700; color: var(--white);
}
.testi-name { font-weight: 700; font-size: .9375rem; color: var(--ink-2); }
.testi-card.featured .testi-name { color: var(--white); }
.testi-role { font-size: .8rem; color: var(--gray-500); }
.testi-card.featured .testi-role { color: rgba(255,255,255,.5); }
.testi-tag {
  margin-left: auto; font-size: .7rem; font-weight: 700;
  background: var(--green-xlight); color: var(--green);
  padding: .2rem .625rem; border-radius: 4px; white-space: nowrap;
  flex-shrink: 0;
}
.testi-card.featured .testi-tag { background: rgba(22,163,74,.2); color: #4ade80; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: .625rem; }
.faq-item {
  border: 1px solid var(--gray-100); border-radius: var(--r-lg);
  overflow: hidden; transition: border-color var(--t-fast);
}
.faq-item.open { border-color: var(--green); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.125rem 1.375rem; gap: 1rem; cursor: pointer;
  font-size: .9375rem; font-weight: 600; color: var(--ink-2);
  user-select: none; background: var(--white);
  transition: background var(--t-fast);
}
.faq-item.open .faq-q { background: var(--green-xlight); color: var(--green); }
.faq-chevron {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 6px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; transition: all var(--t-mid);
}
.faq-item.open .faq-chevron { background: var(--green); color: var(--white); transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: .9rem; color: var(--gray-500); line-height: 1.75;
  transition: max-height .32s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: .25rem 1.375rem 1.375rem; }

.faq-sidebar {
  position: sticky; top: 6rem;
  background: var(--ink-2); border-radius: var(--r-2xl);
  padding: 2.5rem; color: var(--white);
}
.faq-sidebar h3 { color: #4ade80; font-size: 1.375rem; margin-bottom: .75rem; }
.faq-sidebar p { color: rgba(255,255,255,.65); font-size: .9375rem; margin-bottom: 1.75rem; line-height: 1.75; }
.faq-contacts { display: flex; flex-direction: column; gap: .625rem; }
.faq-contact {
  display: flex; align-items: center; gap: .875rem;
  padding: .875rem 1.125rem; border-radius: var(--r-md);
  background: rgba(255,255,255,.07); color: var(--white);
  font-size: .9rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.08);
  transition: all var(--t-fast);
}
.faq-contact:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.2); }
.faq-contact-icon { font-size: 1.25rem; flex-shrink: 0; }

/* =====================================================================
   BLOG
   ===================================================================== */
.blog-section { background: var(--surface-2); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card {
  background: var(--white); border-radius: var(--r-xl);
  border: 1px solid var(--gray-100); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--t-mid);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gray-200); }
.blog-img {
  aspect-ratio: 16/9; background: var(--green-xlight);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; overflow: hidden; flex-shrink: 0;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--green); margin-bottom: .625rem;
}
.blog-title { font-size: 1.0625rem; font-weight: 700; color: var(--ink-2); line-height: 1.4; margin-bottom: .625rem; }
.blog-title a { color: inherit; transition: color var(--t-fast); }
.blog-title a:hover { color: var(--green); }
.blog-excerpt { font-size: .875rem; color: var(--gray-500); line-height: 1.65; flex: 1; }
.blog-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1rem; padding-top: .875rem; border-top: 1px solid var(--gray-100);
  font-size: .8125rem; color: var(--gray-400);
}
.blog-read { color: var(--green); font-weight: 600; display: flex; align-items: center; gap: .2rem; transition: gap var(--t-fast); }
.blog-card:hover .blog-read { gap: .45rem; }

/* =====================================================================
   CTA SECTION
   ===================================================================== */
.cta-section {
  background: var(--green-darker);
  position: relative; overflow: hidden;
  padding: 6rem 0;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(74,222,128,.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(202,138,4,.1) 0%, transparent 55%);
}
.cta-inner { text-align: center; position: relative; max-width: 700px; margin: 0 auto; }
.cta-inner .label { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.2); }
.cta-title {
  font-size: clamp(1.875rem, 4.5vw, 3rem); font-weight: 800;
  color: var(--white); line-height: 1.15; margin: 1.25rem 0;
  letter-spacing: -.025em;
}
.cta-desc { color: rgba(255,255,255,.7); font-size: 1.0625rem; margin-bottom: 2.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-note { margin-top: 1.5rem; font-size: .8125rem; color: rgba(255,255,255,.45); }
.cta-note strong { color: rgba(255,255,255,.7); }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-section { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: var(--surface-2); border: 1px solid var(--gray-100);
  border-radius: var(--r-lg); padding: 1.25rem 1.375rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: all var(--t-mid);
}
.contact-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-sm); background: var(--white); }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--green-xlight); border: 1px solid var(--green-light);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-400); font-weight: 600; margin-bottom: .2rem; }
.contact-value { font-size: .9375rem; font-weight: 600; color: var(--ink-2); }

/* Form */
.form-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r-2xl); padding: 2.25rem;
  box-shadow: var(--shadow-md);
}
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.125rem; }
.form-label { font-size: .875rem; font-weight: 600; color: var(--ink-2); margin-bottom: .5rem; display: block; }
.form-label .req { color: var(--green); margin-left: .2rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: .75rem 1rem; border-radius: var(--r-md);
  border: 1.5px solid var(--gray-200); background: var(--surface-2);
  font-size: .9375rem; color: var(--ink-2); font-family: var(--font);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--green); background: var(--white);
  box-shadow: 0 0 0 4px rgba(22,163,74,.08);
}
.form-textarea { resize: vertical; min-height: 110px; }
#form-feedback {
  padding: .875rem 1rem; border-radius: var(--r-md);
  font-size: .9rem; font-weight: 500; margin-bottom: .875rem;
  display: none;
}
#form-feedback.ok { background: var(--green-xlight); color: var(--green-darker); border: 1px solid var(--green-light); display: block; }
#form-feedback.err { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; display: block; }
.form-note { font-size: .8rem; color: var(--gray-400); margin-top: .75rem; text-align: center; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: #080e1c; color: rgba(255,255,255,.55); }
.footer-top { padding: 5rem 0 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand { }
.footer-logo-wrap { display: flex; align-items: center; gap: .625rem; margin-bottom: 1.125rem; }
.footer-logo-text { font-size: 1.1875rem; font-weight: 800; color: var(--white); }
.footer-logo-by { font-size: .75rem; color: rgba(255,255,255,.3); font-weight: 400; margin-left: .25rem; }
.footer-desc { font-size: .875rem; line-height: 1.8; color: rgba(255,255,255,.45); max-width: 280px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: .5rem; }
.footer-social {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55);
  transition: all var(--t-fast);
}
.footer-social:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col-title { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--white); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.45); transition: color var(--t-fast); line-height: 1.5; }
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .625rem;
  font-size: .875rem; color: rgba(255,255,255,.45); margin-bottom: .625rem; line-height: 1.55;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: .15rem; opacity: .5; }
.footer-contact-item a { color: inherit; transition: color var(--t-fast); }
.footer-contact-item a:hover { color: rgba(255,255,255,.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.footer-copy { font-size: .8125rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .8125rem; color: rgba(255,255,255,.3); transition: color var(--t-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* =====================================================================
   FLOATING BUTTONS
   ===================================================================== */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 800;
  display: flex; align-items: center; gap: .75rem; flex-direction: row-reverse;
}
.wa-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  transition: all var(--t-mid); flex-shrink: 0;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,.6); }
.wa-btn svg { width: 26px; height: 26px; }
.wa-tooltip {
  background: var(--white); color: var(--ink-2);
  padding: .5rem 1rem; border-radius: var(--r-full);
  font-size: .8125rem; font-weight: 600; box-shadow: var(--shadow-lg);
  white-space: nowrap; opacity: 0; transform: translateX(8px);
  transition: all var(--t-mid); pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.scroll-up {
  position: fixed; bottom: 5.5rem; right: 2.1rem; z-index: 800;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); color: var(--gray-600);
  border: 1.5px solid var(--gray-200); box-shadow: var(--shadow-md);
  display: none; align-items: center; justify-content: center;
  font-size: .875rem; transition: all var(--t-fast); cursor: pointer;
}
.scroll-up:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.scroll-up.show { display: flex; }

/* =====================================================================
   PAGE TEMPLATES
   ===================================================================== */
.page-hero {
  background: var(--ink);
  padding: 9rem 0 4rem; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(22,163,74,.12) 0%, transparent 55%),
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-label { display: inline-flex; align-items: center; gap: .5rem; background: rgba(22,163,74,.15); color: rgba(255,255,255,.85); border: 1px solid rgba(22,163,74,.3); padding: .35rem .875rem; border-radius: var(--r-full); font-size: .75rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 1rem; }
.page-hero-title { color: #dcfce7; font-size: clamp(1.5rem, 4vw, 2.5rem); line-height: 1.15; }
.breadcrumb { font-size: .8375rem; color: rgba(255,255,255,.45); margin-top: .75rem; }
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--t-fast); }
.breadcrumb a:hover { color: #4ade80; }
.breadcrumb span { color: rgba(255,255,255,.3); margin: 0 .5rem; }

.page-wrapper { padding: 3.5rem 0 5.5rem; }
.page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }

/* Article content */
.content-article {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r-xl); overflow: hidden;
}
.post-meta { display: flex; flex-wrap: wrap; gap: 1rem; padding: 1.125rem 2rem; border-bottom: 1px solid var(--gray-100); background: var(--surface-2); font-size: .875rem; color: var(--gray-500); }
.post-meta span { display: flex; align-items: center; gap: .375rem; }
.article-body { padding: 2.25rem; line-height: 1.8; }
.article-body h2 { color: var(--green-darker); font-size: 1.625rem; margin: 2rem 0 .875rem; }
.article-body h3 { color: var(--ink-2); margin: 1.5rem 0 .625rem; }
.article-body p { color: var(--gray-600); margin-bottom: 1.25rem; }
.article-body ul { padding-left: 1.5rem; margin-bottom: 1.25rem; color: var(--gray-600); }
.article-body li { margin-bottom: .5rem; }
.article-body a { color: var(--green); text-decoration: underline; text-decoration-color: var(--green-light); }
.article-body blockquote { border-left: 3px solid var(--green); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--green-xlight); border-radius: 0 var(--r-sm) var(--r-sm) 0; font-style: italic; color: var(--green-darker); }
.article-tags { padding: 1rem 2rem; border-top: 1px solid var(--gray-100); display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.article-tag { background: var(--green-xlight); color: var(--green); padding: .2rem .7rem; border-radius: var(--r-sm); font-size: .8rem; font-weight: 600; }
.post-nav { padding: 1.5rem 2rem; border-top: 1px solid var(--gray-100); display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.post-nav-dir { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-400); display: block; margin-bottom: .35rem; }
.post-nav-title { font-size: .9375rem; font-weight: 600; color: var(--green); }
.post-share { padding: 1.25rem 2rem; border-top: 1px solid var(--gray-100); display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.share-label { font-size: .875rem; font-weight: 700; color: var(--ink-2); }
.share-btn { padding: .35rem 1rem; border-radius: var(--r-sm); font-size: .8125rem; font-weight: 600; color: #fff; }
.share-fb { background: #1877f2; } .share-tw { background: #1da1f2; } .share-wa2 { background: #25d366; }

/* Sidebar */
.sidebar { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-box { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-xl); overflow: hidden; }
.sidebar-head { padding: .875rem 1.25rem; border-bottom: 1px solid var(--gray-100); background: var(--surface-2); }
.sidebar-head-title { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--gray-700); }
.sidebar-body { padding: 1.125rem 1.25rem; }
.sidebar-links { display: flex; flex-direction: column; }
.sidebar-links a { padding: .5rem 0; border-bottom: 1px solid var(--gray-100); font-size: .875rem; color: var(--gray-600); display: flex; align-items: center; gap: .5rem; transition: color var(--t-fast); }
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--green); }
.sidebar-links a::before { content: '→'; font-size: .75rem; color: var(--green); opacity: 0; transition: opacity var(--t-fast); }
.sidebar-links a:hover::before { opacity: 1; }
.sidebar-cta { background: var(--ink-2); border-color: transparent; }
.sidebar-cta .sidebar-head { background: rgba(255,255,255,.07); border-bottom-color: rgba(255,255,255,.08); }
.sidebar-cta .sidebar-head-title { color: #4ade80; }
.sidebar-cta .sidebar-body { display: flex; flex-direction: column; gap: .75rem; }
.sidebar-cta p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.65; }
.sidebar-cities { display: flex; flex-wrap: wrap; gap: .375rem; padding: 1.125rem 1.25rem; border-top: 1px solid var(--gray-100); }
.sc-city { background: var(--green-xlight); color: var(--green); padding: .2rem .625rem; border-radius: 4px; font-size: .75rem; font-weight: 700; }

/* Blog/archive page grid */
.posts-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.pagination { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 .75rem; border-radius: var(--r-md); font-size: .875rem; font-weight: 600; border: 1px solid var(--gray-200); color: var(--gray-600); transition: all var(--t-fast); }
.pagination .page-numbers:hover { background: var(--green-xlight); border-color: var(--green); color: var(--green); }
.pagination .current { background: var(--green); border-color: var(--green); color: var(--white); }
.no-results { text-align: center; padding: 5rem 2rem; }
.no-results-icon { font-size: 4rem; margin-bottom: 1rem; }

/* Layanan single */
.layanan-cta { background: linear-gradient(135deg, var(--green-darker), var(--green-dark)); border-radius: var(--r-xl); padding: 2.25rem; margin: 0 2.25rem 2.25rem; text-align: center; }
.layanan-cta h3 { color: #d1fae5; margin-bottom: .625rem; }
.layanan-cta p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }
.layanan-cta-btns { display: flex; gap: .875rem; justify-content: center; flex-wrap: wrap; }

/* WordPress core classes */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1.5rem auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .8rem; color: var(--gray-400); text-align: center; margin-top: .375rem; }

/* =====================================================================
   ANIMATIONS
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-1 { animation: float 3.5s ease-in-out infinite; }
.float-2 { animation: float 4.2s ease-in-out infinite 1s; }
.float-3 { animation: float 3s ease-in-out infinite .5s; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  :root { --px: 1.25rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 480px; }
  .coverage-inner { grid-template-columns: 1fr; gap: 3rem; }
  .coverage-map { display: none; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .metric-item:nth-child(2) { border-right: none; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.span-2 { grid-column: auto; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-connector { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .primary-nav, .header-actions .btn-primary { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .form-row2 { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .about-nums { grid-template-columns: repeat(3,1fr); }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .hero { padding: 8rem 0 5rem; min-height: auto; }
  .hero-social-proof { display: none; }
}
@media (max-width: 480px) {
  :root { --px: 1rem; }
  .section { padding: 3rem 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .wa-float { bottom: 1.25rem; right: 1.25rem; }
  .scroll-up { bottom: 5rem; right: 1.6rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .layanan-cta { margin: 0 1.25rem 1.25rem; padding: 1.75rem; }
  .article-body { padding: 1.5rem; }
  .post-meta, .article-tags, .post-nav, .post-share { padding-left: 1.5rem; padding-right: 1.5rem; }
  .about-badge { right: 0; top: -1rem; }
  .about-nums { grid-template-columns: 1fr 1fr 1fr; gap: .5rem; }
  .about-num-val { font-size: 1.25rem; }
}

/* =====================================================================
   RESPONSIVE FINAL — v3.3
   ===================================================================== */

/* Horizontal scroll: sudah di body di atas */

/* Header: tidak ada overflow clip */
.site-header  { width: 100%; }
.header-inner { flex-wrap: nowrap; gap: 1rem; min-width: 0; }
.site-logo    { flex: 0 0 auto; overflow: visible; }
.site-logo span { white-space: nowrap; }
.header-actions { flex: 0 0 auto; display: flex; align-items: center; gap: .625rem; }

/* hd-only = tampil di desktop */
.hd-only { display: inline-flex; }

/* ── ≤1280px: sembunyikan WA pill ── */
@media (max-width: 1280px) {
  .header-wa.hd-only { display: none !important; }
  .header-inner      { gap: .75rem; }
  .primary-nav a     { padding: .5rem .75rem; font-size: .875rem; }
}

/* ── ≤1024px: nav lebih padat ── */
@media (max-width: 1024px) {
  .primary-nav a { padding: .45rem .6rem; font-size: .85rem; }
}

/* ── ≤900px: sembunyikan item minor ── */
@media (max-width: 900px) {
  .nav-hide-sm { display: none !important; }
}

/* ── ≤768px: hamburger only ── */
@media (max-width: 768px) {
  .primary-nav          { display: none !important; }
  .hd-only              { display: none !important; }
  .header-actions > a   { display: none !important; }
  .nav-hamburger        { display: flex !important; flex-shrink: 0; }
  .header-actions       { gap: 0; }
  .site-logo span       { max-width: 55vw; overflow: hidden; text-overflow: ellipsis; }

  /* Single column layouts */
  .hero-inner, .about-inner, .coverage-inner,
  .faq-layout, .contact-layout { grid-template-columns: 1fr !important; gap: 2rem !important; }

  .services-grid, .bento-grid, .process-grid,
  .testi-grid, .blog-grid, .posts-grid,
  .footer-grid { grid-template-columns: 1fr !important; }

  .bento-card.span-2 { grid-column: span 1 !important; }
  .metrics-grid      { grid-template-columns: repeat(2,1fr) !important; }
  .page-layout, .form-row2, .post-nav { grid-template-columns: 1fr !important; }

  /* Hide large visual elements */
  .hero-visual, .coverage-map { display: none !important; }
  .sidebar, .faq-sidebar      { position: static !important; }

  /* Hero */
  .hero              { padding: 7.5rem 0 4rem; min-height: auto; }
  .hero-title        { font-size: 2.25rem; }
  .hero-desc         { font-size: 1rem; max-width: 100%; }
  .hero-social-proof { display: none; }
  .hero-actions      { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* CTA, footer */
  .cta-actions           { flex-direction: column; align-items: stretch; }
  .cta-actions .btn      { justify-content: center; }
  .footer-grid           { gap: 2rem !important; }
  .footer-bottom-inner   { flex-direction: column; text-align: center; gap: .5rem; }
  .footer-bottom-links   { flex-direction: column; gap: .375rem; align-items: center; }

  /* Spacing */
  .section    { padding: 3.5rem 0; }
  .section-sm { padding: 2.5rem 0; }
  .container  { padding-left: 1.125rem; padding-right: 1.125rem; }

  /* Articles */
  .article-body { padding: 1.25rem !important; }
  .post-meta, .article-tags,
  .post-nav, .post-share { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
  .layanan-cta     { margin: 0 1rem 1rem !important; padding: 1.5rem !important; }
  .layanan-cta-btns { flex-direction: column !important; }

  .wa-float  { bottom: 1.25rem; right: 1.25rem; }
  .scroll-up { bottom: 5rem; right: 1.6rem; }
}

/* ── ≤480px: HP kecil ── */
@media (max-width: 480px) {
  .container      { padding-left: 1rem; padding-right: 1rem; }
  .hero-title     { font-size: 2rem; }
  .hero-pill      { font-size: .7rem; }
  .section        { padding: 3rem 0; }
  .bento-num      { font-size: 2.5rem; }
  .metric-num     { font-size: 1.875rem; }
  .metric-item    { padding: 1.25rem .875rem; }
  .about-num-val  { font-size: 1.25rem; }
  .city-pill      { font-size: .8rem; }
  .mobile-drawer  { max-width: 100vw !important; }
}

/* =====================================================================
   RESPONSIVE FINAL — v3.3 (nav + portfolio + coverage maps)
   ===================================================================== */

/* Body horizontal scroll */
body { overflow-x: hidden; }

/* ── Header nav: no clipping ── */
.site-header  { width: 100%; }
.header-inner { flex-wrap: nowrap; gap: 1rem; min-width: 0; }
.site-logo    { flex: 0 0 auto; }
.site-logo span { white-space: nowrap; }
.header-actions { flex: 0 0 auto; display: flex; align-items: center; gap: .625rem; }

/* Nav container: NEVER clip */
.primary-nav {
  flex: 1 1 auto;
  display: flex; align-items: center;
  flex-wrap: nowrap; gap: 0; justify-content: center;
  overflow: visible;
}
.primary-nav li  { list-style: none; overflow: visible; flex-shrink: 0; }
.primary-nav a   {
  display: block; white-space: nowrap; overflow: visible;
  padding: .5rem 1rem; font-size: .9rem; font-weight: 500;
  letter-spacing: .01em; border-radius: var(--r-sm);
  color: rgba(255,255,255,.85); transition: all var(--t-fast);
}
.primary-nav a:hover { color: var(--white); background: rgba(255,255,255,.12); }
.site-header.solid .primary-nav a { color: var(--gray-700); }
.site-header.solid .primary-nav a:hover { color: var(--ink-2); background: var(--gray-100); }
.site-header.solid .primary-nav a.active { color: var(--green); background: var(--green-xlight); }

/* hd-only = desktop only */
.hd-only { display: inline-flex; }

/* ── ≤1280px: WA pill hilang ── */
@media (max-width: 1280px) {
  .header-wa.hd-only { display: none !important; }
  .header-inner      { gap: .75rem; }
  .primary-nav a     { padding: .45rem .75rem; font-size: .875rem; }
}

/* ── ≤1024px: lebih rapat ── */
@media (max-width: 1024px) {
  .primary-nav a { padding: .42rem .6rem; font-size: .85rem; }
}

/* ── ≤900px: sembunyikan item minor ── */
@media (max-width: 900px) {
  .nav-hide-sm { display: none !important; }
}

/* ── ≤768px: hamburger only ── */
@media (max-width: 768px) {
  .primary-nav          { display: none !important; }
  .hd-only              { display: none !important; }
  .header-actions > a   { display: none !important; }
  .nav-hamburger        { display: flex !important; flex-shrink: 0; }
  .header-actions       { gap: 0; }
  .site-logo span       { max-width: 55vw; overflow: hidden; text-overflow: ellipsis; }

  /* Layouts */
  .hero-inner, .about-inner, .faq-layout,
  .contact-layout                       { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .services-grid, .bento-grid, .process-grid,
  .testi-grid, .blog-grid, .posts-grid,
  .footer-grid                          { grid-template-columns: 1fr !important; }
  .bento-card.span-2                    { grid-column: span 1 !important; }
  .metrics-grid                         { grid-template-columns: repeat(2,1fr) !important; }
  .page-layout, .form-row2, .post-nav   { grid-template-columns: 1fr !important; }

  /* Portfolio + coverage maps: single col on mobile */
  #portofolio > .container > div[style*="grid-template-columns:repeat(3"],
  #wilayah > .container > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* Visi/misi/tujuan grids */
  div[style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:1fr 1fr"]       { grid-template-columns: 1fr !important; }

  /* Hero + misc */
  .hero-visual, .coverage-map           { display: none !important; }
  .sidebar, .faq-sidebar                { position: static !important; }
  .hero                                 { padding: 7.5rem 0 4rem; min-height: auto; }
  .hero-title                           { font-size: 2.25rem; }
  .hero-desc                            { font-size: 1rem; max-width: 100%; }
  .hero-social-proof                    { display: none; }
  .hero-actions                         { flex-direction: column; }
  .hero-actions .btn                    { width: 100%; justify-content: center; }
  .cta-actions                          { flex-direction: column; align-items: stretch; }
  .cta-actions .btn                     { justify-content: center; }
  .footer-grid                          { gap: 2rem !important; }
  .footer-bottom-inner                  { flex-direction: column; text-align: center; gap: .5rem; }
  .section    { padding: 3.5rem 0; }
  .container  { padding-left: 1.125rem; padding-right: 1.125rem; }
  .article-body { padding: 1.25rem !important; }
  .post-meta, .article-tags, .post-nav,
  .post-share   { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
  .layanan-cta  { margin: 0 1rem 1rem !important; padding: 1.5rem !important; }
  .layanan-cta-btns { flex-direction: column !important; }
  .wa-float   { bottom: 1.25rem; right: 1.25rem; }
  .scroll-up  { bottom: 5rem; right: 1.6rem; }
}

/* ── ≤480px ── */
@media (max-width: 480px) {
  .container     { padding-left: 1rem; padding-right: 1rem; }
  .hero-title    { font-size: 2rem; }
  .section       { padding: 3rem 0; }
  .metric-num    { font-size: 1.875rem; }
  .metric-item   { padding: 1.25rem .875rem; }
  .bento-num     { font-size: 2.5rem; }
  .about-num-val { font-size: 1.25rem; }
  .mobile-drawer { max-width: 100vw !important; }
  .footer-bottom-links { flex-direction: column; gap: .375rem; align-items: center; }
}

/* =====================================================================
   LIGHTBOX / ZOOM
   ===================================================================== */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  cursor: zoom-out;
  backdrop-filter: blur(6px);
}
.lightbox-overlay.open { opacity: 1; pointer-events: auto; }
.lightbox-inner {
  position: relative; max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-inner img {
  max-width: 90vw; max-height: 88vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  display: block;
}
.lightbox-close {
  position: absolute; top: -14px; right: -14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); color: var(--ink-2);
  border: none; font-size: 1.125rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; box-shadow: var(--shadow-md);
  transition: background var(--t-fast);
  line-height: 1;
}
.lightbox-close:hover { background: var(--gray-100); }
.lightbox-caption {
  position: absolute; bottom: -2.25rem; left: 0; right: 0;
  text-align: center; color: rgba(255,255,255,.7);
  font-size: .875rem; font-weight: 500;
}

/* About card: natural image, no fixed aspect-ratio */
.about-card-main[style*="aspect-ratio:auto"] { min-height: auto !important; }

/* =====================================================================
   GRID CLASSES — replaces problematic inline grid styles
   ===================================================================== */

/* Misi: auto-fit 2 col desktop, 1 col mobile */
.grid-misi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Tujuan: 3 col desktop */
.grid-tujuan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

/* Komitmen: 2 col desktop */
.grid-komitmen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Maps: 2 col desktop */
.grid-maps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Portfolio: 3 col desktop, cards equal height */
.grid-portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ── Tablet 768–1024px ── */
@media (max-width: 1024px) {
  .grid-portfolio { grid-template-columns: repeat(2, 1fr); }
  .grid-tujuan    { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile ≤768px: semua jadi 1 kolom ── */
@media (max-width: 768px) {
  .grid-misi      { grid-template-columns: 1fr; }
  .grid-tujuan    { grid-template-columns: 1fr; }
  .grid-komitmen  { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-maps      { grid-template-columns: 1fr; }
  .grid-portfolio { grid-template-columns: 1fr; }

  /* Portfolio card: gambar tidak crop, tampil natural */
  .grid-portfolio > div img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Tujuan card: padding lebih kecil di mobile */
  .grid-tujuan > div { padding: 1.5rem !important; }

  /* Komitmen inner cards: full width */
  .grid-komitmen > div:last-child > div {
    padding: .75rem !important;
  }

  /* Maps: gambar peta full width */
  .grid-maps > div img { width: 100%; height: auto; }
  .grid-maps { margin-bottom: 2rem; }

  /* Visi misi padding kecil */
  #visi-misi .reveal > div { padding: 1.75rem !important; }
}

/* ── Mobile ≤480px ── */
@media (max-width: 480px) {
  .grid-tujuan > div { padding: 1.25rem !important; }
  .grid-komitmen     { gap: 1.25rem; }
}

/* Bento map card */
.bento-map-card {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .bento-map-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .bento-map-card svg { display: none; } /* hide mini map on mobile, not needed */
}
