/* ============================================================
   1. HERO — Bersih, bergaya halaman Proyek
   ============================================================ */

.lk-hero {
  position: relative;
  background: linear-gradient(135deg, #0D1B2A 0%, #162444 55%, #1B2A6B 100%);
  overflow: hidden;
  padding-top: 100px;
}

/* Dot grid overlay */
.lk-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Red glow top-right */
.lk-hero-glow {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(204,31,38,0.22) 0%, transparent 65%);
  pointer-events: none;
}

/* Main content area */
.lk-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 56px;
  position: relative;
  z-index: 1;
}

.lk-hero-inner {
  max-width: 700px;
}

/* Eyebrow pill */
.lk-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.lk-hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #CC1F26;
  flex-shrink: 0;
  animation: lkDotPulse 1.8s ease-in-out infinite;
}

@keyframes lkDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.65); }
}

/* Heading */
.lk-hero-title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 20px;
}

.lk-hero-highlight {
  display: block;
  color: #CC1F26;
}

/* Description */
.lk-hero-desc {
  font-size: 17px;
  font-family: 'Montserrat', sans-serif;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 0 36px;
}

.lk-hero-desc strong { color: #fff; font-weight: 700; }

/* CTA buttons */
.lk-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lk-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.lk-hero-btn-primary:hover { background: #1db954; transform: translateY(-2px); }

.lk-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s, border-color 0.2s;
}

.lk-hero-btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

/* Stats bar */
.lk-hero-stats-bar {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.lk-hstat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  text-align: center;
  transition: background 0.2s;
  cursor: default;
}

.lk-hstat:hover { background: rgba(255,255,255,0.06); }

.lk-hstat strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.lk-hstat span {
  font-size: 11px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.lk-hstat-div {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  margin: 12px 0;
}

/* ── Mobile hero */
@media (max-width: 1024px) {
  .lk-hero-content { padding: 48px 28px 48px; }
  .lk-hero-title { font-size: clamp(32px, 6vw, 52px); }
}

@media (max-width: 768px) {
  .lk-hero { padding-top: 80px; }
  .lk-hero-content { padding: 36px 20px 40px; }
  .lk-hero-title { font-size: clamp(30px, 8vw, 44px); }
  .lk-hero-desc { font-size: 15px; }
  .lk-hero-stats-bar { flex-wrap: wrap; }
  .lk-hstat { flex: 1 1 calc(33.33% - 1px); padding: 20px 12px; }
  .lk-hstat strong { font-size: 24px; }
  .lk-hstat-div { display: none; }
}

@media (max-width: 480px) {
  .lk-hero-actions { flex-direction: column; }
  .lk-hero-btn-primary, .lk-hero-btn-secondary { justify-content: center; width: 100%; }
  .lk-hstat { flex: 1 1 calc(50% - 1px); }
}

/* Hide old elements no longer used */
.lk-hero-bg, .lk-hero-tags, .lk-hero-tag,
.lk-btn-wa, .lk-btn-outline,
.lk-hero-stat, .lk-hero-stat-div, .lk-hero-stats { display: none !important; }

/* ============================================================
   Layanan.css — PT Ratu Karmel Rope Access Indonesia
   ============================================================ */

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

body {
  font-family: 'Montserrat', sans-serif;
  color: #1A1A1A;
  background: #fff;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; }


/* ============================================================
   2 & 3. KATEGORI
   ============================================================ */

.lk-category     { padding: 88px 0; background: #fff; }
.lk-category-alt { background: #f8faff; }

.lk-cat-inner {
  width: min(1200px, 90%);
  margin-inline: auto;
}

.lk-cat-header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 52px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e8edf6;
}

.lk-cat-num {
  font-size: 72px;
  font-weight: 900;
  color: #CC1F26;
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  user-select: none;
}

.lk-cat-meta h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #1B2A6B;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.lk-cat-meta p { font-size: 15px; color: #64748b; }

/* Grid kartu */
.lk-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.lk-service {
  background: #fff;
  border: 1px solid #e8edf6;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.lk-category-alt .lk-service { background: #fff; }

.lk-service:hover {
  border-color: #CC1F26;
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(27,42,107,0.09);
}

.lk-service-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eef2fb;
  border-bottom: 1px solid #e8edf6;
}

.lk-service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.lk-service:hover .lk-service-img img { transform: scale(1.06); }

.lk-service-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lk-service-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1B2A6B;
  line-height: 1.3;
  margin-bottom: 8px;
}

.lk-service-body p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.lk-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #CC1F26;
  align-self: flex-start;
  transition: gap 0.2s;
}

.lk-service-link:hover { gap: 10px; }


/* ============================================================
   DETAIL SECTIONS
   ============================================================ */

.lk-details-wrap {
  border-top: 1px solid #e8edf6;
  padding-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Setiap item detail: layout 2 kolom */
.lk-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid #e8edf6;
  scroll-margin-top: 90px;
}

.lk-detail-item:last-child { border-bottom: none; padding-bottom: 0; }

/* Layout terbalik untuk item genap */
.lk-detail-reverse { direction: rtl; }
.lk-detail-reverse > * { direction: ltr; }

/* Gambar */
.lk-detail-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #eef2fb;
  border: 1px solid #e8edf6;
}

.lk-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lk-detail-item:hover .lk-detail-img img { transform: scale(1.04); }

/* Konten teks */
.lk-detail-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #CC1F26;
  margin-bottom: 12px;
}

