/* ═══════════════════════════════════════
   LH PARTNERS — PREMIUM BLACK & GOLD
═══════════════════════════════════════ */

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

:root {
  --gold:        #c9a227;
  --gold-light:  #f5d78e;
  --gold-dark:   #7a5c00;
  --black:       #0d0d0d;
  --black2:      #111111;
  --surface:     #161616;
  --surface2:    #1e1e1e;
  --border:      rgba(201,162,39,.22);
  --border2:     rgba(201,162,39,.1);
  --text:        #e8e0cc;
  --text-muted:  #8a7d60;
  --ff-serif:    'Playfair Display', Georgia, serif;
  --ff-sans:     'Inter', system-ui, sans-serif;
  --ff-hero-headline: 'Roboto', system-ui, -apple-system, sans-serif;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --ease:        cubic-bezier(.4,0,.2,1);
  --t:           .3s;
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--ff-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: rgba(201,162,39,.25); color: var(--gold-light); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

a { text-decoration: none; color: inherit; }
svg { display: block; }
ul { list-style: none; }

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

.section { padding: 88px 0; }

.gold-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Hero headline — gradient line must stay gold (no dark text-shadow on transparent fill) */
.hero-title .gold-text {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 18px rgba(201, 162, 39, 0.35));
}

.hidden { display: none !important; }

/* ── Buttons ─────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  color: var(--black);
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: .9rem;
  padding: 14px 30px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), opacity var(--t);
  letter-spacing: .4px;
  position: relative;
  white-space: nowrap;
  min-height: 48px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,.35); }
.btn-primary.large  { padding: 16px 38px; font-size: .95rem; }
.btn-primary.full-w { width: 100%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: .9rem;
  padding: 13px 30px;
  border-radius: 4px;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  letter-spacing: .4px;
  white-space: nowrap;
  min-height: 48px;
}
.btn-outline:hover {
  background: rgba(201,162,39,.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,.12);
}
.btn-outline.large { padding: 15px 38px; font-size: .95rem; }

/* ── Section header ─────────────────── */
.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 18px;
  background: rgba(201,162,39,.05);
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  text-wrap: balance;
}
.section-sub {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--t), padding var(--t), border-color var(--t);
}
.navbar.scrolled {
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}

.nav-inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 1001;
}
.nav-logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(200px, 52vw);
  object-fit: contain;
  flex-shrink: 0;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  line-height: 1.12;
  min-width: 0;
}
.nav-brand-title {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--gold-light);
}
.nav-brand-sub {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(232, 224, 204, 0.78);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links li a {
  font-size: .86rem;
  font-weight: 500;
  color: rgba(232,224,204,.8);
  transition: color var(--t);
  position: relative;
  padding-bottom: 4px;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--t);
}
.nav-links li a:hover { color: var(--gold-light); }
.nav-links li a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  color: var(--black) !important;
  padding: 9px 22px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 998;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.nav-overlay.open { display: block; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 30% 40%, #1a1200 0%, var(--black) 60%);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: .55;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,.65) 0%, rgba(13,13,13,.15) 55%, rgba(13,13,13,.75) 100%);
  pointer-events: none;
}

.float-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.1), transparent 70%);
  animation: floatBob 6s ease-in-out infinite;
  pointer-events: none;
}
.shape-1 { width: 400px; height: 400px; top: -80px; right: -80px; animation-delay: 0s; }
.shape-2 { width: 240px; height: 240px; bottom: 80px; left: -60px; animation-delay: 2s; }
.shape-3 { width: 160px; height: 160px; top: 35%; right: 38%; animation-delay: 4s; opacity: .5; }

@keyframes floatBob {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-22px) scale(1.04); }
}

/* Hero layout — two‑col on desktop; globe paints first (lower z), content on top */
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.15fr);
  grid-template-areas: "content globe";
  gap: 28px 52px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 80px;
}

.hero-content {
  grid-area: content;
  position: relative;
  z-index: 2;
  max-width: 580px;
  isolation: isolate;
}

.hero-illustration {
  grid-area: globe;
  position: relative;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 12px 40px rgba(201, 162, 39, 0.28)) drop-shadow(0 0 60px rgba(201, 162, 39, 0.12));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,.1);
  border: 1px solid rgba(201,162,39,.3);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 2px;
  letter-spacing: .8px;
  margin-bottom: 24px;
  animation: fadeUp .8s var(--ease) .1s both;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}