.lk-detail-content h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #1B2A6B;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.lk-detail-content > p {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Checklist */
.lk-detail-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.lk-detail-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

.lk-detail-includes li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #CC1F26;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* CTA button */
.lk-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 3px 14px rgba(37,211,102,0.25);
}

.lk-detail-cta:hover { background: #1db954; transform: translateY(-2px); }


/* ============================================================
   4. PROSES KERJA
   ============================================================ */

.lk-process {
  background: #1B2A6B;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.lk-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.lk-proc-inner {
  width: min(1200px, 90%);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.lk-proc-header { text-align: center; margin-bottom: 64px; }

.lk-proc-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,183,188,0.9);
  margin-bottom: 14px;
}

.lk-proc-header h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.lk-proc-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
}

.lk-proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.lk-proc-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: rgba(255,255,255,0.12);
  z-index: 0;
}

.lk-proc-step { text-align: center; padding: 0 10px; position: relative; z-index: 1; }

.lk-proc-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #CC1F26;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  border: 4px solid #1B2A6B;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}

.lk-proc-step h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.lk-proc-step p  { font-size: 13px; color: rgba(255,255,255,0.52); line-height: 1.65; }


/* ============================================================
   5. CTA
   ============================================================ */

.lk-cta {
  background: #f8faff;
  padding: 88px 0;
  border-top: 1px solid #e8edf6;
}

.lk-cta-inner {
  width: min(720px, 90%);
  margin-inline: auto;
  text-align: center;
}

.lk-cta-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #CC1F26;
  margin-bottom: 14px;
}

.lk-cta-inner h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #1B2A6B;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.lk-cta-inner p {
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 36px;
}

.lk-cta-actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.lk-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 18px rgba(37,211,102,0.28);
}