.hero-title {
  font-family: var(--ff-serif);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 22px;
  animation: fadeUp .8s var(--ease) .2s both;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
  max-width: min(100%, 920px);
}
.hero-title__tag {
  display: block;
  font-family: var(--ff-hero-headline);
  font-size: clamp(1.35rem, 4.2vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  line-height: 1.12;
}
.hero-title__nvnj {
  display: inline-block;
  color: #f2d386;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}
.hero-title__quote {
  display: block;
  font-family: var(--ff-hero-headline);
  font-size: clamp(1.35rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.hero-desc {
  font-size: 1rem;
  color: rgba(232,224,204,.75);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeUp .8s var(--ease) .3s both;
}
.hero-desc strong { color: var(--gold-light); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .8s var(--ease) .4s both;
  margin-bottom: 40px;
}

.hero-pillars {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp .8s var(--ease) .5s both;
}
.hp-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(232,224,204,.7);
  background: rgba(201,162,39,.07);
  border: 1px solid var(--border2);
  padding: 7px 14px;
  border-radius: 2px;
}

.hero-globe-wrap {
  width: min(100%, 560px);
  aspect-ratio: 1;
  max-width: 560px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  animation: fadeUp 1s var(--ease) 0.35s both;
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.35),
    0 0 48px rgba(201, 162, 39, 0.15),
    inset 0 0 80px rgba(0, 0, 0, 0.45);
}

#hero-globe {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  vertical-align: middle;
  touch-action: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Keep translateX(-50%) so “Scroll” stays centered; fadeUp would overwrite transform */
@keyframes fadeUpScrollCue {
  from { opacity: 0; transform: translate(-50%, 28px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
  animation: fadeUpScrollCue .8s var(--ease) .8s both;
}
.scroll-line {
  width: 1.5px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%     { transform: scaleY(.6); opacity: .4; }
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about { background: #0f0f0f; }

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

.about-illustration {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  object-fit: contain;
}

.about-text {
  color: rgba(232,224,204,.72);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.af-item { display: flex; gap: 14px; align-items: flex-start; }
.af-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  background: rgba(201,162,39,.04);
  padding: 9px;
}
.af-item strong { display: block; color: #fff; font-size: .92rem; margin-bottom: 3px; }
.af-item p { font-size: .82rem; color: var(--text-muted); }

/* ═══════════════════════════════════════
   VISI & MISI (dark theme + premium illustration)
═══════════════════════════════════════ */
.visi-misi {
  background: linear-gradient(180deg, #101010 0%, var(--black2) 45%, var(--black) 100%);
  color: var(--text);
  border-block: 1px solid var(--border2);
}
.visi-misi__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  max-width: min(1180px, 100%);
  margin: 0 auto;
}
.visi-misi__content {
  padding-block: 8px;
  max-width: 100%;
  min-width: 0;
}
.visi-misi__hero {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.visi-misi__hero img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border2);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 162, 39, 0.12),
    0 0 80px rgba(201, 162, 39, 0.1);
}
.visi-misi__brand {
  font-family: var(--ff-serif);
  font-size: clamp(2.35rem, 5.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0 0 8px;
}
.visi-misi__brand .gold-text {
  display: inline-block;
}
.visi-misi__title {
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 30px;
}
.visi-misi__title-amp {
  font-weight: 700;
}
.visi-misi__block {
  margin-bottom: 28px;
}
.visi-misi__block:last-of-type {
  margin-bottom: 0;
}
.visi-misi__label {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.visi-misi__text {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  line-height: 1.78;
  color: var(--text-muted);
  margin: 0;
}
.visi-misi__text strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services { background: var(--black); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.service-card:nth-child(1) { grid-column: 1 / 5; }
.service-card:nth-child(2) { grid-column: 5 / 9; }
.service-card:nth-child(3) { grid-column: 9 / 13; }
.service-card:nth-child(4) { grid-column: 1 / 4; }
.service-card:nth-child(5) { grid-column: 4 / 7; }
.service-card:nth-child(6) { grid-column: 7 / 10; }
.service-card:nth-child(7) { grid-column: 10 / 13; }

.service-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.service-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(201,162,39,.12);
}
.sc-glow {
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,162,39,.1), transparent 70%);
  pointer-events: none;
}
.service-card.featured {
  background: linear-gradient(160deg, #1a1200 0%, var(--surface) 55%, #0d0d0d 100%);
  border-color: rgba(201,162,39,.28);
}
.service-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.sc-icon { width: 60px; height: 60px; margin-bottom: 18px; }
.sc-icon.small { width: 44px; height: 44px; margin-bottom: 14px; }
.sc-badge {
  display: inline-block;
  font-size: .65rem; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,.1);
  border: 1px solid var(--border2);
  padding: 4px 11px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.sc-title {
  font-family: var(--ff-serif);
  font-size: 1.15rem; font-weight: 700;
  color: #fff; margin-bottom: 10px; line-height: 1.3;
}
.sc-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.sc-list { margin-bottom: 24px; display: flex; flex-direction: column; gap: 7px; }
.sc-list li {
  font-size: .83rem; color: rgba(232,224,204,.68);
  padding-left: 14px; position: relative;
}
.sc-list li::before {
  content: '✦';
  position: absolute; left: 0;
  color: var(--gold); font-size: .45rem; top: 6px;
}
.sc-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-size: .84rem; font-weight: 700;
  padding: 11px 22px; border-radius: 4px;
  transition: transform var(--t), box-shadow var(--t), opacity var(--t);
}
.sc-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(201,162,39,.3); }
.sc-link {
  font-size: .84rem; color: var(--gold); font-weight: 600;
  transition: color var(--t), gap var(--t);
  display: inline-flex; align-items: center; gap: 4px;
}
.sc-link:hover { color: var(--gold-light); gap: 8px; }

/* ═══════════════════════════════════════
   PRACTICE
═══════════════════════════════════════ */
.practice { background: var(--black2); }

.practice-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.practice-tabs {
  display: flex;
  border-bottom: 1px solid var(--border2);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.practice-tabs::-webkit-scrollbar { display: none; }

.ptab {
  flex: 1;
  min-width: 130px;
  padding: 16px 20px;
  background: none; border: none;
  color: var(--text-muted);
  font-family: var(--ff-sans); font-size: .85rem; font-weight: 500;
  cursor: pointer;
  transition: color var(--t), background var(--t), border-color var(--t);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.ptab:hover { color: var(--gold-light); background: rgba(201,162,39,.03); }
.ptab.active { color: var(--gold-light); border-bottom-color: var(--gold); background: rgba(201,162,39,.05); }

.ppanel { display: none; padding: 48px; }
.ppanel.active { display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.ppanel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.ppanel-text h3 {
  font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 700;
  color: #fff; margin-bottom: 14px;
}
.ppanel-text p { color: var(--text-muted); font-size: .92rem; line-height: 1.8; margin-bottom: 24px; }
.ppanel-items {
  display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 32px;
}
.pi-item { display: flex; align-items: center; gap: 7px; font-size: .83rem; color: rgba(232,224,204,.72); }
.pi-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.ppanel-visual svg { width: 100%; max-width: 300px; margin: 0 auto; filter: drop-shadow(0 10px 36px rgba(201,162,39,.18)); }

/* ═══════════════════════════════════════
   ADVANTAGES
═══════════════════════════════════════ */
.advantages {
  position: relative;
  background: linear-gradient(160deg, #1a1200 0%, var(--black) 50%, #0a0800 100%);
  overflow: hidden;
}
.adv-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,162,39,.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201,162,39,.05) 0%, transparent 50%);
  pointer-events: none;
}
.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative; z-index: 1;
}
.adv-card {
  padding: 36px 24px;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  transition: border-color var(--t), background var(--t), transform var(--t);
  text-align: center;
}
.adv-card:hover {
  border-color: var(--border);
  background: rgba(201,162,39,.04);
  transform: translateY(-4px);
}
.adv-icon { width: 48px; height: 48px; margin: 0 auto 16px; }
.adv-card h4 {
  font-family: var(--ff-serif); font-size: 1.05rem; font-weight: 700;
  color: #fff; margin-bottom: 10px;
}
.adv-card p { font-size: .84rem; color: var(--text-muted); line-height: 1.75; }

/* ═══════════════════════════════════════
   TEAM
═══════════════════════════════════════ */
.team { background: var(--black); }

/* Our Team — single spotlight (photo + bio) */
.team-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
.team-spotlight__visual {
  width: 100%;
  overflow: visible;
}
.team-spotlight__frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  display: flex;
  padding: 8px;
  border-radius: 22px;
  overflow: visible;
  box-sizing: border-box;
  background: linear-gradient(
    155deg,
    #fff9e8 0%,
    #f5d78e 12%,
    #e8c547 32%,
    #a67c12 48%,
    #c9a227 55%,
    #e6c65c 72%,
    #fff4d4 92%,
    #fffdf6 100%
  );
  box-shadow:
    0 0 0 1px rgba(245, 215, 142, 0.65),
    0 0 0 5px rgba(13, 13, 13, 1),
    0 0 0 6px rgba(201, 162, 39, 0.28),
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 100px rgba(201, 162, 39, 0.22);
}
.team-spotlight__frame::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 17px;
  pointer-events: none;
  z-index: 2;
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 220, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -18px 40px rgba(0, 0, 0, 0.35);
}
.team-spotlight__frame-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  min-height: 0;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #141008 0%, #0a0a0a 100%);
  box-shadow:
    inset 0 0 0 1px rgba(201, 162, 39, 0.4),
    inset 0 0 60px rgba(0, 0, 0, 0.55);
}
.team-spotlight__frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  display: block;
}
.team-spotlight__body {
  padding: 8px 0;
}
.team-spotlight__name {
  font-family: var(--ff-serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}
.team-spotlight__role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.team-spotlight__edu {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(232, 224, 204, 0.88);
  margin: 0 0 22px;
  line-height: 1.45;
}
.team-spotlight__bio p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 14px;
}
.team-spotlight__bio p:last-child {
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.team-card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
}
.tc-img-wrap {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #1a1200 0%, var(--black) 100%);
}
.tc-avatar { width: 100%; height: auto; display: block; }
.tc-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,13,.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--t);
}
.team-card:hover .tc-overlay { opacity: 1; }
.tc-socials { display: flex; gap: 10px; }
.tc-socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  display: grid; place-items: center;
  border-radius: 4px; font-size: .9rem; font-weight: 700;
  transition: background var(--t), color var(--t);
}
.tc-socials a:hover { background: var(--gold); color: var(--black); }
.tc-info { padding: 18px 20px; }
.tc-name { font-family: var(--ff-serif); font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.tc-role { display: block; font-size: .74rem; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.tc-bio { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process { background: var(--black2); }

.process-steps {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.process-line {
  position: absolute;
  left: 50%; top: 40px; bottom: 40px;
  width: 1.5px;
  background: linear-gradient(to bottom, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
  transform: translateX(-50%);
}
.ps-item {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 16px 0;
  position: relative;
}
.ps-item.right { flex-direction: row-reverse; }
.ps-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-family: var(--ff-serif); font-weight: 900; font-size: .82rem;
  display: grid; place-items: center;
  flex-shrink: 0; z-index: 1;
  box-shadow: 0 0 18px rgba(201,162,39,.28);
}
.ps-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--t), box-shadow var(--t);
}
.ps-card:hover { border-color: var(--border); box-shadow: 0 0 24px rgba(201,162,39,.1); }
.ps-icon { width: 36px; height: 36px; margin-bottom: 10px; }
.ps-card h4 { font-family: var(--ff-serif); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ps-card p { font-size: .83rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════
   WELCOME MODAL (sorotan / selamat datang)
═══════════════════════════════════════ */
.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  box-sizing: border-box;
  min-height: 100dvh;
  min-height: 100svh;
  padding: clamp(12px, 4vw, 32px);
}

.welcome-modal.is-open {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.welcome-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
}

.welcome-modal__panel {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100vw - 24px));
  max-height: min(92vh, 760px);
  overflow: auto;
  margin: 0;
  flex-shrink: 0;
  padding: clamp(20px, 4vw, 32px) clamp(18px, 4vw, 36px) clamp(22px, 4vw, 30px);
  background: var(--surface2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border2);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 162, 39, 0.08);
}

.welcome-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border2);
  border-radius: 999px;
  background: var(--surface);
  color: var(--gold-light);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t), background var(--t), color var(--t);
}

.welcome-modal__close:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.14);
  color: #fff;
}

.welcome-modal__eyebrow {
  margin: 0 44px 10px 0;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.welcome-modal__title {
  margin: 0 44px 14px 0;
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 4vw, 1.65rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.28;
}

.welcome-modal__desc {
  margin: 0 0 22px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.welcome-modal__cta {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.welcome-modal__carousel {
  margin-top: 4px;
  margin-bottom: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--border2);
}

.welcome-modal__berita-tag {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.3;
}

.news-carousel-in-modal .nc-header {
  margin-bottom: 12px;
}

.welcome-modal .nc-dots {
  margin-top: 12px;
}

.welcome-modal .nc-slide-inner {
  min-height: min(38vw, 300px);
}

/* ═══════════════════════════════════════
   BERITA TERKINI — carousel (shared styles)
═══════════════════════════════════════ */
.nc-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.nc-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  margin-top: 8px;
  line-height: 1.25;
}
.nc-arrows { display: flex; gap: 8px; flex-shrink: 0; }
.nc-arrow {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(22, 22, 22, 0.9);
  color: var(--gold-light);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--t), background var(--t), color var(--t);
}
.nc-arrow:hover {
  border-color: var(--gold);
  color: #fff;
  background: rgba(201, 162, 39, 0.12);
}
.nc-viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border2);
  background: var(--surface);
}
.nc-track {
  display: flex;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}