.lk-btn-primary:hover { background: #1db954; transform: translateY(-2px); }

.lk-btn-secondary {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #1B2A6B;
  background: #fff;
  border: 1px solid #dce5f8;
  padding: 14px 28px;
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s;
}

.lk-btn-secondary:hover { border-color: #1B2A6B; transform: translateY(-2px); }


/* ============================================================
   RESPONSIVE — TABLET  <= 1024px
   ============================================================ */

@media (max-width: 1024px) {
  .lk-hero          { padding-top: 72px; }
  .lk-category, .lk-process, .lk-cta { padding: 68px 0; }
  .lk-hero-stat strong { font-size: 26px; }

  .lk-services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .lk-cat-num       { font-size: 56px; }

  .lk-detail-item   { gap: 40px; padding: 48px 0; }
  .lk-proc-steps    { gap: 16px; }
  .lk-proc-num      { width: 52px; height: 52px; font-size: 17px; }
}


/* ============================================================
   RESPONSIVE — MOBILE  <= 768px
   ============================================================ */

@media (max-width: 768px) {
  .lk-hero          { padding-top: 56px; }
  .lk-category, .lk-process, .lk-cta { padding: 52px 0; }

  /* Stats bar: wrap jadi 2 baris di mobile */
  .lk-hero-stats    { flex-wrap: wrap; }
  .lk-hero-stat     { flex: 1 1 calc(33.33% - 1px); padding: 20px 12px; }
  .lk-hero-stat-divider { display: none; }
  .lk-hero-stat:not(:last-child) { border-right: 1px solid #e8edf6; border-bottom: 1px solid #e8edf6; }

  .lk-cat-header    { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 36px; }
  .lk-cat-num       { font-size: 44px; }
  .lk-services-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }

  /* Detail section: stack vertikal di mobile */
  .lk-detail-item,
  .lk-detail-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 24px;
    padding: 36px 0;
  }

  .lk-detail-img    { aspect-ratio: 16/9; }

  .lk-proc-steps    { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .lk-proc-steps::before { display: none; }

  .lk-cta-actions   { flex-direction: column; width: 100%; }
  .lk-btn-primary,
  .lk-btn-secondary { justify-content: center; width: 100%; }
}


/* ============================================================
   RESPONSIVE — SMALL MOBILE  <= 480px
   ============================================================ */

@media (max-width: 480px) {
  .lk-hero-tags  { gap: 7px; }
  .lk-hero-tag   { font-size: 11px; padding: 5px 12px; }
  .lk-hero-actions { flex-direction: column; width: 100%; }
  .lk-btn-wa, .lk-btn-outline { justify-content: center; width: 100%; }

  .lk-proc-steps  { grid-template-columns: 1fr; }
  .lk-service-body { padding: 18px 18px 20px; }
  .lk-detail-content h3 { font-size: 20px; }
}


/* ============================================================
   STATE: kartu aktif saat detail-nya sedang di viewport
   ============================================================ */

.lk-service-active {
  border-color: #CC1F26 !important;
  box-shadow: 0 0 0 3px rgba(204,31,38,0.12) !important;
}

.lk-service-active .lk-service-link {
  gap: 10px;
}

/** Navbar Layout **/ 

/** ===== NAVBAR ===== **/
.navbar {
  width: 100%;
  padding: 10px 50px;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  z-index: 999;
  transition: all 0.3s ease;
}

/*  Navbar setelah di‑scroll  */
.navbar.scrolled {
  position: fixed;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/** Logo  **/
.nav-left {
  flex-shrink: 0;
  align-self: center;
}

.company-logo {
  height: 60px;
  object-fit: contain;
  display: block;
  margin-left: -10px;
}

/** Menu Tengah **/
.nav-center {
  display: flex;
  gap: 75px;
  align-items: center;
}

/*  Warna link default (navbar transparan)  */
.nav-center a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

/*  Hover / aktif saat navbar transparan  */
.nav-center a:hover,
.nav-center a.active {
  color: #ffffff;
}

/*  Underline  */
.nav-center a:hover::after,
.nav-center a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
}

/* ----------  ⬆️  PERBAIKAN: WARNA LINK SAAT SCROLL  ⬆️  ---------- */
.navbar.scrolled .nav-center a {
  color: #333333;
  font-family: 'Montserrat', sans-serif;
}

.navbar.scrolled .nav-center a:hover,
.navbar.scrolled .nav-center a.active {
  color: #1B2A6B;
}

.navbar.scrolled .nav-center a:hover::after,
.navbar.scrolled .nav-center a.active::after {
  background: #CC1F26;
}


/* ----------  Tombol Kanan  ---------- */
.nav-right {
  display: flex;
  align-items: center;
}

.try-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 13px 31px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
}

.try-btn:hover {
  background-color: #CC1F26;
  border-color: #CC1F26;
  color: white;
}

.navbar.scrolled .try-btn {
  border-color: #1B2A6B;
  color: #1B2A6B;
}

.navbar.scrolled .try-btn:hover {
  background-color: #CC1F26;
  border-color: #CC1F26;
  color: #ffffff;
}


/* ----------  Hamburger  ---------- */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger img {
  width: 30px;
  height: 30px;
}

/* ----------  Mobile Menu (Popup)  ---------- */
.nav-menu {
  display: none;
  list-style: none;
  position: absolute;
  top: 75px;
  right: 10px;
  width: 90vw;
  max-width: 300px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  flex-direction: column;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu li {
  width: 100%;
}

.nav-menu a {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 4px;
}

.nav-menu a:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.nav-menu.show {
  display: flex;
}

/* ===== DESKTOP DROPDOWN ===== */
.dropdown-menu {
position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(10px);
  gap: 50px 24px;        /* sama dengan: column-gap:50px; row-gap:24px; */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 32px 40px;    /* top‑bottom 32 px (was 28 px) */
  display: flex;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 998;
  white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- LINK STYLE ---------- */
.dropdown-menu a {
  display: block;
  margin: 10px 0;            /* jarak vertikal nyaman */
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  text-decoration: none;      /* Hapus underline bawaan */
  position: relative;
  transition: color 0.2s ease;
}

/* Garis tipis MENGGANTIKAN underline */
.dropdown-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.dropdown-menu a:hover {
  color: #CC1F26;
}
.dropdown-menu a:hover::after {
  opacity: 1;                 /* Muncul garis saat hover */
}

/* ---------- SECTION TITLE ---------- */
.dropdown-title,
.mobile-group-title {
  font-weight: 700;
  font-size: 14px;
  margin: 12px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;                /* default hitam */
}

/* ---------- NAVBAR TRANSPARAN ---------- */
.navbar:not(.scrolled) .dropdown-menu {
  background: rgba(0, 0, 0, 0.5);
}
.navbar:not(.scrolled) .dropdown-menu a {
  color: #fff;
}
.navbar:not(.scrolled) .dropdown-menu a::after {
  background: #fff;
}
.navbar:not(.scrolled) .dropdown-title {
  color: #fff;                /* judul putih juga */
}

/* ========================================================= */
/* ================  MOBILE  –  NAV & DROPDOWN  ============ */
/* ========================================================= */
@media screen and (max-width: 768px) {

  .nav-center,
  .nav-right {
    display: none !important;
  }

  .hamburger {
    display: block;
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 1001;
  }

  .navbar {
    padding: 12px 20px;
  }

  .company-logo { height: 35px; }

  /* ── PANEL UTAMA ── */
  #nav-menu {
    display: block;
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    opacity: 0;
    pointer-events: none;
    width: 92%;
    max-width: 340px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(27, 42, 107, 0.1);
    border: 1px solid rgba(27, 42, 107, 0.08);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;

    overflow-y: auto;
    max-height: calc(100dvh - 90px); /* dvh lebih akurat di mobile */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  #nav-menu.show {
    display: block;
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  #nav-menu > ul {
  padding-bottom: 0; /* jangan ada padding yang bikin gap aneh */
  }

  /* Pastikan CTA tetap di bawah & tidak terpotong */
  .nav-mobile-cta {
    position: sticky;  /* HAPUS ini jika ada, biarkan ikut scroll */
    /* kosongkan, biarkan ikut scroll normal */
  }

  /* ── LINK BIASA ── */
  #nav-menu ul li > a {
    color: #0F1B3D !important;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f4ff;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
  }

  #nav-menu ul li:last-child > a {
    border-bottom: none;
  }

  #nav-menu ul li > a:hover {
    color: #CC1F26 !important;
    background: #fff5f5;
  }

  /* ── MOBILE TRIGGER (LAYANAN KAMI ▾) ── */
  .dropdown-mobile .mobile-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #0F1B3D;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #f0f4ff;
    transition: background 0.2s;
  }

  .dropdown-mobile .mobile-trigger:hover {
    background: #fff5f5;
    color: #CC1F26;
  }

  /* Panah rotate saat aktif */
  .dropdown-mobile .mobile-trigger .trigger-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #6B7A99;
  }

  .dropdown-mobile.active .mobile-trigger .trigger-arrow {
    transform: rotate(180deg);
    color: #CC1F26;
  }

  .dropdown-mobile.active .mobile-trigger {
    color: #CC1F26;
    background: #fff5f5;
  }

  /* ── SUBMENU ── */
  .dropdown-mobile-menu {
    display: none;
    flex-direction: column;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
    padding: 6px 0;
  }

  .dropdown-mobile.active .dropdown-mobile-menu {
    display: flex;
  }

  /* Judul grup dalam submenu */
  .mobile-group-title {
    padding: 10px 24px 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1B2A6B;
    opacity: 1;
    margin-top: 4px;
  }

  /* Link dalam submenu */
  .dropdown-mobile-menu a {
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.15s, color 0.15s;
    border-left: 2px solid transparent;
  }

  .dropdown-mobile-menu a:hover {
    background: #fff5f5;
    color: #CC1F26;
    border-left-color: #CC1F26;
  }

  /* ── TOMBOL HUBUNGI KAMI di bawah ── */
  .nav-mobile-cta {
    padding: 14px 20px;
    border-top: 1px solid #f0f4ff;
  }

  .nav-mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #1B2A6B, #CC1F26);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .nav-mobile-cta a:hover {
    opacity: 0.9;
  }
}