.nc-slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.nc-slide--loading {
  padding: 48px 24px;
  text-align: center;
}
.nc-loading { color: var(--text-muted); font-size: 0.92rem; }
.nc-slide-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: min(52vw, 420px);
}
.nc-slide-inner a.nc-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black2);
  min-height: 220px;
}
.nc-slide-inner a.nc-media img {
  width: 100%;
  height: 100%;
  max-height: min(52vw, 480px);
  object-fit: contain;
  display: block;
}
.nc-body {
  padding: clamp(20px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.nc-body .ac-tag { margin-bottom: 0; }
.nc-body h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.nc-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nc-body .nc-read {
  margin-top: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  align-self: flex-start;
}
.nc-body .nc-read:hover { color: var(--gold-light); }
.nc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.nc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(201, 162, 39, 0.25);
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.nc-dot.active {
  background: var(--gold);
  transform: scale(1.15);
}

/* ═══════════════════════════════════════
   ARTICLES
═══════════════════════════════════════ */
.articles { background: var(--black2); }

.articles .section-header {
  max-width: min(680px, 100%);
  margin: 0 auto clamp(36px, 5vw, 56px);
  padding-inline: clamp(4px, 3vw, 16px);
}

.articles-grid {
  display: grid;
  gap: clamp(14px, 2.5vw, 22px);
}

/* Beranda: kolom mengikuti lebar layar (1–5 kartu) */
.articles-grid:not(.articles-grid--all) {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}

.article-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.ac-img {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--black2);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.ac-img svg,
.ac-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 360px;
  background: var(--black2);
}
.article-card:hover .ac-img svg,
.article-card:hover .ac-img img { transform: none; }
.ac-img.small { max-height: none; }
.ac-content { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.ac-tag { display: inline-block; font-size: .66rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.ac-content h3 {
  font-family: var(--ff-serif); font-size: 1.08rem; font-weight: 700;
  color: #fff; line-height: 1.4; margin-bottom: 8px;
}
.ac-content p { font-size: .84rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.ac-meta { font-size: .73rem; color: var(--text-muted); margin: 12px 0; }
.ac-read { font-size: .84rem; color: var(--gold); font-weight: 600; transition: color var(--t); }
.ac-read:hover { color: var(--gold-light); }

/* Link preview (Microlink unfurl) — hostname + photo thumbnail */
.lh-preview-host {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(232, 224, 204, 0.45);
  margin: -4px 0 8px;
}
.ac-img img.ac-thumb--photo,
a.nc-media img.ac-thumb--photo {
  width: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 140px;
  max-height: 220px;
}
.nc-slide-inner a.nc-media img.ac-thumb--photo {
  max-height: min(220px, 42vw);
  min-height: 120px;
}

.articles-toolbar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(22px, 4vw, 32px);
  padding-inline: clamp(0px, 2vw, 12px);
  gap: 12px;
}
.articles-grid--all {
  margin-top: 28px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.articles-grid--all.hidden { display: none; }

.page-semua-berita .articles.section {
  padding-top: 100px;
}
.berita-back-wrap {
  margin-bottom: 20px;
}
.berita-page-empty {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 32px 0;
  text-align: center;
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq { background: var(--black); }

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border2); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 20px 0;
  background: none; border: none;
  color: #fff;
  font-family: var(--ff-sans); font-size: .92rem; font-weight: 500;
  text-align: left; cursor: pointer;
  transition: color var(--t);
  min-height: 48px;
}
.faq-q:hover { color: var(--gold-light); }
.faq-q.open  { color: var(--gold-light); }
.faq-arrow { color: var(--gold); font-size: 1rem; transition: transform var(--t); flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-a.open { max-height: 200px; padding-bottom: 18px; }
.faq-a p { font-size: .86rem; color: var(--text-muted); line-height: 1.8; }

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, #1a1200 0%, #0d0d0d 50%, #1a0d00 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 72px 0;
}
.cta-particles { position: absolute; inset: 0; pointer-events: none; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; z-index: 1;
}
.cta-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: #fff; margin-bottom: 10px;
}
.cta-text p { font-size: .92rem; color: var(--text-muted); }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact { background: var(--black2); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 56px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  display: grid; place-items: center; background: rgba(201,162,39,.04); padding: 9px;
}
.ci-item strong { display: block; font-size: .84rem; color: var(--gold-light); font-weight: 600; margin-bottom: 3px; }
.ci-item p { font-size: .84rem; color: var(--text-muted); line-height: 1.7; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.cf-group { display: flex; flex-direction: column; gap: 7px; }
.cf-group.full { margin-bottom: 16px; }

label { font-size: .8rem; font-weight: 600; color: rgba(232,224,204,.68); letter-spacing: .2px; }

input, select, textarea {
  background: var(--black2);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--ff-sans); font-size: .9rem;
  padding: 12px 14px;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,.1);
}
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a227' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
textarea { resize: vertical; min-height: 120px; }

.cf-check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; }
.cf-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--gold); cursor: pointer; flex-shrink: 0; width: 16px; height: 16px; }
.cf-check label { font-size: .78rem; color: var(--text-muted); cursor: pointer; font-weight: 400; }
.cf-check a { color: var(--gold); }

.cf-success {
  display: flex; align-items: center; gap: 10px;
  background: rgba(201,162,39,.07);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--gold-light);
  font-size: .88rem; font-weight: 500;
  margin-top: 14px;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border2);
}
.footer--simple {
  padding: 48px 0 52px;
}
.footer-simple-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-simple-brand.nav-logo {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.footer-simple-brand.nav-logo img {
  height: 56px;
  max-width: min(240px, 70vw);
}
.footer--simple .nav-brand-title {
  font-size: 1.15rem;
}
.footer--simple .nav-brand-sub {
  font-size: 0.72rem;
}

/* ═══════════════════════════════════════
   FLOATING ELEMENTS
═══════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.38);
  z-index: 900;
  transition: transform var(--t), box-shadow var(--t);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.wa-float img {
  display: block;
  width: 28px;
  height: 28px;
}
.btn-primary .wa-inline-icon {
  filter: brightness(0);
  flex-shrink: 0;
}

.back-top {
  position: fixed; bottom: 88px; right: 24px;
  width: 42px; height: 42px;
  background: var(--surface); border: 1.5px solid var(--border);
  color: var(--gold); border-radius: 4px; cursor: pointer;
  z-index: 900; font-size: 1rem;
  display: grid; place-items: center;
  transition: background var(--t), border-color var(--t), transform var(--t), opacity var(--t);
  opacity: 0; pointer-events: none;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: rgba(201,162,39,.1); border-color: var(--gold); transform: translateY(-2px); }

/* Entrance animation for cards */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET 1024px
═══════════════════════════════════════ */
@media (max-width: 1024px) {

  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "heroStack";
    padding-top: 108px;
    padding-bottom: 56px;
    gap: 0;
    align-items: start;
  }
  .hero-content {
    grid-area: heroStack;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-inline: clamp(12px, 4vw, 24px);
    pointer-events: auto;
  }
  .hero-title {
    text-shadow:
      0 0 42px rgba(13, 13, 13, 0.94),
      0 4px 28px rgba(0, 0, 0, 0.88),
      0 0 2px rgba(0, 0, 0, 1);
  }
  .hero-title .gold-text {
    text-shadow: none;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 22px rgba(201, 162, 39, 0.4));
  }
  .hero-illustration {
    grid-area: heroStack;
    z-index: 0;
    align-self: start;
    justify-self: center;
    width: 100%;
    margin: 0;
    transform: translateY(clamp(3.1rem, 12vw, 5.25rem));
  }
  .hero-globe-wrap {
    width: min(94vw, 420px);
    max-width: 420px;
    margin-inline: auto;
  }
  .hero-actions { justify-content: center; }
  .hero-pillars {
    justify-content: center;
    margin-bottom: clamp(20px, 4vw, 32px);
  }
  .hero-desc { margin-inline: auto; }

  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-visual { display: flex; justify-content: center; }
  .about-illustration { max-width: min(480px, 94vw); }

  .visi-misi__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .visi-misi__hero {
    order: -1;
    margin: 0 auto 8px;
    max-width: min(560px, 100%);
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card:nth-child(1) { grid-column: 1; }
  .service-card:nth-child(2) { grid-column: 2; }
  .service-card:nth-child(3) { grid-column: 1; }
  .service-card:nth-child(4) { grid-column: 2; }
  .service-card:nth-child(5) { grid-column: 1; }
  .service-card:nth-child(6) { grid-column: 2; }
  .service-card:nth-child(7) { grid-column: 1; }

  .adv-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  .nc-slide-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .nc-slide-inner a.nc-media {
    min-height: 200px;
    max-height: 320px;
  }
  .nc-slide-inner a.nc-media img {
    max-height: 280px;
  }

  /* Welcome modal — smaller berita preview when carousel stacks (tablet / narrow) */
  .welcome-modal .nc-slide-inner {
    min-height: 0;
  }
  .welcome-modal .nc-slide-inner a.nc-media {
    min-height: 0;
    max-height: 150px;
  }
  .welcome-modal .nc-slide-inner a.nc-media img {
    max-height: 140px;
  }

  .ppanel { padding: 32px 28px; }
  .ppanel-content { gap: 32px; }
  .ppanel-items { grid-template-columns: 1fr; }

  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .faq-header { text-align: left; }
}

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

  .section { padding: 64px 0; }

  /* Nav */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: rgba(13,13,13,.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--border2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 80px 32px 40px;
    transition: right .38s var(--ease);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links li a {
    display: block;
    font-size: 1rem;
    padding: 13px 0;
    border-bottom: 1px solid var(--border2);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links li a::after { display: none; }
  .nav-cta {
    margin-top: 16px !important;
    padding: 14px 0 !important;
    width: 100%;
    text-align: center !important;
    display: block !important;
    background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
    color: var(--black) !important;
    border-radius: 4px !important;
  }
  .hamburger { display: flex; }

  .nav-brand-title {
    font-size: 0.92rem;
  }
  .nav-brand-sub {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }
  .nav-logo img {
    height: 40px;
  }

  /* Hero — globe stays stacked behind headline (see 1024 rules) */
  .hero-layout { padding-top: 96px; padding-bottom: 72px; }
  .hero-illustration {
    transform: translateY(clamp(2.65rem, 11vw, 4.75rem));
  }
  .hero-globe-wrap {
    width: min(94vw, 400px);
    max-width: 400px;
  }
  .hero-content { text-align: left; }
  .hero-desc { margin-inline: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-pillars {
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: clamp(28px, 9vw, 52px);
  }
  .hp-item { font-size: .75rem; padding: 6px 12px; }

  /* Services — single column */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card:nth-child(n) { grid-column: 1; }

  /* Practice tabs — show illustration stacked above copy */
  .ppanel { padding: 24px 20px; }
  .ppanel-content {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: stretch;
  }
  .ppanel-visual {
    order: -1;
    display: flex;
    justify-content: center;
    max-width: 100%;
  }
  .ppanel-visual svg {
    max-width: min(280px, 88vw);
  }
  .ppanel-items { grid-template-columns: 1fr; gap: 8px; }

  /* Advantages */
  .adv-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .adv-card { padding: 24px 16px; }

  /* Team */
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .team-spotlight {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .team-spotlight__visual {
    order: -1;
  }
  .team-spotlight__frame {
    max-width: min(300px, 88vw);
  }

  /* Process — no center line */
  .process-line { display: none; }
  .ps-item,
  .ps-item.right {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 16px;
    padding: 0 0 16px;
  }
  .ps-num { width: 40px; height: 40px; font-size: .75rem; flex-shrink: 0; margin-top: 4px; }
  .ps-card { padding: 18px; }

  /* Articles — satu kolom hanya grid beranda (bukan halaman semua berita) */
  .articles-grid:not(.articles-grid--all) {
    grid-template-columns: 1fr;
  }

  /* FAQ — already fixed at 1024 */

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .cta-actions { justify-content: center; width: 100%; }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .cf-row { grid-template-columns: 1fr; gap: 14px; }
  .contact-form { padding: 24px 20px; }

  /* Welcome modal — compact dialog + berita (avoid long scroll on phone) */
  .welcome-modal {
    padding: max(10px, env(safe-area-inset-top)) 8px max(10px, env(safe-area-inset-bottom));
    justify-content: center;
    align-items: center;
  }
  .welcome-modal__panel {
    width: calc(100vw - 16px);
    max-width: 100%;
    max-height: min(94dvh, 100%);
    margin-top: 0;
    padding: 10px 12px 12px;
    border-radius: 14px;
  }
  .welcome-modal__close {
    top: 6px;
    right: 6px;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .welcome-modal__eyebrow {
    margin: 0 36px 4px 0;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }
  .welcome-modal__title {
    margin: 0 36px 6px 0;
    font-size: clamp(0.95rem, 4.5vw, 1.15rem);
    line-height: 1.2;
  }
  .welcome-modal__carousel {
    margin-top: 0;
    margin-bottom: 10px;
    padding-top: 10px;
  }
  .welcome-modal__berita-tag {
    letter-spacing: 0.12em;
    font-size: 0.62rem;
  }
  .news-carousel-in-modal .nc-header {
    margin-bottom: 6px;
    align-items: center;
  }
  .welcome-modal .nc-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
  }
  .welcome-modal .nc-slide-inner {
    min-height: 0;
  }
  .welcome-modal .nc-slide-inner a.nc-media {
    min-height: 0;
    max-height: 118px;
  }
  .welcome-modal .nc-slide-inner a.nc-media img {
    max-height: 110px;
  }
  .welcome-modal .nc-body {
    padding: 8px 10px 10px;
    gap: 4px;
  }
  .welcome-modal .nc-body h3 {
    font-size: 0.92rem;
    line-height: 1.28;
  }
  .welcome-modal .nc-body p {
    font-size: 0.75rem;
    line-height: 1.45;
    -webkit-line-clamp: 3;
  }
  .welcome-modal .nc-body .nc-read {
    font-size: 0.75rem;
    margin-top: 2px;
  }
  .welcome-modal .nc-dots {
    margin-top: 6px;
    gap: 6px;
  }
  .welcome-modal .nc-dot {
    width: 6px;
    height: 6px;
  }
  .welcome-modal .nc-slide--loading {
    padding: 20px 14px;
  }
  .welcome-modal .nc-loading {
    font-size: 0.82rem;
  }
  .welcome-modal__cta {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 0.85rem;
    margin-top: 4px;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE 480px
═══════════════════════════════════════ */
@media (max-width: 480px) {

  .section { padding: 52px 0; }

  .hero-title { font-size: inherit; }
  .hero-title__tag {
    font-size: clamp(1.05rem, 5.2vw, 1.65rem);
    margin-bottom: 12px;
  }
  .hero-title__quote {
    font-size: clamp(1.05rem, 4.5vw, 1.75rem);
    letter-spacing: 0.03em;
  }
  .hero-badge { font-size: .72rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; }
  .hero-pillars { flex-direction: column; gap: 8px; margin-bottom: 40px; }
  .hp-item { font-size: .78rem; }

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

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

  .process-steps { padding: 0; }
  .ps-item { gap: 12px; }

  .ppanel { padding: 20px 16px; }

  .cta-inner { gap: 24px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn-primary,
  .cta-actions .btn-outline { width: 100%; }

  .wa-float { width: 48px; height: 48px; bottom: 20px; right: 16px; }
  .back-top  { width: 38px; height: 38px; bottom: 80px; right: 16px; font-size: .9rem; }

  .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .section-header { margin-bottom: 40px; }

  .articles .section-sub {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .articles-toolbar .btn-outline {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }

  .article-card .ac-img {
    min-height: 140px;
  }

  .ac-content {
    padding: 16px 14px;
  }
  .ac-content h3 {
    font-size: clamp(0.98rem, 4.2vw, 1.08rem);
  }
  .ac-content p {
    font-size: 0.82rem;
  }
}