.footer {
  background-color: #1B2A6B;
  color: #fff;
  padding: 60px 30px 0;
  font-family: 'Roboto', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
}

/* --- Brand --- */
.footer-brand {
  flex: 0 0 260px;
}

.footer-logo {
  height: 55px;
  object-fit: contain;
  display: block;
  margin-left: -10px;
  margin-bottom: 14px;
}

.footer-brand h3 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.5;
  color: #fff;
}

.footer-brand p {
  font-size: 12px;
  color: #a0aec0;
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-brand h4 {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

/* Contact list */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #a0aec0;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-contact-item:hover {
  color: #fff;
}

.footer-contact-item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

/* --- Group --- */
.footer-group {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 1;
}

/* Kolom layanan (lebar, 2 sub-kolom) */
.footer-col {
  flex: 1 1 320px;
}

.footer-col h4,
.footer-col-sm h4 {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* 2 kolom di dalam layanan */
.footer-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.footer-col ul,
.footer-col-sm ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li,
.footer-col-sm ul li {
  font-size: 12px;
  color: #a0aec0;
  margin-bottom: 8px;
  line-height: 1.5;
  cursor: default;
  transition: color 0.2s;
}

.footer-col ul li:hover,
.footer-col-sm ul li:hover {
  color: #fff;
}

/* Kolom kecil (perusahaan + info) */
.footer-col-sm {
  flex: 0 0 160px;
}

/* --- Certification bar --- */
.footer-certification {
  background-color: #1B2A6B;
  color: #a0aec0;
  padding: 30px 30px 20px;
  text-align: center;
  margin-top: 50px;
}

.cert-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 0 auto 24px;
}

.cert-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cert-text {
  font-size: 12px;
  max-width: 500px;
  line-height: 1.6;
  color: #a0aec0;
}

.cert-text strong { color: #fff; }

.cert-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.cert-logos img {
  height: 36px;
  max-width: 90px;
  object-fit: contain;
  filter: brightness(0) invert(0.6);
  transition: filter 0.2s;
}

.cert-logos img:hover { filter: brightness(0) invert(1); }

.footer-bottom-text {
  margin-top: 20px;
  font-size: 11px;
  color: #4a5568;
  padding-bottom: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .footer-two-col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer { padding: 40px 20px 0; }

  .footer-container {
    flex-direction: column;
    gap: 32px;
  }

  .footer-brand { flex: 0 0 auto; width: 100%; }

  .footer-group { gap: 24px; }

  .footer-col { flex: 1 1 100%; }

  .footer-col-sm { flex: 0 0 100%; }

  .footer-certification { padding: 24px 20px 16px; margin-top: 32px; }
}

@media (max-width: 480px) {
  .footer-two-col {
    grid-template-columns: 1fr;
  }
}


/* ==========================================
   AI CHATBOT FAB BUTTON
============================================ */
.chat-fab {
  position: fixed;
  right: 22px;
  bottom: 86px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1B2A6B;
  color: white;
  border-radius: 50px;
  padding: 10px 18px 10px 12px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(30,58,138,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  user-select: none;
}

.chat-fab:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(30,58,138,0.45); }

.chat-fab-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-fab-label {
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Notif dot */
.chat-fab-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid white;
  display: none;
}

.chat-fab-dot.active { display: block; }

@media (max-width: 480px) {
  .chat-fab { padding: 9px 14px 9px 10px; bottom: 80px; }
  .chat-fab-label { font-size: 0.8rem; }
  .chat-fab-icon { width: 34px; height: 34px; }
}


/* ==========================================
   AI CHATBOT WINDOW
============================================ */
.chatbot-window {
  position: fixed;
  right: 22px;
  bottom: 160px;
  width: 360px;
  max-height: 520px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  border: 1px solid rgba(30,58,138,0.1);
  display: flex;
  flex-direction: column;
  z-index: 1001;
  overflow: hidden;
  animation: chatSlideIn 0.25s ease;
}

@keyframes chatSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header */
.chatbot-header {
  background: #1B2A6B;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.chatbot-header-info { display: flex; align-items: center; gap: 10px; }

.chatbot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chatbot-name { font-size: 0.875rem; font-weight: 700; color: white; }

.chatbot-status {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 1px;
}

.chatbot-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.chatbot-close {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.chatbot-close:hover { background: rgba(255,255,255,0.18); }

/* Messages */
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 2px; }

.chatbot-msg { display: flex; }
.chatbot-msg-bot { justify-content: flex-start; }
.chatbot-msg-user { justify-content: flex-end; }

.chatbot-bubble {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 0.845rem;
  line-height: 1.6;
}

.chatbot-msg-bot .chatbot-bubble {
  background: #f4f6fb;
  border: 1px solid rgba(27,42,107,0.12);
  color: #1e293b;
  border-radius: 4px 14px 14px 14px;
}

.chatbot-msg-user .chatbot-bubble {
  background: #1B2A6B;
  color: white;
  border-radius: 14px 4px 14px 14px;
}

/* Quick replies */
.chatbot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 0 8px;
}

.chatbot-quick {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1B2A6B;
  background: #EEF0F8;
  border: 1px solid rgba(27,42,107,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.chatbot-quick:hover { background: #CC1F26; color: white; border-color: #CC1F26; }

/* Typing indicator */
.chatbot-typing {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 10px 13px;
  background: #f4f6fb;
  border: 1px solid rgba(27,42,107,0.12);
  border-radius: 4px 14px 14px 14px;
  width: fit-content;
}

.chatbot-typing span {
  width: 6px; height: 6px;
  background: #1B2A6B;
  border-radius: 50%;
  animation: typingBounce 1.2s infinite;
}

.chatbot-typing span:nth-child(2) { animation-delay: 0.2s; }
.chatbot-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* Input */
.chatbot-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1rem;
  border-top: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.chatbot-input {
  flex: 1;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 0.85rem;
  color: var(--gray-800, #1e293b);
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.chatbot-input:focus { border-color: #1B2A6B; }
.chatbot-input::placeholder { color: #94a3b8; }

.chatbot-send {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #1B2A6B;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.chatbot-send:hover { background: #CC1F26; }
.chatbot-send:disabled { background: #8fa0c9; cursor: not-allowed; }

@media (max-width: 480px) {
  .chatbot-window {
    right: 10px;
    left: 10px;
    width: auto;
    bottom: 140px;
    max-height: 460px;
  }
}

/* ============================================================
   HERO PAGE ANIMATIONS (fadeSlideUp — sama seperti About.css)
   ============================================================ */

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

[data-scroll-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-scroll-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hero elements animate on load */
.section-subtitle {
  animation: fadeSlideUp 0.7s ease both;
  animation-delay: 0.1s;
}
.section-title {
  animation: fadeSlideUp 0.7s ease both;
  animation-delay: 0.25s;
}
.section-text {
  animation: fadeSlideUp 0.7s ease both;
  animation-delay: 0.4s;
}
.button-header {
  animation: fadeSlideUp 0.7s ease both;
  animation-delay: 0.55s;
}

/* gc-image / gc-text slide in */
.gc-image[data-scroll-reveal] {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.gc-text[data-scroll-reveal] {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.gc-image[data-scroll-reveal].revealed,
.gc-text[data-scroll-reveal].revealed {
  opacity: 1;
  transform: translateX(0);
}


/* ============================================================
   PARTNER — Enhanced dual-row (sama seperti About.css)
   ============================================================ */

.partners-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.partners-container::before,
.partners-container::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.partners-container::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}
.partners-container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.partner-track {
  display: flex !important;
  gap: 24px;
  white-space: nowrap;
  overflow: hidden !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.partner-item {
  flex: 0 0 auto;
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.partner-item:hover {
  border-color: #dce5f8;
  box-shadow: 0 2px 12px rgba(27,42,107,0.07);
}

.partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  filter: grayscale(40%);
  transition: filter 0.2s;
}
.partner-item:hover img {
  filter: grayscale(0%);
}


/* ============================================================
   SCOPE TEASER — New section replacing layanan grid
   ============================================================ */

.scope-teaser-section {
  padding: 88px 0;
  background: #f8faff;
}

.scope-teaser-inner {
  width: min(1200px, 90%);
  margin-inline: auto;
}

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

.scope-teaser-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #CC1F26;
  background: #fff0f0;
  border: 1px solid rgba(204,31,38,0.2);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.scope-teaser-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  color: #1B2A6B;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.scope-teaser-header p {
  font-size: 16px;
  color: #64748b;
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.7;
  font-family: 'Montserrat', sans-serif;
}

.scope-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.scope-teaser-card {
  background: #fff;
  border: 1px solid #e8edf6;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.scope-teaser-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #1B2A6B;
  border-radius: 16px 16px 0 0;
}

.scope-teaser-card--accent::before { background: #CC1F26; }

.scope-teaser-card:hover {
  border-color: #c8d0e0;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(27,42,107,0.08);
}

.stc-num {
  font-size: 48px;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  color: rgba(27,42,107,0.08);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.scope-teaser-card--accent .stc-num { color: rgba(204,31,38,0.08); }

.stc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B2A6B;
  margin-bottom: 16px;
}

.scope-teaser-card--accent .stc-icon {
  background: #fff0f0;
  color: #CC1F26;
}

.scope-teaser-card h3 {
  font-size: 17px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #1B2A6B;
  margin-bottom: 8px;
}

.scope-teaser-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.stc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.stc-list li {
  font-size: 12px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stc-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #CC1F26;
  flex-shrink: 0;
}

.stc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #CC1F26;
  text-decoration: none;
  align-self: flex-start;
  transition: gap 0.2s;
}
.stc-link:hover { gap: 9px; }

.scope-teaser-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.scope-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1B2A6B;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.scope-cta-btn:hover { background: #0d1b4a; transform: translateY(-2px); }

.scope-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.scope-cta-wa:hover { background: #1db954; transform: translateY(-2px); }

@media (max-width: 1024px) {
  .scope-teaser-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .scope-teaser-grid { grid-template-columns: 1fr; }
  .scope-teaser-cta { flex-direction: column; align-items: center; }
  .scope-cta-btn, .scope-cta-wa { width: 100%; justify-content: center; }
}


/* ============================================================
   GALLERY MASONRY — New design
   ============================================================ */

.our-gallery {
  padding: 88px 0;
  background: #1B2A6B;
}

.gallery-header {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 min(5%, 60px);
}

.gallery-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,183,188,0.9);
  margin-bottom: 10px;
}

.gallery-header h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.gallery-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin-inline: auto;
  font-family: 'Montserrat', sans-serif;
}

.gallery-masonry {
  width: min(1280px, 94%);
  margin-inline: auto;
  columns: 4;
  column-gap: 12px;
  padding: 0 min(3%, 40px);
}

.gm-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gm-item.gm-tall {
  display: block;
}

.gm-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gm-item.gm-tall img { height: auto; }

.gm-item:hover img { transform: scale(1.06); }

.gm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gm-item:hover .gm-overlay { opacity: 1; }

.gm-overlay span {
  font-size: 12px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  letter-spacing: 0.04em;
}

.gallery-footer-cta {
  text-align: center;
  margin-top: 40px;
  padding: 0 min(5%, 60px);
}

.gallery-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s, transform 0.2s;
}
.gallery-cta-btn:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

@media (max-width: 1024px) {
  .gallery-masonry { columns: 3; }
}
@media (max-width: 640px) {
  .gallery-masonry { columns: 2; }
  .our-gallery { padding: 52px 0; }
}
@media (max-width: 380px) {
  .gallery-masonry { columns: 1; }
}


/* gm-item scroll reveal */
.gm-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.gm-item.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   PARTNER / CLIENT SECTION
   ============================================================ */
.our-partners {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  overflow: hidden;
}

.our-partners-tittle {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #000;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.partners-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
}

.partner-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.partner-track.scroll-left {
  animation-name: scrollLeft;
  animation-duration: 30s;
}

.partner-track.scroll-right {
  animation-name: scrollRight;
  animation-duration: 30s;
}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.partner-track:hover {
  animation-play-state: paused;
}

.partner-item {
  flex: 0 0 auto;
  width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 12px;
  padding: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.partner-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border-color: #c8cce0;
}

.partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: grayscale(30%);
  transition: filter 0.2s;
}

.partner-item:hover img {
  filter: grayscale(0%);
}

@media (max-width: 600px) {
  .partner-item {
    width: 120px;
    height: 60px;
    padding: 10px;
  }
  .our-partners-tittle {
    font-size: 22px;
  }
}
