/* ================================= */
/* TOKENS + RESET */
/* ================================= */
:root {
  --bg: #f4f7fc;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --text: #11243d;
  --muted: #5f6f85;
  --primary: #0b3a5b;
  --primary-2: #0f4d77;
  --accent: #ffcc00;
  --accent-soft: #ffe07d;
  --success: #00c853;
  --border: #d8e3f2;
  --shadow: 0 14px 34px rgba(11, 58, 91, 0.12);
  --shadow-strong: 0 18px 44px rgba(11, 58, 91, 0.18);
  --radius-lg: 20px;
  --radius-md: 14px;
  --section-dark-base: #08263c;
  --section-dark-mid: #0b3a5b;
  --section-dark-end: #0f4d77;
  --section-light-base: #ffffff;
  --section-light-mid: #f6faff;
  --section-light-end: #edf4ff;
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

main {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1200;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.12);
}

.scroll-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #ffcc00, #ffd84d, #7bd7ff);
  box-shadow: 0 0 14px rgba(255, 204, 0, 0.45);
}

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

section {
  position: relative;
  padding: 110px 0;
  scroll-margin-top: 86px;
  transition: opacity 0.45s ease;
}

@supports (content-visibility: auto) {
  main > section:not(#home) {
    content-visibility: auto;
    contain-intrinsic-size: auto 960px;
  }
}

#home {
  min-height: 100vh;
  padding: 145px 0 110px;
}

#home,
#layanan,
#portfolio,
#testimoni {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 204, 0, 0.22), transparent 32%),
    radial-gradient(circle at 90% 15%, rgba(116, 225, 188, 0.18), transparent 30%),
    linear-gradient(
      135deg,
      var(--section-dark-base) 0%,
      var(--section-dark-mid) 45%,
      var(--section-dark-end) 100%
    );
}

#about,
#pricing-section,
#blog,
#kontak {
  background: linear-gradient(
    180deg,
    var(--section-light-base) 0%,
    var(--section-light-mid) 58%,
    var(--section-light-end) 100%
  );
}

#about {
  padding-bottom: 48px;
}

/* ================================= */
/* REVEAL + PAGE TRANSITION */
/* ================================= */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.55s ease,
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 🔥 AKTIF */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* 🔥 VARIASI */
.reveal-left {
  transform: translateX(-34px);
}

.reveal-right {
  transform: translateX(34px);
}

.reveal-scale {
  transform: scale(0.96);
}

/* 🔥 AKTIF VARIASI */
.reveal.active.reveal-left,
.reveal.active.reveal-right {
  transform: translateX(0);
}

.reveal.reveal-auto {
  transition-delay: var(--reveal-delay, 0s) !important;
}

main section[id].section-swoop {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.58s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

main section[id].section-swoop.section-swoop-left {
  transform: translate3d(-24px, 26px, 0);
}

main section[id].section-swoop.section-swoop-right {
  transform: translate3d(24px, 26px, 0);
}

main section[id].section-swoop.section-swoop-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.page-transition {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(2px);
}

body.page-transition.page-ready {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 0.65s ease,
    transform 0.65s ease,
    filter 0.65s ease;
}

/* main section[id].section-shell {
  position: relative;
  isolation: isolate;
  opacity: 0.62;
  transform: translateY(42px) scale(0.988);
  filter: saturate(0.86);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s cubic-bezier(0.22, 1, 0.36, 1);
} */

main section[id].section-shell {
  position: relative;
  isolation: isolate;
  opacity: 1; /* 🔥 FIX */
  transform: none; /* 🔥 FIX */
  filter: none; /* 🔥 FIX */
  opacity: 0.95;
}

main section[id].section-shell.section-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

main section[id].section-shell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(260px, 44%);
  height: 3px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transform: translateX(-50%) scaleX(0.12);
  transform-origin: center;
  background: linear-gradient(
    90deg,
    rgba(255, 204, 0, 0),
    rgba(255, 204, 0, 0.96),
    rgba(255, 204, 0, 0)
  );
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

main section[id].section-shell.section-current::before {
  opacity: 0.95;
  transform: translateX(-50%) scaleX(1);
}

body.section-transitioning::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  background: radial-gradient(circle at 50% 42%, rgba(255, 204, 0, 0.12), rgba(255, 204, 0, 0) 58%);
  animation: sectionTransitGlow 0.65s ease forwards;
}

section.section-focus {
  animation: sectionFocusPulse 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes sectionTransitGlow {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes sectionFocusPulse {
  0% {
    box-shadow: inset 0 0 0 100vmax rgba(255, 204, 0, 0.11);
  }
  100% {
    box-shadow: inset 0 0 0 0 rgba(255, 204, 0, 0);
  }
}

/* ================================= */
/* NAVBAR */
/* ================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 0;
  backdrop-filter: blur(8px);
  background: rgba(11, 58, 91, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(3, 22, 39, 0.16);
  transition:
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.navbar.scrolled {
  backdrop-filter: blur(12px);
  background: rgba(11, 58, 91, 0.95);
  box-shadow: 0 8px 22px rgba(3, 22, 39, 0.2);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

section {
  scroll-margin-top: 100px;
}

#pricing-section {
  min-height: 100vh;
}
section {
  padding-top: 120px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  padding: 2px 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.015);
  transition: background-color 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-area::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%) scale(0.97);
  background: radial-gradient(circle, rgba(255, 204, 0, 0.24), rgba(255, 204, 0, 0));
  opacity: 0.06;
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-area img {
  width: 46px;
  transform: translateZ(0) scale(1);
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.logo-area span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-shadow: 0 0 0 rgba(255, 204, 0, 0);
  transition:
    color 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    text-shadow 0.62s ease;
  transform: translateY(0);
}

.logo-area:hover img {
  transform: translateZ(0) scale(1.005);
}

.logo-area:hover::before {
  opacity: 0.24;
  transform: translateY(-50%) scale(1);
}

.logo-area:hover span {
  color: #ffe79a;
  text-shadow: 0 0 3px rgba(255, 204, 0, 0.14);
}

.logo-area:hover {
  background: rgba(255, 255, 255, 0.04);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-icon {
  display: none;
}

.sidebar-only-icon {
  display: none;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding: 6px 2px;

  transition:
    color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-menu > a,
.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 0;
}

.nav-menu a:hover {
  color: #ffffff;
  transform: translateY(-1px);
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.15);
}

.nav-menu > a.active,
.dropdown > a.active {
  color: #ffcc00;
  font-weight: 700; /* jadi bold */
  letter-spacing: 0.4px;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.4);
}

.nav-menu > a::after,
.dropdown > a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;

  width: 0;
  height: 2.5px;
  border-radius: 999px;

  background: linear-gradient(90deg, #ffcc00, #ffe27a);

  transform: translateX(-50%);
  opacity: 0;

  transition:
    width 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
}

.nav-menu > a:hover::after,
.dropdown > a:hover::after {
  width: 100%;
  opacity: 1;
}

.nav-menu > a.active::after,
.dropdown > a.active::after {
  width: 100%;
  opacity: 1;
  box-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
}

.nav-menu a,
.nav-menu a::after {
  will-change: transform, width, opacity;
}

.nav-menu > a:hover,
.nav-menu > a.active,
.dropdown > a:hover,
.dropdown > a.active {
  transform: none;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  justify-content: center;
}

.dropdown-toggle span {
  display: inline-flex;
  align-items: center;
}

.dropdown-caret-button {
  width: 24px;
  height: 24px;
  margin-left: 2px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-caret {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease;
  transform-origin: center;
  opacity: 0.92;
}

.dropdown.open .dropdown-caret-button,
.dropdown:hover .dropdown-caret-button,
.dropdown:focus-within .dropdown-caret-button {
  background: rgba(255, 204, 0, 0.14);
  border-color: rgba(255, 204, 0, 0.22);
  box-shadow: 0 8px 18px rgba(255, 204, 0, 0.12);
}

.dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  padding: 10px;
  display: grid;
  gap: 6px;
  border-radius: 12px;
  background: rgba(8, 38, 60, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transform-origin: top;
  transition:
    opacity 0.4s ease,
    transform 0.46s ease,
    visibility 0.4s ease;
}

.dropdown-menu a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 10px;
  border-radius: 10px;
  transition:
    background 0.42s ease,
    color 0.42s ease;
}

.dropdown-menu a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.dropdown.open .nav-caret,
.dropdown:hover .nav-caret,
.dropdown:focus-within .nav-caret {
  color: #ffe27a;
  transform: rotate(180deg);
}

.dropdown.open > a {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.28);
}

.dropdown.open > a::after {
  width: 100%;
  opacity: 1;
  box-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
}

.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, #00cc55, #00b34a);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0, 200, 83, 0.3);
  transition:
    transform 0.34s ease,
    box-shadow 0.34s ease;
}

.navbar .cta-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  gap: 7px;
  padding: 8px 13px;
  font-size: 12px;
  box-shadow: 0 8px 16px rgba(0, 200, 83, 0.26);
  transform: translateY(0);
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, box-shadow;
}

.navbar .cta-btn::before {
  content: '';
  position: absolute;
  inset: -12% -32%;
  z-index: -1;
  background: linear-gradient(
    120deg,
    transparent 36%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 64%
  );
  opacity: 0.12;
  transform: translateX(-30%) skewX(-18deg);
  transition: opacity 0.72s ease;
}

.navbar .cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 200, 83, 0.34);
}

.wa-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar .cta-btn .wa-icon {
  width: 16px;
  height: 16px;
}

.navbar .cta-btn span {
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar .cta-btn:hover {
  color: #000;
  transition: color 0.3s ease;
}

.navbar .cta-btn:hover::before {
  opacity: 0.24;
}

.navbar .cta-btn:hover .wa-icon {
  transform: translateX(0.25px) scale(1.005);
}

.navbar .cta-btn:hover span {
  transform: translateX(0.15px);
}

.navbar .cta-btn:active {
  transform: translateY(-0.2px);
}

@media (hover: hover) and (pointer: fine) {
  .nav-menu a,
  .logo-area img,
  .navbar .cta-btn,
  .navbar .cta-btn span,
  .wa-icon {
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
  }
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.hamburger span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

/* ================================= */
/* FLOATING WHATSAPP */
/* ================================= */
.wa-floating {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 997;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  transition: opacity 0.25s ease;
}

.wa-button {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00cc55, #00b34a);
  box-shadow: 0 12px 28px rgba(0, 200, 83, 0.42);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.25s ease;
}

.wa-button img {
  width: 30px;
  height: 30px;
}

.wa-button:hover {
  transform: scale(1.06);
}

.wa-badge {
  position: absolute;
  top: 6px;
  right: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff4252;
  border: 2px solid #ffffff;
}

.wa-popup {
  max-width: 260px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  font-size: 13px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.wa-popup.show {
  opacity: 1;
  transform: none;
}

.wa-floating.bounce .wa-button {
  animation: waBounce 0.7s ease;
}

@keyframes waBounce {
  0% {
    transform: translateY(0);
  }
  38% {
    transform: translateY(-8px);
  }
  72% {
    transform: translateY(0);
  }
  86% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ================================= */
/* SECTION TITLES + COMMON CARDS */
/* ================================= */
.section-title {
  text-align: center;
  margin-bottom: 44px;
}

.section-title h2,
.blog-header h2,
.testimonial-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1.22;
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.section-title h2::after,
.blog-header h2::after,
.testimonial-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 62%;
  height: 3px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #ffcc00;
  animation: titleAccentBreathe 5.6s ease-in-out infinite;
}

@keyframes titleAccentBreathe {
  0%,
  100% {
    width: 62%;
    opacity: 0.9;
    box-shadow: 0 0 0 rgba(255, 204, 0, 0);
  }
  50% {
    width: 68%;
    opacity: 1;
    box-shadow: 0 0 14px rgba(255, 204, 0, 0.24);
  }
}

.section-title p {
  max-width: 680px;
  margin: 10px auto 0;
  color: var(--muted);
}

#layanan .section-title h2,
#portfolio .section-title h2,
#testimoni .testimonial-header h2 {
  color: #ffffff;
}

#layanan .section-title p,
#portfolio .section-title p,
#testimoni .testimonial-header p {
  color: rgba(255, 255, 255, 0.9);
}

.about-card,
.team-card,
.layanan-card,
.portfolio-card,
.pricing-card,
.blog-card,
.testimonial-card,
.kontak-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ================================= */
/* HERO */
/* ================================= */
.hero {
  opacity: 0;
  transform: scale(0.95);
  transition: all 1s ease;
}

.hero.active {
  opacity: 1;
  transform: scale(1);
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

/* ================= HERO TITLE FIX FINAL ================= */
.hero-content {
  margin-top: 20px; /* 🔥 turunkan sedikit */
}

.hero-content h1 {
  color: #ffffff;

  /* 🔥 lebih kecil & proporsional */
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);

  line-height: 1.3;
  max-width: 560px;

  /* 🔥 biar tidak terlalu nempel */
  margin-bottom: 12px;
}

/* highlight warna */
.hero-content h1 span {
  color: #ffe27a;
}

/* ================= TYPEWRITER ================= */
.hero-content h1 .hero-typewrite {
  display: inline-block;
  position: relative;
  white-space: normal;
  min-height: 1.1em;
}

/* cursor */
.hero-content h1 .hero-typewrite::after {
  content: '';
  display: inline-block;

  /* 🔥 lebih kecil */
  width: 1.5px;
  height: 0.8em;

  margin-left: 5px;
  vertical-align: -0.05em;

  background: currentColor;
  opacity: 0;
}

/* animasi cursor */
.hero-content h1 .hero-typewrite.is-typing::after,
.hero-content h1 .hero-typewrite.is-typing-done::after {
  opacity: 1;
  animation: heroCaretBlink 0.9s steps(1, end) infinite;
}

/* ================= RESPONSIVE ================= */

/* tablet */
@media (max-width: 992px) {
  .hero-content {
    margin-top: 25px;
  }

  .hero-content h1 {
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    line-height: 1.35;
  }
}

/* mobile */
@media (max-width: 600px) {
  .hero-content {
    margin-top: 30px;
  }

  .hero-content h1 {
    font-size: 1.3rem;
    line-height: 1.4;
    max-width: 100%;
  }
}

@keyframes heroCaretBlink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.hero-content p {
  margin-top: 16px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.portfolio-btn,
.btn-order,
.kontak-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn-primary {
  background: var(--success);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 200, 83, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid var(--accent);
  color: #ffffff;
  background: transparent;
}

.btn-secondary:hover {
  background: var(--accent);
  color: #0c2b44;
  transform: translateY(-2px);
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
  transform: translateY(0) scale(1);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-buttons .btn-primary:hover,
.hero-buttons .btn-secondary:hover {
  transform: translateY(-1px) scale(1.006);
}

.hero-social {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-social span {
  color: rgba(255, 255, 255, 0.86);
  margin-right: 2px;
}

.hero-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(0) scale(1);
  box-shadow: 0 0 0 rgba(255, 204, 0, 0);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-social a:hover {
  transform: translateY(-1px) scale(1.02);
  background: rgb(255, 204, 0);
  border-color: rgba(255, 204, 0, 0.4);
  box-shadow: 0 8px 16px rgba(255, 204, 0, 0.2);
}

.hero-image {
  position: relative;
  will-change: transform;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image img {
  width: min(100%, 520px);
  margin-inline: auto;
  filter: drop-shadow(0 22px 44px rgba(2, 15, 28, 0.42));
  animation: heroFloat 5.6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ================================= */
/* ABOUT */
/* ================================= */
.about {
  background:
    radial-gradient(circle at 8% 12%, rgba(11, 58, 91, 0.1), transparent 34%),
    radial-gradient(circle at 90% 90%, rgba(255, 204, 0, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.about .reveal {
  transform: translateY(80px);
}

#about .container {
  --about-block-gap: 24px;
}

#about .container > .section-title {
  margin-bottom: 0;
}

#about .container > .about-card,
#about .container > .about-grid,
#about .container > .team-section {
  margin-top: var(--about-block-gap);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--about-block-gap);
  margin-top: 0;
}

.about-card {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  background: linear-gradient(155deg, #08263c 0%, #0b3a5b 52%, #0f4d77 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 38px rgba(4, 23, 38, 0.28);
  transform: translateZ(0);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 204, 0, 0.5), #ffcc00, rgba(255, 204, 0, 0.5));
}

.about-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 84% 22%, rgba(255, 204, 0, 0.22), transparent 42%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 204, 0, 0.55);
  box-shadow: 0 24px 48px rgba(4, 23, 38, 0.36);
}

.about-card:hover::after {
  opacity: 1;
}

.about-card h3 {
  color: #ffffff;
  font-size: clamp(1.28rem, 2vw, 1.45rem);
  margin-bottom: 12px;
}

.about-card h3 i {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 204, 0, 0.18);
  color: #ffd44a;
  box-shadow: 0 10px 20px rgba(255, 204, 0, 0.16);
  transform: translateY(0) scale(1) rotate(0deg);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  animation: aboutIconFloat 4s ease-in-out infinite;
}

.about-card h3 i:hover,
.about-card:hover h3 i {
  transform: translateY(-1px) scale(1.04) rotate(-2deg);
  background: rgba(255, 204, 0, 0.24);
  color: #ffe89e;
  box-shadow: 0 12px 22px rgba(255, 204, 0, 0.24);
}

@keyframes aboutIconFloat {
  0%,
  100% {
    background: rgba(255, 204, 0, 0.16);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.16);
  }
  50% {
    background: rgba(255, 204, 0, 0.21);
    box-shadow: 0 12px 22px rgba(255, 204, 0, 0.23);
  }
}

.about-card p,
.about-card li {
  color: #dceafc;
  line-height: 1.75;
}

.about-card ul {
  list-style: none;
  margin: 0;
}

.about-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.about-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 1px;
  color: #ffcc00;
  font-weight: 700;
}

.about-card.highlight {
  background: linear-gradient(145deg, #092a44 0%, #114f79 100%);
  border-color: rgba(255, 204, 0, 0.38);
  box-shadow: 0 20px 46px rgba(4, 23, 38, 0.34);
}

.about-card.highlight h3,
.about-card.highlight p,
.about-card.highlight li {
  color: #f3f8ff;
}

.about-card.highlight li::before {
  color: #ffcc00;
}

.team-section {
  margin-top: 0;
  text-align: center;
}

.team-section > h3 {
  display: block;
  text-align: center;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  width: 100%;
  margin: 0 0 28px;
  padding-bottom: 0;
  color: #0b3a5b;
}

.team-section > h3::after {
  display: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.team-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #08263c 0%, #0b3a5b 52%, #0f4d77 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 40px rgba(4, 23, 38, 0.3);
  padding: 24px 22px;
  text-align: center;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  transform-style: preserve-3d;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px rgba(4, 23, 38, 0.4);
  border-color: rgba(255, 204, 0, 0.5);
}

.team-avatar {
  position: relative;
  width: 126px;
  height: 126px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: visible;
}

.team-avatar::before {
  content: '';
  position: absolute;
  inset: -6px;
  display: block;
  pointer-events: none;
  border-radius: 50%;
  border: 2px dashed rgba(255, 204, 0, 0.64);
  border-right-color: rgba(255, 235, 153, 0.9);
  border-bottom-color: rgba(255, 204, 0, 0.34);
  opacity: 0.74;
  z-index: 2;
  will-change: transform, opacity;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: teamOrbitRing 8s linear infinite;
  animation: teamOrbitRing 8s linear infinite;
  transition: opacity 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-avatar::after {
  content: '';
  position: absolute;
  inset: -11px;
  display: block;
  pointer-events: none;
  border-radius: 50%;
  border-top: 2px solid rgba(255, 224, 125, 0.9);
  border-right: 2px solid rgba(255, 204, 0, 0.42);
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  opacity: 0.9;
  z-index: 2;
  will-change: transform, opacity;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: teamOrbitRingReverse 5.6s linear infinite;
  animation: teamOrbitRingReverse 5.6s linear infinite;
  transition: opacity 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card img {
  width: 114px;
  height: 114px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 10px 22px rgba(11, 58, 91, 0.18),
    0 0 0 4px rgba(255, 204, 0, 0.2);
  image-rendering: auto;
  position: relative;
  z-index: 1;
  backface-visibility: hidden;
  transform: translateZ(0) scale(1) translateY(0);
  -webkit-transform: translateZ(0) scale(1) translateY(0);
  transition:
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:hover .team-avatar::before {
  opacity: 0.78;
}

.team-card:hover .team-avatar::after {
  opacity: 0.98;
}

.team-card:hover .team-avatar img {
  transform: translateZ(0) scale(1.024) translateY(-1px);
  -webkit-transform: translateZ(0) scale(1.024) translateY(-1px);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 12px 24px rgba(11, 58, 91, 0.22),
    0 0 0 5px rgba(255, 204, 0, 0.2);
  filter: saturate(1.03);
}

@-webkit-keyframes teamOrbitRing {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes teamOrbitRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes teamOrbitRingReverse {
  0% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes teamOrbitRingReverse {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.team-card h4 {
  color: #ffffff;
  font-size: 1.15rem;
}

.team-card span {
  color: #d8e9ff;
  font-size: 14px;
}

.team-social {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  color: #ffe07d;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transform: translateY(0) scale(1);
  box-shadow: 0 0 0 rgba(255, 204, 0, 0);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  animation: aboutSocialPulse 3.8s ease-in-out infinite;
}

.team-social a:nth-child(2) {
  animation-delay: 0.16s;
}

.team-social a:nth-child(3) {
  animation-delay: 0.28s;
}

.team-social a:nth-child(4) {
  animation-delay: 0.4s;
}

.team-social a:nth-child(5) {
  animation-delay: 0.52s;
}

.team-social a i {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-social a:hover {
  transform: translateY(-1px) scale(1.05);
  background: #ffcc00;
  color: #0b3a5b;
  border-color: rgba(255, 204, 0, 0.5);
  box-shadow: 0 8px 16px rgba(255, 204, 0, 0.22);
}

.team-social a:hover i {
  transform: scale(1.04) rotate(2deg);
}

@keyframes aboutSocialPulse {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 rgba(255, 204, 0, 0);
  }
  50% {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 12px rgba(255, 204, 0, 0.12);
  }
}

.spotlight {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 204, 0, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  filter: blur(2px);
}

.team-card:hover .spotlight {
  opacity: 1;
}

.team-card > * {
  position: relative;
  z-index: 1;
}

/* ================================= */
/* LAYANAN */
/* ================================= */
.layanan {
  background:
    radial-gradient(circle at 10% 18%, rgba(11, 58, 91, 0.1), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(255, 204, 0, 0.18), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
}

.layanan-lead {
  margin: 0 auto 30px;
  max-width: 980px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(15, 77, 119, 0.14);
  border-left: 4px solid #ffcc00;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 255, 0.95));
  color: #1f3f59;
  font-size: 15px;
  line-height: 1.72;
  box-shadow: 0 12px 28px rgba(11, 58, 91, 0.1);
}

.layanan-groups {
  display: grid;
  gap: 22px;
}

.layanan-group {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(15, 77, 119, 0.14);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.97),
    rgba(246, 251, 255, 0.95),
    rgba(255, 255, 255, 0.95)
  );
  box-shadow: 0 16px 38px rgba(11, 58, 91, 0.12);
}

.layanan-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(15, 77, 119, 0.05),
    rgba(255, 204, 0, 0.75),
    rgba(15, 77, 119, 0.05)
  );
}

.layanan-group-head {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.layanan-group-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 77, 119, 0.18);
  background: rgba(15, 77, 119, 0.08);
  color: #0f4d77;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition:
    border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.layanan-group-pill i {
  color: #ffcc00;
  font-size: 12px;
}

.layanan-group-head h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: #0b3a5b;
  line-height: 1.3;
  transition:
    color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    text-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.layanan-group-head p {
  max-width: 760px;
  color: var(--muted);
  font-size: 14px;
}

@keyframes layananGroupShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.layanan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.layanan-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: minmax(52px, auto) auto;
  column-gap: 12px;
  row-gap: 10px;
  align-items: start;
  padding: 20px 18px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fafdff 100%);
  border-color: rgba(15, 77, 119, 0.14);
  text-align: left;
  transform: translateY(0);
  will-change: transform, box-shadow;
  opacity: 0;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.layanan-card.active {
  opacity: 1;
  transform: translateY(0);
}

.layanan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0f4d77, #ffcc00);
  opacity: 0;
  transform: scaleX(0.32);
  transform-origin: left;
  transition:
    opacity 0.32s ease,
    transform 0.32s ease;
}

.layanan-card:hover {
  transform: translateY(-7px);
  border-color: rgba(15, 77, 119, 0.28);
  box-shadow: 0 18px 36px rgba(11, 58, 91, 0.18);
}

.layanan-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.layanan-card i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f4d77, #136295);
  box-shadow: 0 10px 20px rgba(15, 77, 119, 0.22);
  transform: translateY(0) scale(1);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}

.layanan-card:hover i {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, #136295, #0f4d77);
  box-shadow: 0 14px 30px rgba(15, 77, 119, 0.32);
  filter: brightness(1.08);
}

.layanan-card h4 {
  font-size: 1.03rem;
  line-height: 1.35;
  margin: 0;
  color: #0d2f49;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  transform: translateY(-1px);
}

.layanan-card p {
  color: var(--muted);
  font-size: 14px;
}

.layanan-points {
  list-style: none;
  display: grid;
  gap: 7px;
  grid-column: 1 / -1;
  margin-top: 2px;
}

.layanan-points li {
  position: relative;
  padding-left: 16px;
  color: #5d6f85;
  font-size: 13.5px;
  line-height: 1.55;
}

.layanan-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f4d77, #ffcc00);
  box-shadow: 0 0 0 3px rgba(15, 77, 119, 0.08);
}

.layanan-group-cta {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.layanan-mini-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 77, 119, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 255, 0.96));
  color: #0f4d77;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 20px rgba(11, 58, 91, 0.1);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.layanan-mini-cta::before {
  content: '';
  position: absolute;
  inset: -18% -24%;
  z-index: -1;
  opacity: 0;
  transform: translateX(-36%) skewX(-16deg);
  background: linear-gradient(
    120deg,
    transparent 32%,
    rgba(255, 204, 0, 0.34) 50%,
    transparent 68%
  );
  transition:
    opacity 0.32s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.layanan-mini-cta i {
  font-size: 11px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.layanan-mini-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 204, 0, 0.65);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 249, 226, 0.98));
  color: #0b3a5b;
  box-shadow: 0 14px 26px rgba(11, 58, 91, 0.16);
}

.layanan-mini-cta:hover::before {
  opacity: 0.24;
  transform: translateX(0) skewX(-16deg);
}

.layanan-mini-cta:hover i {
  transform: translateX(2px);
}

@supports selector(.layanan-group:has(.layanan-card:hover)) {
  .layanan-group:has(.layanan-card:hover) .layanan-mini-cta,
  .layanan-group:has(.layanan-card:focus-within) .layanan-mini-cta {
    transform: translateY(-2px);
    border-color: rgba(255, 204, 0, 0.72);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 249, 226, 0.98));
    color: #0b3a5b;
    box-shadow: 0 15px 28px rgba(11, 58, 91, 0.18);
  }

  .layanan-group:has(.layanan-card:hover) .layanan-mini-cta::before,
  .layanan-group:has(.layanan-card:focus-within) .layanan-mini-cta::before {
    opacity: 0.24;
    transform: translateX(0) skewX(-16deg);
  }

  .layanan-group:has(.layanan-card:hover) .layanan-mini-cta i,
  .layanan-group:has(.layanan-card:focus-within) .layanan-mini-cta i {
    transform: translateX(2px);
  }

  .layanan-group:has(.layanan-card:hover) .layanan-group-head h3,
  .layanan-group:has(.layanan-card:focus-within) .layanan-group-head h3,
  .layanan-group:has(.layanan-mini-cta:hover) .layanan-group-head h3,
  .layanan-group:has(.layanan-mini-cta:focus-visible) .layanan-group-head h3 {
    color: #0a3553;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
    transform: translateY(-1px);
  }

  .layanan-group:has(.layanan-card:hover) .layanan-group-pill,
  .layanan-group:has(.layanan-card:focus-within) .layanan-group-pill,
  .layanan-group:has(.layanan-mini-cta:hover) .layanan-group-pill,
  .layanan-group:has(.layanan-mini-cta:focus-visible) .layanan-group-pill {
    border-color: rgba(255, 204, 0, 0.5);
    background: rgba(255, 204, 0, 0.12);
    box-shadow: 0 8px 16px rgba(11, 58, 91, 0.12);
    color: #0b3a5b;
  }
}

@supports not selector(.layanan-group:has(.layanan-card:hover)) {
  .layanan-group:hover .layanan-mini-cta {
    transform: translateY(-2px);
    border-color: rgba(255, 204, 0, 0.72);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 249, 226, 0.98));
    color: #0b3a5b;
    box-shadow: 0 15px 28px rgba(11, 58, 91, 0.18);
  }

  .layanan-group:hover .layanan-mini-cta::before {
    opacity: 0.24;
    transform: translateX(0) skewX(-16deg);
  }

  .layanan-group:hover .layanan-mini-cta i {
    transform: translateX(2px);
  }

  .layanan-group:hover .layanan-group-head h3,
  .layanan-group:focus-within .layanan-group-head h3 {
    color: #0a3553;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
    transform: translateY(-1px);
  }

  .layanan-group:hover .layanan-group-pill,
  .layanan-group:focus-within .layanan-group-pill {
    border-color: rgba(255, 204, 0, 0.5);
    background: rgba(255, 204, 0, 0.12);
    box-shadow: 0 8px 16px rgba(11, 58, 91, 0.12);
    color: #0b3a5b;
  }
}

/* ================================= */
/* PORTFOLIO */
/* ================================= */
.portfolio {
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 204, 0, 0.2), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(123, 215, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #061f32 0%, #0a3552 48%, #0f4d77 100%);
}

.portfolio-lead {
  margin: 0 auto 28px;
  max-width: 960px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid #ffcc00;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  color: rgba(236, 245, 255, 0.94);
  font-size: 14px;
  line-height: 1.68;
  box-shadow: 0 16px 32px rgba(2, 15, 28, 0.2);
  backdrop-filter: blur(10px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
  border-color: rgba(15, 77, 119, 0.14);
  box-shadow: 0 16px 36px rgba(11, 58, 91, 0.14);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
  opacity: 0;
  transform: scale(0.85);
}

.portfolio-card.active {
  opacity: 1;
  transform: scale(1);
}

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0f4d77, #ffcc00);
  opacity: 0.9;
}

.portfolio-card:hover {
  border-color: rgba(15, 77, 119, 0.26);
  box-shadow: 0 22px 44px rgba(11, 58, 91, 0.2);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  margin: 14px 14px 0;
  border-radius: 14px;
  border: 1px solid rgba(15, 77, 119, 0.14);
}

.portfolio-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.045);
}

.portfolio-preview {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(7, 36, 56, 0.76), rgba(11, 58, 91, 0.56));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-preview {
  opacity: 1;
}

.portfolio-preview a {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #0f4d77;
  font-weight: 700;
  font-size: 13px;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.portfolio-preview a:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ffe27a, #ffcc00);
  color: #0b3a5b;
  box-shadow: 0 10px 20px rgba(255, 204, 0, 0.34);
}

.portfolio-content {
  padding: 20px 20px 22px;
}

.portfolio-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 77, 119, 0.18);
  background: rgba(15, 77, 119, 0.06);
  color: #0f4d77;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28px;
  text-transform: uppercase;
}

.portfolio-content h3 {
  color: #0d2f49;
  margin-bottom: 9px;
  line-height: 1.32;
}

.portfolio-content p {
  color: #5e6f82;
  font-size: 14px;
  line-height: 1.62;
  position: relative;
  display: block;
  max-height: calc(1.62em * 4);
  overflow: hidden;
  will-change: max-height;
  transition: max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-content p::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.3em;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(247, 252, 255, 0),
    rgba(247, 252, 255, 0.96) 72%,
    #f7fcff 100%
  );
  opacity: 1;
  transition: opacity 0.3s ease;
}

.portfolio-card.is-expanded .portfolio-content p {
  max-height: calc(1.62em * 12);
  overflow: visible;
}

.portfolio-card.is-expanded .portfolio-content p::after {
  opacity: 0;
}

.portfolio-expand-hint {
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  margin-bottom: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px dashed rgba(15, 77, 119, 0.24);
  background: rgba(15, 77, 119, 0.06);
  color: #4d6782;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12px;
  max-height: 28px;
  overflow: hidden;
  opacity: 0.95;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    max-height 0.34s ease,
    margin 0.34s ease;
}

.portfolio-expand-hint::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f4d77, #ffcc00);
}

.portfolio-expand-hint:focus-visible {
  outline: 0;
  border-color: rgba(255, 204, 0, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.22);
}

.portfolio-card.is-expanded .portfolio-expand-hint {
  cursor: pointer;
  border-color: rgba(255, 204, 0, 0.62);
  background: rgba(255, 204, 0, 0.16);
  color: #0b3a5b;
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-card:hover .portfolio-content p {
    max-height: calc(1.62em * 12);
    overflow: visible;
  }

  .portfolio-card:focus-within .portfolio-content p {
    max-height: calc(1.62em * 12);
    overflow: visible;
  }

  .portfolio-card:hover .portfolio-content p::after {
    opacity: 0;
  }

  .portfolio-card:focus-within .portfolio-content p::after {
    opacity: 0;
  }

  .portfolio-card:hover .portfolio-expand-hint {
    opacity: 0;
    transform: translateY(-4px);
    max-height: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (hover: none), (pointer: coarse) {
  .portfolio-expand-hint {
    cursor: pointer;
  }
}

.portfolio-tech {
  margin: 16px 0 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-tech span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 77, 119, 0.08);
  border: 1px solid rgba(15, 77, 119, 0.2);
  color: #1c4e74;
  font-size: 12px;
  font-weight: 600;
}

.portfolio-btn {
  background: linear-gradient(135deg, #0f4d77, #136295);
  color: #ffffff;
  border: 1px solid rgba(15, 77, 119, 0.22);
  box-shadow: 0 10px 22px rgba(11, 58, 91, 0.2);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-btn:hover {
  background: linear-gradient(135deg, #ffe27a, #ffcc00);
  color: #0a2f4b;
  border-color: rgba(255, 204, 0, 0.78);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255, 204, 0, 0.36);
}

.portfolio-btn:focus-visible {
  outline: 0;
  background: linear-gradient(135deg, #ffe27a, #ffcc00);
  color: #0a2f4b;
  border-color: rgba(255, 204, 0, 0.82);
  box-shadow:
    0 0 0 3px rgba(255, 204, 0, 0.26),
    0 12px 24px rgba(255, 204, 0, 0.3);
}

.cursor-light {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 204, 0, 0.2),
    rgba(15, 77, 119, 0.12),
    transparent 68%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}

.portfolio-card:hover .cursor-light {
  opacity: 1;
}

/* ================================= */
/* PRICING */
/* ================================= */
.pricing-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 204, 0, 0.16), transparent 26%),
    radial-gradient(circle at 10% 84%, rgba(11, 58, 91, 0.08), transparent 32%),
    linear-gradient(180deg, #fbfdff 0%, #f5faff 48%, #edf4ff 100%);
}

.pricing-header .section-title {
  margin-bottom: 22px;
}

.pricing-header .section-title h2,
.pricing-header .section-title p {
  color: #12324b;
}

.pricing-trust {
  margin: 0 auto 28px;
  width: fit-content;
  max-width: 100%;
  text-align: center;
  color: #38566f;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18px;
  border: 1px solid rgba(15, 77, 119, 0.16);
  border-radius: 999px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(11, 58, 91, 0.08);
}

.toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  color: #38566f;
  font-weight: 600;
}

.switch {
  position: relative;
  display: inline-block;
  width: 62px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.34);
  transition: background 0.25s ease;
}

.slider::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(11, 58, 91, 0.24);
  transition: transform 0.25s ease;
}

.switch input:checked + .slider {
  background: rgba(255, 204, 0, 0.38);
}

.switch input:checked + .slider::before {
  transform: translateX(28px);
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  --float-base: 0px;
  --card-scale: 1;
  position: relative;
  overflow: hidden;
  padding: 30px 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 204, 0, 0.14), transparent 34%),
    linear-gradient(165deg, #071f32 0%, #0a3552 52%, #0f4d77 100%);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 42px rgba(2, 16, 29, 0.28);
  color: #eef6ff;
  backdrop-filter: blur(12px);
  transform: translateY(var(--float-base)) scale(var(--card-scale));
  transform-origin: center top;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  animation: pricingCardFloat 5.2s ease-in-out infinite;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 204, 0, 0.3), #ffcc00, rgba(123, 215, 255, 0.32));
}

.pricing-card:nth-child(2n) {
  animation-delay: 0.18s;
}

.pricing-card:nth-child(3n) {
  animation-delay: 0.34s;
}

.pricing-card::after {
  content: '';
  position: absolute;
  inset: auto -30% -55% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.26), rgba(255, 204, 0, 0));
  opacity: 0;
  transition: opacity 0.42s ease;
}

.pricing-card:hover {
  transform: translateY(calc(var(--float-base) - 10px)) scale(calc(var(--card-scale) + 0.015));
  border-color: rgba(255, 204, 0, 0.56);
  box-shadow: 0 28px 58px rgba(2, 16, 29, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 204, 0, 0.18), transparent 34%),
    linear-gradient(165deg, #08263c 0%, #0b3a5b 52%, #12557f 100%);
  animation-play-state: paused;
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card.popular {
  --float-base: -14px;
  --card-scale: 1.1;
  overflow: visible;
  z-index: 3;
  border-color: rgba(255, 204, 0, 0.85);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 204, 0, 0.18), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(255, 204, 0, 0.3), transparent 36%),
    linear-gradient(162deg, #0a3148 0%, #15537c 54%, #1a6e98 100%);
  box-shadow:
    0 36px 74px rgba(255, 204, 0, 0.24),
    0 20px 42px rgba(2, 16, 29, 0.3);
}

.pricing-card.popular h3 {
  color: #fff6cb;
}

.pricing-card.popular .pricing-copy,
.pricing-card.popular .pricing-target,
.pricing-card.popular .pricing-range,
.pricing-card.popular .pricing-market {
  color: rgba(244, 249, 255, 0.86);
}

.pricing-card.popular .price {
  border-color: rgba(255, 204, 0, 0.58);
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.24), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 16px 32px rgba(255, 204, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pricing-card.popular .pricing-note {
  color: rgba(255, 248, 222, 0.92);
  background: rgba(255, 204, 0, 0.12);
  border-color: rgba(255, 204, 0, 0.22);
}

.pricing-card.popular li {
  color: rgba(246, 250, 255, 0.94);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.3px;
  font-weight: 700;
  color: #08263c;
  background: #ffcc00;
  box-shadow: 0 10px 22px rgba(255, 204, 0, 0.35);
  animation: popularBadgeLift 4.2s ease-in-out infinite;
}

@keyframes popularBadgeLift {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    box-shadow: 0 10px 22px rgba(255, 204, 0, 0.35);
  }
  50% {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 14px 28px rgba(255, 204, 0, 0.42);
  }
}

.pricing-card h3 {
  text-align: center;
  font-size: 1.4rem;
  color: #ffffff;
}

.pricing-copy {
  margin: 10px auto 0;
  text-align: center;
  color: rgba(228, 240, 255, 0.82);
  font-size: 13px;
  line-height: 1.65;
  max-width: 300px;
}

.pricing-target {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  color: rgba(228, 240, 255, 0.76);
}

.price {
  margin: 12px auto 4px;
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 14px;
  text-align: center;
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.15px;
  color: #fff7d6;
  border: 1px solid rgba(255, 204, 0, 0.44);
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.2), rgba(255, 255, 255, 0.06));
  box-shadow:
    0 12px 24px rgba(255, 204, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  text-wrap: balance;
  display: grid;
  gap: 4px;
  animation: pricePulse 3.6s ease-in-out infinite;
}

.price-prefix {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(244, 250, 255, 0.68);
}

.price-value {
  font-size: clamp(1.04rem, 2vw, 1.32rem);
  font-weight: 700;
  color: #ffffff;
}

.pricing-note {
  margin: 8px 0 16px;
  font-size: 13px;
  line-height: 1.68;
  color: rgba(232, 242, 255, 0.84);
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-range {
  margin-top: 8px;
  text-align: center;
  color: rgba(228, 240, 255, 0.74);
  font-size: 13px;
}

.pricing-subtitle {
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #ffe27a;
}

.pricing-card ul {
  list-style: none;
  margin: 10px 0 16px;
  display: grid;
  gap: 8px;
}

.pricing-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(236, 245, 255, 0.88);
  font-size: 14px;
  line-height: 1.62;
}

.pricing-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 2px;
  color: #ffcc00;
  display: inline-block;
  line-height: 1;
  font-weight: 700;
  background: transparent;
  width: auto;
  height: auto;
}

.pricing-market {
  margin-top: 4px;
  color: rgba(228, 240, 255, 0.76);
  font-size: 13px;
  line-height: 1.65;
}

.pricing-fit {
  margin: 10px 0 22px;
}

.btn-order {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffe27a, #ffcc00);
  color: #08263c;
  border: 1px solid rgba(255, 204, 0, 0.72);
  box-shadow: 0 14px 28px rgba(255, 204, 0, 0.2);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-order::before {
  content: '';
  position: absolute;
  inset: -8% -30%;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 36%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 64%
  );
  transform: translateX(-45%) skewX(-16deg);
  opacity: 0;
  transition: opacity 0.34s ease;
}

.btn-order:hover {
  background: linear-gradient(135deg, #ffffff, #fff4c3);
  color: #061f32;
  border-color: rgba(255, 255, 255, 0.92);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.18);
}

.btn-order:hover::before {
  opacity: 0.55;
}

.btn-order:focus-visible {
  outline: 0;
  background: linear-gradient(135deg, #ffffff, #fff4c3);
  color: #061f32;
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 3px rgba(255, 204, 0, 0.24),
    0 12px 24px rgba(255, 204, 0, 0.22);
}

.pricing-bottom-note {
  margin: 20px auto 0;
  max-width: 760px;
  text-align: center;
  color: #44617b;
  font-size: 14px;
  line-height: 1.65;
}

@keyframes pricingCardFloat {
  0%,
  100% {
    transform: translateY(var(--float-base)) scale(var(--card-scale));
  }
  50% {
    transform: translateY(calc(var(--float-base) - 4px)) scale(var(--card-scale));
  }
}

@keyframes pricePulse {
  0%,
  100% {
    box-shadow:
      0 12px 24px rgba(255, 204, 0, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
  50% {
    box-shadow:
      0 16px 32px rgba(255, 204, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

/* ================================= */
/* BLOG */
/* ================================= */
.blog-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 14%, rgba(11, 58, 91, 0.08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 204, 0, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 56%, #eef5ff 100%);
}

.blog-header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.blog-header p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.mobile-swipe-hint {
  display: none;
  width: fit-content;
  margin: 0 auto 14px;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  backdrop-filter: blur(4px);
}

.mobile-swipe-hint i {
  font-size: 12px;
  animation: swipeHintPulse 1.8s ease-in-out infinite;
}

.mobile-swipe-hint--light {
  color: rgba(255, 255, 255, 0.92);
  border: 1px dashed rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.mobile-swipe-hint--dark {
  color: #37536c;
  border: 1px dashed rgba(15, 77, 119, 0.28);
  background: rgba(15, 77, 119, 0.08);
}

.pricing-section .mobile-swipe-hint {
  color: #37536c;
  border: 1px dashed rgba(15, 77, 119, 0.28);
  background: rgba(15, 77, 119, 0.08);
}

@keyframes swipeHintPulse {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.84;
  }
  50% {
    transform: translateX(2px);
    opacity: 1;
  }
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.blog-card {
  --blog-float-delay: 0s;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(165deg, #08263c 0%, #0b3a5b 52%, #0f4d77 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 44px rgba(4, 23, 38, 0.3);
  transform: translateY(0) scale(1);
  will-change: transform, box-shadow;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:nth-child(2) {
  --blog-float-delay: 0.18s;
}

.blog-card:nth-child(3) {
  --blog-float-delay: 0.34s;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(255, 204, 0, 0.26),
    rgba(255, 204, 0, 0.95),
    rgba(255, 204, 0, 0.26)
  );
  opacity: 0.75;
  transform: scaleX(0.7);
  transform-origin: center;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.42s ease;
}

.blog-card::after {
  content: '';
  position: absolute;
  inset: auto -35% -35% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.22), transparent 62%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.012);
  border-color: rgba(255, 204, 0, 0.42);
  box-shadow: 0 26px 60px rgba(4, 23, 38, 0.4);
  animation-play-state: paused;
}

.blog-card:hover::before {
  transform: scaleX(1);
  opacity: 1;
}

.blog-card:hover::after {
  opacity: 1;
}

.blog-card.show {
  animation:
    blogRiseIn 0.58s ease both,
    blogCardFloat 6.6s ease-in-out calc(0.58s + var(--blog-float-delay)) infinite;
}

@keyframes blogRiseIn {
  0% {
    transform: translateY(18px) scale(0.99);
    opacity: 0.72;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.blog-img {
  position: relative;
  aspect-ratio: 16 / 10;
  height: auto;
  overflow: hidden;
  background: #07233a;
}

.blog-img::before {
  content: '';
  position: absolute;
  inset: -16% -55%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    transparent 38%,
    rgba(255, 255, 255, 0.24) 50%,
    transparent 62%
  );
  transform: translateX(-54%) skewX(-18deg);
  opacity: 0;
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.42s ease;
}

.blog-img::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(5, 25, 41, 0.42) 100%);
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
  transition:
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-img img {
  transform: scale(1.08) translateY(-2px);
  filter: saturate(1.1);
}

.blog-card:hover .blog-img::before {
  opacity: 0.95;
  transform: translateX(8%) skewX(-18deg);
}

.blog-content {
  padding: 20px 20px 22px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-content {
  transform: translateY(-2px);
}

.blog-category {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 204, 0, 0.16);
  border: 1px solid rgba(255, 204, 0, 0.36);
  color: #ffe37e;
}

.blog-content h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.35;
}

.blog-content p {
  color: #d9eaff;
  line-height: 1.72;
  flex-grow: 1;
}

.blog-btn {
  align-self: flex-start;
  min-width: 172px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  background: #ffcc00;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #08263c;
  transition: all 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-btn:hover {
  background: #ffffff;
  color: #051b2d;
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.28);
}

.blog-btn:focus-visible {
  outline: 0;
  background: #ffffff;
  color: #051b2d;
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.28),
    0 10px 22px rgba(255, 255, 255, 0.24);
}

@keyframes blogCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* ================================= */
/* TESTIMONIAL */
/* ================================= */
.testimonial-section {
  padding: 102px 0 86px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 204, 0, 0.2), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(116, 225, 188, 0.12), transparent 26%),
    linear-gradient(145deg, #071f32 0%, #0b3a5b 50%, #0f4d77 100%);
}

.testimonial-header {
  text-align: center;
  margin-bottom: 32px;
}

.testimonial-header h2 {
  display: inline-block;
  color: #ffffff;
  margin-bottom: 12px;
}

.testimonial-header p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-slider {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 4px 54px 0;
  overflow: hidden;
}

.testimonial-slider.testimonial-slider--mobile-swipe {
  padding: 4px clamp(24px, 4vw, 54px) 0;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  padding: 8px 0 14px;
  min-height: 0;
  will-change: transform;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.testimonial-slider--mobile-swipe .testimonial-track {
  overflow-x: auto;
  overflow-y: visible;
  padding: 8px 2px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  cursor: grab;
}

.testimonial-slider--mobile-swipe .testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-track.dragging,
.testimonial-track:active {
  cursor: grabbing;
}

.testimonial-slider.is-swiping {
  cursor: grabbing;
}

.testimonial-slider.is-swiping .nav-btn {
  opacity: 0.7;
}

.testimonial-slider.is-swiping .testimonial-card,
.testimonial-slider.is-swiping .testimonial-card.active {
  transform: none;
  box-shadow: 0 12px 28px rgba(6, 38, 58, 0.17);
}

.testimonial-card {
  position: relative;
  min-width: 316px;
  padding: 22px 20px;
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.99), rgba(244, 249, 255, 0.96));
  border: 1px solid rgba(11, 58, 91, 0.14);
  box-shadow: 0 12px 28px rgba(6, 38, 58, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateX(80px);
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-slider--mobile-swipe .testimonial-card {
  flex: 0 0 clamp(300px, 31vw, 360px);
  min-width: 0;
  scroll-snap-align: start;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 58, 91, 0.24);
  box-shadow: 0 16px 32px rgba(6, 38, 58, 0.2);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 44px;
  line-height: 1;
  color: rgba(11, 58, 91, 0.16);
  font-weight: 700;
  animation: quoteDrift 6.8s ease-in-out infinite;
}

@keyframes quoteDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.84;
  }
  50% {
    transform: translate3d(0, -4px, 0);
    opacity: 1;
  }
}

.testimonial-card.active {
  transform: translateY(-5px);
  border-color: rgba(255, 204, 0, 0.66);
  box-shadow: 0 18px 36px rgba(6, 38, 58, 0.18);
}

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

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}

.client-img,
.client-placeholder {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-img {
  border: 2px solid rgba(11, 58, 91, 0.2);
}

.client-placeholder {
  border: 2px solid rgba(11, 58, 91, 0.2);
  color: #0b3a5b;
  background: linear-gradient(145deg, #f3f8ff, #e2efff);
}

.client-name {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0f2f48;
  font-size: 16px;
}

.testimonial-top span {
  color: #5a6c80;
  font-size: 13px;
}

.verified-badge {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1d9bf0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(29, 155, 240, 0.38);
}

.verified-badge svg {
  width: 13px;
  height: 13px;
}

.testimonial-rating {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 204, 0, 0.2);
  border: 1px solid rgba(255, 204, 0, 0.48);
  color: #8a6300;
  font-weight: 700;
}

.testimonial-rating i {
  color: #f2be12;
  font-size: 13px;
  filter: none;
}

.testimonial-rating i.fa-star-half-stroke {
  color: #f7cf57;
}

.testimonial-text {
  color: #27435b;
  line-height: 1.68;
  font-size: 15px;
}

.chat-proof {
  margin-top: auto;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 170px;
  border-radius: 12px;
  border: 1px solid rgba(11, 58, 91, 0.16);
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(11, 58, 91, 0.12);
}

.testimonial-track .client-img,
.testimonial-track .chat-proof {
  -webkit-user-drag: none;
}

.nav-btn {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.92));
  color: #0b3a5b;
  cursor: pointer;
  z-index: 5;
  overflow: hidden;
  box-shadow:
    0 16px 32px rgba(4, 23, 38, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.52);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-btn::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 14px;
  border: 1px solid rgba(255, 204, 0, 0.22);
  pointer-events: none;
  transition:
    border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.nav-btn::after {
  content: '';
  position: absolute;
  inset: auto auto -42% -20%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.26), transparent 72%);
  opacity: 0.82;
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-btn i {
  position: relative;
  z-index: 1;
  font-size: 14px;
}

.nav-btn:hover {
  background: linear-gradient(145deg, #ffffff, #fff8dd);
  color: #0b3a5b;
  border-color: rgba(255, 204, 0, 0.56);
  transform: translateY(-50%) scale(1.08);
  box-shadow:
    0 18px 36px rgba(255, 204, 0, 0.26),
    0 12px 28px rgba(4, 23, 38, 0.18);
}

.nav-btn:hover::before {
  border-color: rgba(255, 204, 0, 0.4);
}

.nav-btn:hover::after {
  opacity: 1;
  transform: scale(1.16);
}

.prev {
  left: 6px;
}

.next {
  right: 6px;
}

.testimonial-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.testimonial-dots span.active {
  background: #ffcc00;
  border-color: #ffcc00;
  transform: scale(1.15);
}

.testimonial-ctaa {
  margin-top: 24px;
  padding: 26px 22px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
  box-shadow: 0 10px 24px rgba(4, 23, 38, 0.22);
}

.testimonial-ctaa h3 {
  color: #ffffff;
  margin-bottom: 8px;
}

.testimonial-ctaa p {
  color: rgba(234, 244, 255, 0.96);
  max-width: 720px;
  margin: 0 auto 15px;
  line-height: 1.64;
}

.testimonial-ctaa .cta-btn {
  background: linear-gradient(135deg, #ffcc00, #ffd856);
  color: #0b3a5b;
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 10px 22px rgba(255, 204, 0, 0.3);
}

.cta-btn:hover {
  background: #fff;
  transform: scale(1.05);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

/* ================================= */
/* KONTAK */
/* ================================= */
.kontak-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(11, 58, 91, 0.08), transparent 28%),
    radial-gradient(circle at 92% 90%, rgba(255, 204, 0, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 58%, #edf4ff 100%);
}

.kontak-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.kontak-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #0b3a5b, #064674);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 45px rgba(11, 58, 91, 0.25);
  padding: 30px;
  transition:
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.kontak-card::before {
  content: '';
  position: absolute;
  inset: -38% auto auto -18%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.28), transparent 68%);
  pointer-events: none;
  animation: kontakGlowOrbit 9.8s ease-in-out infinite;
}

.kontak-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 204, 0, 0.34);
  box-shadow: 0 20px 52px rgba(8, 45, 70, 0.34);
}

.kontak-card h3 {
  position: relative;
  z-index: 1;
  color: #ffcc00;
  font-size: 24px;
  margin-bottom: 20px;
}

.kontak-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  border-radius: 12px;
  padding: 6px 8px;
  margin-inline: -8px;
  transition:
    background 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.kontak-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(2px);
}

.kontak-item i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffcc00;
  color: #0b3a5b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(255, 204, 0, 0.28);
  animation: kontakIconFloat 3.9s ease-in-out infinite;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.kontak-item:nth-child(2) i {
  animation-delay: 0.18s;
}

.kontak-item:nth-child(3) i {
  animation-delay: 0.34s;
}

.kontak-item:hover i {
  transform: translateY(-2px) scale(1.06) rotate(-5deg);
  box-shadow: 0 12px 20px rgba(255, 204, 0, 0.33);
  background: #ffd84d;
}

.kontak-item h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 4px;
}

.kontak-item p,
.kontak-item a {
  color: #e8f3ff;
  text-decoration: none;
  font-size: 14px;
}

.kontak-item a:hover {
  color: #ffcc00;
}

.kontak-map {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 14px;
}

.kontak-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 14px;
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.kontak-card:hover .kontak-map iframe {
  transform: scale(1.02);
  filter: saturate(1.06);
}

.kontak-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kontak-form label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.kontak-form input,
.kontak-form textarea,
.kontak-form select {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  animation: kontakFieldBreathe 4.6s ease-in-out infinite;
}

.kontak-form input::placeholder,
.kontak-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.kontak-form input:hover,
.kontak-form textarea:hover,
.kontak-form select:hover {
  transform: translateX(2px);
  border-color: rgba(255, 204, 0, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.kontak-form input:focus,
.kontak-form textarea:focus,
.kontak-form select:focus {
  transform: translateX(4px) translateY(-1px);
  border-color: #ffcc00;
  box-shadow:
    0 0 0 3px rgba(255, 204, 0, 0.22),
    0 10px 18px rgba(9, 45, 72, 0.24);
  background: rgba(255, 255, 255, 0.16);
  animation: none;
}

.kontak-form input:not(:placeholder-shown),
.kontak-form textarea:not(:placeholder-shown) {
  border-color: rgba(255, 204, 0, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.kontak-form select:valid {
  border-color: rgba(255, 204, 0, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.kontak-form select option {
  color: #0b3a5b;
}

.kontak-submit {
  margin-top: 8px;
  background: linear-gradient(135deg, #ffcc00, #ffd84d);
  color: #0b3a5b;
  box-shadow: 0 12px 24px rgba(255, 204, 0, 0.3);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.kontak-submit:hover {
  background: linear-gradient(135deg, #ffd84d, #ffe37a);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 15px 28px rgba(255, 204, 0, 0.36);
}

.kontak-helper {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

@keyframes kontakIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes kontakFieldBreathe {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 204, 0, 0);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(255, 204, 0, 0.16);
  }
}

@keyframes kontakGlowOrbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.62;
  }
  50% {
    transform: translate3d(24px, 20px, 0);
    opacity: 0.84;
  }
}

/* ================================= */
/* LUXURY CARD FINISH */
/* ================================= */
.layanan-lead,
.portfolio-lead,
.pricing-trust,
.testimonial-ctaa {
  border-radius: 22px;
  backdrop-filter: blur(14px) saturate(1.04);
  box-shadow:
    0 22px 48px rgba(11, 58, 91, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.about-card,
.team-card,
.pricing-card:not(.popular),
.blog-card,
.kontak-card {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 24px 58px rgba(2, 16, 29, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px) saturate(1.05);
}

.about-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 100% 0%, rgba(255, 204, 0, 0.16), transparent 34%),
    linear-gradient(155deg, #08263c 0%, #0b3a5b 52%, #0f4d77 100%);
}

.about-card.highlight {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 100% 0%, rgba(255, 204, 0, 0.2), transparent 34%),
    linear-gradient(145deg, #092a44 0%, #114f79 100%);
}

.team-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 100% 0%, rgba(255, 204, 0, 0.16), transparent 34%),
    linear-gradient(165deg, #08263c 0%, #0b3a5b 52%, #0f4d77 100%);
}

.pricing-card:not(.popular) {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 0% 100%, rgba(255, 204, 0, 0.12), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(123, 215, 255, 0.12), transparent 34%),
    linear-gradient(165deg, #071f32 0%, #0a3552 52%, #0f4d77 100%);
}

.pricing-card.popular {
  box-shadow:
    0 36px 76px rgba(255, 204, 0, 0.24),
    0 24px 52px rgba(2, 16, 29, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.blog-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 100% 0%, rgba(255, 204, 0, 0.16), transparent 34%),
    linear-gradient(165deg, #08263c 0%, #0b3a5b 52%, #0f4d77 100%);
}

.kontak-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 100% 0%, rgba(255, 204, 0, 0.18), transparent 34%),
    linear-gradient(140deg, #0b3a5b, #064674);
}

.layanan-group,
.layanan-card,
.portfolio-card,
.testimonial-card {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 24px 54px rgba(11, 58, 91, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 0 0 1px rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.layanan-group {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 204, 0, 0.14), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(123, 215, 255, 0.12), transparent 26%),
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.98),
      rgba(246, 251, 255, 0.96),
      rgba(255, 255, 255, 0.94)
    );
}

.layanan-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 204, 0, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 253, 255, 0.95));
}

.portfolio-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 204, 0, 0.14), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(123, 215, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
}

.testimonial-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 204, 0, 0.12), transparent 28%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.99), rgba(244, 249, 255, 0.96));
}

.about-card:hover,
.team-card:hover,
.layanan-group:hover,
.layanan-card:hover,
.portfolio-card:hover,
.blog-card:hover,
.pricing-card:not(.popular):hover,
.testimonial-card:hover,
.kontak-card:hover {
  box-shadow:
    0 30px 66px rgba(11, 58, 91, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.pricing-card.popular:hover {
  box-shadow:
    0 42px 88px rgba(255, 204, 0, 0.28),
    0 28px 58px rgba(2, 16, 29, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.testimonial-card.active,
.testimonial-card.active:hover {
  box-shadow:
    0 28px 58px rgba(255, 204, 0, 0.18),
    0 18px 38px rgba(6, 38, 58, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

/* ================================= */
/* FOOTER */
/* ================================= */
.site-footer {
  background: linear-gradient(135deg, #08263c 0%, #0f4d77 100%);
  color: #ffffff;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 28px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 12px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.86);
}

.footer-brand {
  max-width: 340px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: #d9ecff;
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffe173;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.footer-social-links a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  transition: all 0.25s ease;
}

.footer-social-links a:hover {
  transform: translateY(-3px);
  background: #ffcc00;
  color: #0b3a5b;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  padding: 16px 0 20px;
}

/* FIX ALIGN ICON + TEXT (HUBUNGI KAMI) */
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Supaya icon konsisten dan tidak naik turun */
.footer-contact i {
  font-size: 16px;
  min-width: 18px;
  text-align: center;
}

/* Optional: rapikan paragraf lokasi */
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

/* FIX NAVIGASI + ICON */
.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Konsistensi ukuran icon */
.footer-links i {
  font-size: 14px;
  min-width: 18px;
  text-align: center;
}

.footer-links a:hover i {
  transform: translateX(3px);
  transition: 0.2s;
}
/* ================================= */
/* RESPONSIVE: <= 1200 */
/* ================================= */
@media (max-width: 1200px) {
  .logo-area img {
    width: 44px;
  }

  .logo-area::before {
    width: 44px;
    height: 44px;
  }

  .nav-menu {
    gap: 14px;
  }

  .logo-area span {
    font-size: 15px;
  }

  .layanan-group {
    padding: 24px 22px;
  }

  .layanan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .blog-img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .testimonial-slider {
    padding: 4px 46px 0;
  }

  .testimonial-card {
    min-width: 300px;
  }
}

/* ================================= */
/* RESPONSIVE: <= 992 */
/* ================================= */
@media (max-width: 992px) {
  .container {
    width: min(94%, 100%);
  }

  .navbar {
    padding: 8px 0;
  }

  .logo-area img {
    width: 42px;
  }

  .logo-area::before {
    width: 42px;
    height: 42px;
    left: 7px;
  }

  .navbar .cta-btn {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 3%;
    right: 3%;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    padding: 14px;
    border-radius: 14px;
    background: rgba(8, 38, 60, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
    display: grid;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    font-size: 15px;
    padding: 10px 8px;
    border-radius: 10px;
  }

  .nav-menu > a,
  .dropdown > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
  }

  .dropdown-toggle span {
    margin-right: auto;
  }

  .dropdown-caret-button {
    width: 28px;
    height: 28px;
  }

  .dropdown {
    display: grid;
    gap: 4px;
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: visible;
    transform: none;
    display: grid;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
    transition:
      max-height 0.32s ease,
      padding-top 0.32s ease,
      opacity 0.32s ease;
  }

  .dropdown.open .dropdown-menu {
    max-height: 300px;
    opacity: 1;
    margin-top: 10px;
    padding-top: 6px;

    pointer-events: auto;
  }

  .dropdown-menu a {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .hero-social {
    justify-content: center;
  }

  .hero-image img {
    max-width: 360px;
  }

  .layanan-lead {
    padding: 15px 16px;
    font-size: 14.5px;
  }

  .layanan-group {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .layanan-group-cta {
    justify-content: flex-start;
  }

  .portfolio-lead {
    padding: 13px 15px;
  }

  .portfolio-image {
    margin: 12px 12px 0;
  }

  .about-grid,
  .pricing-container,
  .kontak-grid {
    grid-template-columns: 1fr;
  }

  .layanan-grid,
  .portfolio-grid,
  .blog-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pricing-card.popular {
    --float-base: 0px;
    --card-scale: 1.04;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wa-floating {
    right: 16px;
    bottom: 16px;
  }

  .wa-popup {
    max-width: 220px;
  }
}
/* ================================= */
/* RESPONSIVE: <= 768 */
/* ================================= */
@media (max-width: 768px) {
  .mobile-swipe-hint {
    display: inline-flex;
  }

  .nav-menu .menu-icon {
    display: inline-flex !important;
    width: 18px;
    flex-shrink: 0;
    justify-content: center;
    color: rgba(255, 204, 0, 0.95);
    font-size: 14px;
    transition:
      transform 0.26s ease,
      color 0.26s ease;
  }

  .nav-menu a:hover .menu-icon,
  .nav-menu a.active .menu-icon {
    color: #ffe27a;
    transform: translateX(1px);
  }

  #about .container {
    --about-block-gap: 18px;
  }

  section {
    padding: 84px 0;
  }

  #home {
    padding-top: 122px;
  }

  main section[id].section-shell {
    transform: translateY(26px) scale(0.994);
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title p {
    font-size: 14px;
  }

  .layanan-lead {
    margin-bottom: 22px;
    padding: 14px 14px;
    font-size: 14px;
  }

  .layanan-group {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .layanan-group-head {
    margin-bottom: 14px;
  }

  .layanan-group-head p {
    font-size: 13.5px;
  }

  .layanan-group-pill {
    font-size: 11px;
  }

  .layanan-group-cta {
    justify-content: center;
  }

  .layanan-mini-cta {
    width: 100%;
    justify-content: center;
  }

  .portfolio-lead {
    margin-bottom: 20px;
    padding: 12px 13px;
    font-size: 13.5px;
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 5.6vw, 2.2rem);
    line-height: 1.24;
  }

  .hero-content h1 .hero-typewrite {
    white-space: normal;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 340px;
  }

  .about-grid,
  .layanan-grid,
  .team-grid,
  .kontak-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  /* Mobile swipe mode (mirip testimoni) untuk Harga & Blog */
  .pricing-container,
  .blog-container {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 2px 14px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
  }

  .pricing-container::-webkit-scrollbar,
  .blog-container::-webkit-scrollbar {
    display: none;
  }

  .pricing-card,
  .blog-card {
    flex: 0 0 min(86vw, 360px);
    scroll-snap-align: start;
  }

  .pricing-card.popular {
    padding-top: 40px;
    overflow: hidden;
  }

  .pricing-card.popular .popular-badge {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    max-width: calc(100% - 28px);
  }

  .pricing-card {
    animation: none;
  }

  .blog-card.show {
    animation: none;
  }

  .about-card,
  .team-card,
  .layanan-card,
  .portfolio-card,
  .pricing-card,
  .blog-card,
  .testimonial-card,
  .kontak-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .layanan-card h4 {
    font-size: 1rem;
  }

  .portfolio-content {
    padding: 18px;
  }

  .portfolio-label {
    font-size: 10.5px;
  }

  .portfolio-image img {
    height: 188px;
  }

  .blog-img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .blog-content {
    min-height: 0;
    padding: 18px;
  }

  .blog-content h3 {
    font-size: 20px;
  }

  .blog-btn {
    width: 100%;
    text-align: center;
  }

  .testimonial-slider {
    padding: 4px 2px 0;
  }

  .testimonial-slider.testimonial-slider--mobile-swipe {
    padding: 4px 2px 0;
  }

  .testimonial-track {
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 8px 2px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    cursor: grab;
  }

  .testimonial-track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-slider--mobile-swipe .testimonial-track {
    gap: 14px;
    padding: 8px 2px 14px;
  }

  .testimonial-card {
    flex: 0 0 min(86vw, 360px);
    min-width: 0;
    padding: 20px 16px;
    scroll-snap-align: start;
  }

  .testimonial-slider--mobile-swipe .testimonial-card {
    flex: 0 0 min(86vw, 360px);
    min-width: 0;
    padding: 20px 16px;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 15px;
    top: 44%;
  }

  .nav-btn i {
    font-size: 12.5px;
  }

  .prev {
    left: 0;
  }

  .next {
    right: 0;
  }

  .site-footer {
    padding-top: 44px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================= */
/* RESPONSIVE: <= 576 */
/* ================================= */
@media (max-width: 576px) {
  .logo-area span {
    display: block;
    font-size: 14px;
    max-width: 165px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .section-title h2,
  .blog-header h2,
  .testimonial-header h2 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .portfolio-content p {
    max-height: calc(1.62em * 5);
  }

  .hero-content p,
  .layanan-points li,
  .portfolio-lead,
  .portfolio-content p,
  .blog-content p,
  .testimonial-text,
  .kontak-item p,
  .kontak-item a {
    font-size: 14px;
  }

  .btn-primary,
  .btn-secondary,
  .portfolio-btn,
  .btn-order,
  .kontak-submit {
    width: 100%;
    text-align: center;
  }

  .blog-img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .testimonial-card {
    flex: 0 0 88vw;
    min-width: 88vw;
  }

  .testimonial-slider--mobile-swipe .testimonial-card {
    flex: 0 0 88vw;
    min-width: 88vw;
  }

  .nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .nav-btn i {
    font-size: 12px;
  }
}

/* ================================= */
/* RESPONSIVE: <= 380 */
/* ================================= */
@media (max-width: 380px) {
  section {
    padding: 76px 0;
  }

  #home {
    padding-top: 114px;
  }

  .hero-content h1 {
    font-size: 1.65rem;
  }

  .hero-image img {
    max-width: 270px;
  }

  .logo-area span {
    font-size: 12.5px;
    max-width: 128px;
  }

  .blog-img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .wa-popup {
    display: none;
  }
}

/* ================================= */
/* PREMIUM RESPONSIVE REFINEMENTS */
/* ================================= */
@media (min-width: 721px) and (max-width: 1100px) {
  .container {
    width: min(100% - 40px, 1120px);
  }

  section {
    padding: 104px 0;
  }

  #home {
    min-height: auto;
    padding: 138px 0 98px;
  }

  .section-title,
  .blog-header,
  .testimonial-header {
    margin-bottom: 38px;
  }

  .section-title h2,
  .blog-header h2,
  .testimonial-header h2,
  .hero-content h1 {
    text-wrap: balance;
  }

  .section-title p,
  .blog-header p,
  .testimonial-header p {
    max-width: 720px;
    font-size: 15.5px;
    line-height: 1.78;
    text-wrap: balance;
  }

  .hero-wrapper {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 30px;
    align-items: stretch;
    text-align: left;
  }

  .hero-content {
    position: relative;
    overflow: hidden;
    padding: 34px 32px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 204, 0, 0.22), transparent 36%),
      linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    box-shadow: 0 24px 52px rgba(2, 15, 28, 0.22);
    backdrop-filter: blur(18px);
  }

  .hero-content::before {
    content: '';
    position: absolute;
    inset: auto -18% -38% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(123, 215, 255, 0.18), transparent 68%);
  }

  .hero-content h1 {
    max-width: 15ch;
    font-size: clamp(2.2rem, 3.8vw, 3rem);
  }

  .hero-content p {
    max-width: 58ch;
    margin-top: 18px;
    font-size: 15.5px;
    line-height: 1.82;
  }

  .hero-buttons {
    justify-content: flex-start;
    gap: 12px;
  }

  .hero-buttons a {
    min-width: 204px;
  }

  .hero-social {
    justify-content: flex-start;
    gap: 12px;
    margin-top: 20px;
  }

  .hero-social a {
    width: 42px;
    height: 42px;
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.1);
  }

  .hero-image {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 28px 24px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
      radial-gradient(circle at 16% 16%, rgba(255, 204, 0, 0.18), transparent 30%),
      linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    box-shadow: 0 22px 48px rgba(2, 15, 28, 0.2);
  }

  .hero-image::before {
    content: '';
    position: absolute;
    inset: auto auto -26% -10%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
    animation: heroGlowDrift 7.4s ease-in-out infinite;
  }

  @keyframes heroGlowDrift {
    0%,
    100% {
      transform: translate3d(0, 0, 0) scale(1);
      opacity: 0.72;
    }
    50% {
      transform: translate3d(10px, -8px, 0) scale(1.08);
      opacity: 1;
    }
  }

  .hero-image img {
    width: min(100%, 440px);
  }

  .about-grid,
  .kontak-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .team-grid,
  .portfolio-grid,
  .blog-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .layanan-group {
    padding: 28px;
    border-radius: 26px;
  }

  .layanan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .layanan-card {
    min-height: 100%;
    padding: 22px 20px 20px;
  }

  .portfolio-card,
  .pricing-card,
  .blog-card,
  .testimonial-card,
  .kontak-card,
  .about-card,
  .team-card {
    border-radius: 24px;
  }

  .pricing-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 18px 12px 26px;
    scroll-snap-type: x proximity;
    scroll-padding-left: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
  }

  .pricing-container::-webkit-scrollbar {
    display: none;
  }

  .blog-container {
    display: grid;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
    scroll-padding-left: 0;
    scrollbar-width: auto;
    touch-action: auto;
    overscroll-behavior-x: auto;
  }

  .pricing-card {
    flex: 0 0 min(41vw, 360px);
    height: auto;
    scroll-snap-align: start;
  }

  .blog-card {
    flex: initial;
    height: 100%;
    scroll-snap-align: none;
  }

  .pricing-card.popular {
    flex-basis: min(48vw, 420px);
    width: auto;
    justify-self: auto;
    --card-scale: 1.08;
  }

  .pricing-section .mobile-swipe-hint {
    display: inline-flex;
    margin-bottom: 8px;
  }

  .mobile-swipe-hint {
    display: none;
  }

  .testimonial-slider,
  .testimonial-slider.testimonial-slider--mobile-swipe {
    padding: 4px 20px 0;
  }

  .testimonial-track,
  .testimonial-slider--mobile-swipe .testimonial-track {
    gap: 18px;
    padding: 8px 2px 16px;
  }

  .testimonial-card,
  .testimonial-slider--mobile-swipe .testimonial-card {
    flex: 0 0 min(58vw, 420px);
    min-width: 0;
    padding: 24px 22px;
  }

  .testimonial-ctaa {
    padding: 30px 28px;
    border-radius: 24px;
  }

  .kontak-card {
    padding: 32px 28px;
    border-radius: 26px;
  }

  .kontak-form input,
  .kontak-form textarea,
  .kontak-form select,
  .kontak-submit {
    min-height: 50px;
  }

  .kontak-form textarea {
    min-height: 160px;
  }

  .site-footer {
    padding-top: 64px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 992px) {
  body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(3, 17, 29, 0.52);
    backdrop-filter: blur(4px);
  }

  .navbar {
    padding: 10px 0;
  }

  .nav-wrapper {
    gap: 12px;
  }

  .logo-area {
    padding: 4px 8px 4px 4px;
  }

  .logo-area span {
    font-size: 14px;
    line-height: 1.12;
  }

  .hamburger {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 1001;
  }

  .nav-menu {
    top: 76px;
    left: 50%;
    right: auto;
    z-index: 1000;
    width: min(680px, calc(100vw - 28px));
    max-height: calc(100vh - 94px);
    padding: 16px;
    border-radius: 22px;
    gap: 10px;
    background: linear-gradient(165deg, rgba(8, 38, 60, 0.96), rgba(7, 31, 49, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
    transform: translate(-50%, -12px) scale(0.99);
  }

  .nav-menu.active {
    transform: translate(-50%, 0) scale(1);
  }

  .nav-menu a,
  .nav-menu > a,
  .dropdown > a,
  .dropdown-menu a {
    transform: none;
  }

  .nav-menu > a::after,
  .dropdown > a::after {
    display: none;
  }

  .nav-menu .menu-icon {
    display: inline-flex !important;
    width: 18px;
    flex-shrink: 0;
    justify-content: center;
    color: rgba(255, 204, 0, 0.95);
    font-size: 14px;
    transition:
      transform 0.22s ease,
      color 0.22s ease;
  }

  .nav-menu a {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    font-size: 15px;
    line-height: 1.35;
  }

  .nav-menu > a,
  .dropdown > a {
    padding: 14px;
  }

  .dropdown-toggle span {
    margin-right: auto;
  }

  .dropdown-caret-button {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-menu a:hover,
  .nav-menu a.active,
  .dropdown > a:hover,
  .dropdown > a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 204, 0, 0.34);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    text-shadow: none;
  }

  .nav-menu a:hover .menu-icon,
  .nav-menu a.active .menu-icon {
    color: #ffe27a;
    transform: translateX(1px);
  }

  .dropdown.open > a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 204, 0, 0.34);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    text-shadow: none;
  }

  .dropdown {
    gap: 8px;
  }

  .dropdown::after {
    display: none;
  }

  .dropdown-menu {
    max-height: 0;
    padding: 0 0 0 12px;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
  }

  .dropdown.open .dropdown-menu {
    max-height: 300px;
  opacity: 1;
  margin-top: 10px;
    padding-top: 4px;
    
    pointer-events: auto;
  }

  .dropdown-menu a {
    padding: 12px 14px 12px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .wa-floating {
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }

  .wa-popup {
    max-width: 248px;
    font-size: 13.5px;
    line-height: 1.58;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 100%);
  }

  section {
    padding: 86px 0;
    scroll-margin-top: 80px;
  }

  #home {
    min-height: auto;
    padding: 120px 0 86px;
  }

  .section-title,
  .blog-header,
  .testimonial-header {
    margin-bottom: 28px;
  }

  .section-title h2,
  .blog-header h2,
  .testimonial-header h2,
  .hero-content h1 {
    text-wrap: balance;
  }

  .section-title p,
  .blog-header p,
  .testimonial-header p {
    font-size: 14.5px;
    line-height: 1.75;
    text-wrap: balance;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
  }

  .hero-content {
    position: relative;
    overflow: hidden;
    padding: 24px 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 204, 0, 0.18), transparent 34%),
      linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    box-shadow: 0 20px 42px rgba(2, 15, 28, 0.22);
    backdrop-filter: blur(16px);
  }

  .hero-content::before {
    content: '';
    position: absolute;
    inset: auto -24% -34% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(123, 215, 255, 0.16), transparent 72%);
  }

  .hero-content h1 {
    max-width: none;
    font-size: clamp(1.9rem, 7.2vw, 2.45rem);
    line-height: 1.18;
  }

  .hero-content p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.82;
  }

  .hero-buttons {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }

  .hero-buttons a {
    flex: 1 1 240px;
    width: auto;
    max-width: none;
    min-height: 52px;
  }

  .hero-social {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-social a {
    width: 40px;
    height: 40px;
  }

  .hero-image {
    display: grid;
    place-items: center;
    padding: 18px 14px 8px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
      radial-gradient(circle at 12% 14%, rgba(255, 204, 0, 0.16), transparent 28%),
      linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  }

  .hero-image img {
    max-width: min(100%, 340px);
  }

  .about-grid,
  .layanan-grid,
  .team-grid,
  .portfolio-grid,
  .kontak-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-card,
  .team-card,
  .portfolio-card,
  .pricing-card,
  .blog-card,
  .testimonial-card,
  .kontak-card {
    border-radius: 22px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .layanan-group {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .layanan-card {
    padding: 18px 16px 16px;
    grid-template-columns: 48px 1fr;
    row-gap: 8px;
  }

  .layanan-card i {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .layanan-card h4 {
    font-size: 1.04rem;
  }

  .layanan-points li {
    font-size: 14px;
    line-height: 1.65;
  }

  .portfolio-grid {
    gap: 18px;
  }

  .portfolio-image {
    margin: 14px 14px 0;
    border-radius: 18px;
  }

  .portfolio-image img {
    height: 220px;
  }

  .portfolio-content {
    padding: 20px;
  }

  .pricing-container,
  .blog-container {
    gap: 16px;
    padding: 4px 4px 16px;
    scroll-padding-left: 4px;
  }

  .pricing-card,
  .blog-card {
    flex: 0 0 min(84vw, 390px);
    border-radius: 22px;
  }

  .pricing-card.popular {
    --card-scale: 1.03;
  }

  .pricing-card {
    padding: 28px 22px;
  }

  .blog-content {
    padding: 20px 18px 22px;
  }

  .blog-content h3 {
    font-size: 1.28rem;
  }

  .portfolio-btn,
  .blog-btn,
  .kontak-submit,
  .btn-order {
    min-height: 50px;
  }

  .testimonial-slider,
  .testimonial-slider.testimonial-slider--mobile-swipe {
    padding: 4px 4px 0;
  }

  .testimonial-track,
  .testimonial-slider--mobile-swipe .testimonial-track {
    gap: 16px;
    padding: 8px 4px 16px;
  }

  .testimonial-card,
  .testimonial-slider--mobile-swipe .testimonial-card {
    flex: 0 0 min(84vw, 380px);
    min-width: 0;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.75;
  }

  .kontak-card {
    padding: 24px 20px;
  }

  .kontak-card h3 {
    font-size: 1.35rem;
  }

  .kontak-map iframe {
    height: 220px;
  }

  .kontak-form input,
  .kontak-form textarea,
  .kontak-form select,
  .kontak-submit {
    min-height: 50px;
    font-size: 15px;
  }

  .kontak-form textarea {
    min-height: 150px;
  }

  .site-footer {
    padding-top: 48px;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 20px, 100%);
  }

  .navbar {
    padding: 9px 0;
  }

  .logo-area img {
    width: 38px;
  }

  .logo-area::before {
    width: 38px;
    height: 38px;
  }

  .logo-area span {
    max-width: 136px;
    font-size: 12.8px;
  }

  .nav-menu {
    top: 70px;
    width: calc(100vw - 20px);
    padding: 14px;
    border-radius: 22px;
  }

  .nav-menu a,
  .nav-menu > a,
  .dropdown > a {
    padding: 12px;
    font-size: 14.5px;
  }

  .section-title h2,
  .blog-header h2,
  .testimonial-header h2 {
    font-size: clamp(1.72rem, 8vw, 2.05rem);
  }

  .hero-content {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .hero-content h1 {
    font-size: clamp(1.78rem, 8.4vw, 2.2rem);
  }

  .hero-content p {
    font-size: 14.5px;
  }

  .hero-buttons a {
    flex-basis: 100%;
  }

  .hero-social a {
    width: 38px;
    height: 38px;
  }

  .about-card,
  .team-card,
  .portfolio-card,
  .pricing-card,
  .blog-card,
  .testimonial-card,
  .kontak-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-card {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .team-avatar {
    width: 118px;
    height: 118px;
  }

  .team-card img {
    width: 106px;
    height: 106px;
  }

  .pricing-card,
  .blog-card,
  .testimonial-card,
  .testimonial-slider--mobile-swipe .testimonial-card {
    flex-basis: 88vw;
  }

  .portfolio-image img {
    height: 200px;
  }

  .blog-img {
    aspect-ratio: 16 / 11;
  }

  .kontak-map iframe {
    height: 200px;
  }

  .footer-bottom {
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }

  .wa-floating {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 400px) {
  section {
    padding: 78px 0;
  }

  #home {
    padding-top: 112px;
  }

  .logo-area span {
    max-width: 118px;
    font-size: 12px;
  }

  .nav-menu {
    width: calc(100vw - 16px);
  }

  .hero-content h1 {
    font-size: 1.72rem;
  }

  .hero-content p,
  .section-title p,
  .blog-header p,
  .testimonial-header p {
    font-size: 14px;
  }

  .hero-image {
    padding: 16px 10px 4px;
  }

  .hero-image img {
    max-width: 280px;
  }

  .pricing-card,
  .blog-card,
  .testimonial-card,
  .testimonial-slider--mobile-swipe .testimonial-card {
    flex-basis: 90vw;
  }
}

/* ================================= */
/* MOBILE READABILITY REFINEMENT */
/* ================================= */
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 24px;
  }

  .section-title h2,
  .blog-header h2,
  .testimonial-header h2 {
    font-size: clamp(1.52rem, 6.5vw, 1.92rem);
    line-height: 1.16;
    letter-spacing: -0.01em;
  }

  .hero-content {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .hero-content h1 {
    max-width: min(100%, 14.8ch);
    font-size: clamp(1.56rem, 6.6vw, 1.96rem);
    line-height: 1.12;
  }

  .section-title p,
  .blog-header p,
  .testimonial-header p,
  .hero-content p,
  .layanan-lead,
  .portfolio-lead,
  .pricing-copy,
  .pricing-target,
  .pricing-range,
  .pricing-note,
  .pricing-market,
  .portfolio-content p,
  .blog-content p,
  .testimonial-text,
  .kontak-item p,
  .kontak-item a,
  .layanan-points li,
  .pricing-card li {
    font-size: 13.6px;
    line-height: 1.68;
  }

  .btn-primary,
  .btn-secondary,
  .portfolio-btn,
  .blog-btn,
  .btn-order,
  .kontak-submit,
  .hero-buttons a {
    min-height: 46px;
    padding: 10px 14px;
    font-size: 13.6px;
  }

  .about-card,
  .team-card,
  .layanan-card,
  .portfolio-card,
  .pricing-card,
  .blog-card,
  .testimonial-card,
  .kontak-card {
    border-radius: 20px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .team-card {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .team-avatar {
    width: 108px;
    height: 108px;
    margin-bottom: 12px;
  }

  .team-card img {
    width: 98px;
    height: 98px;
  }

  .team-card h4 {
    font-size: 1.04rem;
    line-height: 1.3;
  }

  .team-card span {
    font-size: 13px;
    line-height: 1.58;
  }

  .hero-social {
    width: 100%;
    justify-content: center;
  }

  .layanan-group {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .layanan-card {
    padding: 16px 14px 15px;
    grid-template-columns: 44px 1fr;
    column-gap: 10px;
    row-gap: 8px;
  }

  .layanan-card i {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .layanan-card h4 {
    font-size: 0.96rem;
    line-height: 1.4;
  }

  .portfolio-content {
    padding: 16px;
  }

  .portfolio-content h3 {
    font-size: 1.04rem;
    line-height: 1.38;
  }

  .pricing-card,
  .blog-card {
    flex: 0 0 min(82vw, 328px);
  }

  .testimonial-card,
  .testimonial-slider--mobile-swipe .testimonial-card {
    flex: 0 0 min(82vw, 328px);
    padding: 18px 15px;
  }

  .pricing-card {
    padding: 24px 18px;
  }

  .pricing-card.popular {
    --card-scale: 1.065;
  }

  .pricing-card h3 {
    font-size: 1.16rem;
  }

  .price {
    padding: 8px 12px;
    font-size: 1rem;
  }

  .price-prefix {
    font-size: 10px;
  }

  .price-value {
    font-size: 1.02rem;
  }

  .blog-content {
    padding: 16px;
  }

  .blog-content h3 {
    font-size: 1.08rem;
    line-height: 1.42;
  }

  .kontak-card {
    padding: 20px 16px;
  }

  .kontak-card h3 {
    font-size: 1.22rem;
    margin-bottom: 16px;
  }

  .kontak-item {
    gap: 12px;
    margin-bottom: 14px;
  }

  .kontak-item h4 {
    font-size: 14.5px;
    margin-bottom: 2px;
  }

  .kontak-form input,
  .kontak-form textarea,
  .kontak-form select,
  .kontak-submit {
    min-height: 46px;
    font-size: 14px;
  }
}

@media (max-width: 540px) {
  .section-title h2,
  .blog-header h2,
  .testimonial-header h2 {
    font-size: clamp(1.42rem, 7.4vw, 1.76rem);
  }

  .hero-content {
    padding: 18px 15px;
    border-radius: 18px;
  }

  .hero-content h1 {
    max-width: min(100%, 14.2ch);
    font-size: clamp(1.46rem, 7.8vw, 1.82rem);
  }

  .hero-social {
    justify-content: center;
  }

  .section-title p,
  .blog-header p,
  .testimonial-header p,
  .hero-content p,
  .layanan-lead,
  .portfolio-lead,
  .pricing-copy,
  .pricing-target,
  .pricing-range,
  .pricing-note,
  .pricing-market,
  .portfolio-content p,
  .blog-content p,
  .testimonial-text,
  .kontak-item p,
  .kontak-item a,
  .layanan-points li,
  .pricing-card li {
    font-size: 13.3px;
  }

  .about-card,
  .team-card,
  .layanan-card,
  .portfolio-card,
  .pricing-card,
  .blog-card,
  .testimonial-card,
  .kontak-card {
    border-radius: 18px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .team-card {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .team-avatar {
    width: 102px;
    height: 102px;
  }

  .team-card img {
    width: 92px;
    height: 92px;
  }

  .pricing-card,
  .blog-card,
  .testimonial-card,
  .testimonial-slider--mobile-swipe .testimonial-card {
    flex-basis: min(84vw, 312px);
  }

  .pricing-card {
    padding: 22px 16px;
  }

  .pricing-card.popular {
    --card-scale: 1.05;
  }

  .blog-content,
  .portfolio-content {
    padding: 15px;
  }

  .blog-content h3,
  .portfolio-content h3 {
    font-size: 1rem;
  }

  .kontak-card {
    padding: 18px 15px;
  }
}

@media (max-width: 400px) {
  .hero-content h1 {
    max-width: min(100%, 13.6ch);
    font-size: 1.42rem;
  }

  .section-title p,
  .blog-header p,
  .testimonial-header p,
  .hero-content p,
  .layanan-lead,
  .portfolio-lead,
  .portfolio-content p,
  .blog-content p,
  .testimonial-text,
  .kontak-item p,
  .kontak-item a,
  .layanan-points li,
  .pricing-card li {
    font-size: 13px;
  }

  .pricing-card,
  .blog-card,
  .testimonial-card,
  .testimonial-slider--mobile-swipe .testimonial-card {
    flex-basis: min(86vw, 296px);
  }

  .pricing-card.popular {
    --card-scale: 1.04;
  }
}

/* ================================= */
/* PRICING NO-SCROLL FIX */
/* ================================= */
@media (max-width: 1100px) {
  .pricing-section .mobile-swipe-hint {
    display: none !important;
  }

  .pricing-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 20px !important;
    overflow: visible !important;
    padding: 0 !important;
    scroll-snap-type: none !important;
    scroll-padding-left: 0 !important;
    scrollbar-width: auto !important;
    -webkit-overflow-scrolling: auto !important;
    touch-action: auto !important;
    overscroll-behavior-x: auto !important;
  }

  .pricing-card,
  .pricing-card.popular {
    flex: initial !important;
    flex-basis: auto !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    scroll-snap-align: none !important;
  }
}

@media (max-width: 768px) {
  .pricing-container {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }
}

/* ================================= */
/* SCROLL CLEANUP */
/* ================================= */
main section[id].section-shell {
  opacity: 1;
}

main section[id].section-shell::before,
body.section-transitioning::after {
  display: none !important;
}

section.section-focus {
  animation: none !important;
}

.layanan-lead,
.portfolio-lead,
.pricing-trust,
.testimonial-ctaa,
.layanan-group,
.layanan-card,
.portfolio-card,
.testimonial-card {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.layanan-group,
.layanan-card,
.portfolio-card,
.testimonial-card {
  border-color: rgba(15, 77, 119, 0.12);
  box-shadow: 0 16px 34px rgba(11, 58, 91, 0.1);
}

.layanan-group:hover,
.layanan-card:hover,
.portfolio-card:hover,
.testimonial-card:hover {
  box-shadow: 0 20px 40px rgba(11, 58, 91, 0.14);
}

/* ================================= */
/* PERFORMANCE TUNING */
/* ================================= */
@media (max-width: 992px) {
  main section[id].section-shell::before {
    display: none;
  }

  section.section-focus {
    animation: none !important;
  }

  .navbar,
  .navbar.scrolled,
  .nav-menu {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  body.menu-open::before {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  body.page-transition,
  body.page-transition.page-ready {
    transform: none;
    filter: none;
  }

  body.section-transitioning::after {
    display: none;
  }

  .hero-content,
  .portfolio-lead,
  .pricing-trust,
  .testimonial-ctaa,
  .about-card,
  .team-card,
  .layanan-group,
  .layanan-card,
  .portfolio-card,
  .pricing-card,
  .blog-card,
  .testimonial-card,
  .kontak-card,
  .mobile-swipe-hint {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .logo-area img,
  .nav-menu a,
  .nav-menu a::after,
  .hero-image,
  .team-avatar::before,
  .team-avatar::after,
  .team-card img,
  .layanan-card,
  .blog-card,
  .testimonial-track {
    will-change: auto !important;
  }

  .nav-menu {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .dropdown > a,
  .dropdown-menu a {
    min-height: 48px;
  }

  .dropdown-menu a {
    display: flex;
    align-items: center;
  }

  .team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    gap: 10px;
  }

  .team-card span {
    display: block;
    width: 100%;
    line-height: 1.6;
  }

  .team-social {
    margin-top: auto;
    padding-top: 6px;
  }

  .layanan-card {
    min-height: 100%;
    align-content: start;
  }
}

@media (hover: none), (pointer: coarse) {
  main section[id].section-shell::before {
    display: none !important;
  }

  section.section-focus {
    animation: none !important;
  }

  .scroll-progress {
    display: none !important;
  }

  .hero-content,
  .portfolio-lead,
  .pricing-card,
  .kontak-card,
  .wa-popup {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .hero-image,
  .hero-image img,
  .about-card h3 i,
  .team-avatar::before,
  .team-avatar::after,
  .team-social a,
  .layanan-group,
  .layanan-card i,
  .pricing-card,
  .price,
  .mobile-swipe-hint,
  .kontak-card::before,
  .kontak-item i,
  .kontak-form input,
  .kontak-form textarea,
  .kontak-form select {
    animation: none !important;
  }

  .hero-image img {
    filter: none !important;
  }

  .hero-image,
  .team-card,
  .layanan-card,
  .portfolio-card,
  .pricing-card,
  .blog-card,
  .kontak-card {
    will-change: auto !important;
  }

  .spotlight,
  .cursor-light {
    display: none !important;
  }

  .team-avatar::before {
    animation: teamOrbitRing 10.8s linear infinite !important;
  }

  .team-avatar::after {
    animation: teamOrbitRingReverse 7.8s linear infinite !important;
  }

  .about-card:hover,
  .team-card:hover,
  .layanan-group:hover,
  .layanan-card:hover,
  .portfolio-card:hover,
  .pricing-card:hover,
  .blog-card:hover,
  .testimonial-card:hover,
  .kontak-card:hover {
    transform: none !important;
  }

  .team-card img,
  .team-card:hover .team-avatar img {
    transform: none !important;
    -webkit-transform: none !important;
    filter: none !important;
  }

  .team-social a:hover {
    transform: none !important;
  }
}

/* ================================= */
/* REDUCED MOTION */
/* ================================= */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    display: none !important;
  }

  /* body.section-transitioning::after {
    display: none;
  } */

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  main section[id].section-shell,
  main section[id].section-swoop,
  .reveal,
  .blog-card {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

/* FIX AGAR TIDAK ABU DI MOBILE */
@media (max-width: 768px) {
  main section[id].section-shell {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ================================= */
/* TESTIMONI + NAVBAR REFINEMENT */
/* ================================= */
.testimonial-track {
  will-change: auto;
}

.testimonial-card {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card.active {
  opacity: 1;
}

@media (min-width: 993px) {
  .testimonial-slider,
  .testimonial-slider.testimonial-slider--mobile-swipe {
    padding: 4px 54px 0;
  }

  .testimonial-slider--mobile-swipe .testimonial-track {
    overflow-x: hidden;
    padding: 8px 0 14px;
    scroll-snap-type: none;
    touch-action: pan-y;
  }

  .testimonial-slider--mobile-swipe .testimonial-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    scroll-snap-align: none;
  }
}

@media (max-width: 992px) {
  .nav-menu {
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
    will-change: opacity, transform;
  }

  .nav-menu a,
  .nav-menu > a,
  .dropdown > a {
    transition:
      background-color 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease,
      box-shadow 0.2s ease;
  }

  .nav-menu a:hover,
  .nav-menu a.active,
  .dropdown > a:hover,
  .dropdown > a.active {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  }

  .hamburger {
    transition:
      background-color 0.2s ease,
      box-shadow 0.2s ease,
      transform 0.2s ease;
  }
}

/* ================================= */
/* REQUESTED UX + MOBILE FIXES */
/* ================================= */
.section-title p,
.hero-content p,
.portfolio-content p,
.pricing-copy,
.pricing-note,
.testimonial-text,
.kontak-helper {
  line-height: 1.8;
}

.hero-content h1 {
  max-width: 100%;
  line-height: 1.2;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero-content h1 .hero-typewrite {
  display: block;
  margin-top: 10px;
  min-height: auto;
  white-space: normal;
  line-height: 1.35;
}

.hero-local-seo {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.92);
}

.hero-local-seo strong {
  color: #ffe27a;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, #ffe27a, #ffcc00);
  color: #0c2b44;
  border: 1px solid rgba(255, 204, 0, 0.84);
  box-shadow: 0 14px 30px rgba(255, 204, 0, 0.42);
}

.hero-buttons .btn-primary:hover {
  box-shadow: 0 18px 34px rgba(255, 204, 0, 0.48);
}

.partner-strip {
  padding: 26px 0 22px;
  background: linear-gradient(
    180deg,
    rgba(245, 250, 255, 0.98) 0%,
    rgba(238, 246, 255, 0.98) 100%
  );
  border-top: 1px solid rgba(15, 77, 119, 0.08);
  border-bottom: 1px solid rgba(15, 77, 119, 0.08);
}

.partner-strip-title {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #2a4b67;
}

.partner-strip-logos {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.partner-strip-logos span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15, 77, 119, 0.14);
  background: linear-gradient(140deg, #ffffff, #f5faff);
  color: #35536e;
  font-size: 12px;
  font-weight: 700;
  filter: grayscale(1);
}

.pricing-compare {
  margin-top: 26px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(15, 77, 119, 0.14);
  background: linear-gradient(180deg, #ffffff, #f5faff);
  box-shadow: 0 14px 30px rgba(11, 58, 91, 0.08);
}

.pricing-compare h3 {
  font-size: 1.12rem;
  color: #12324b;
  margin-bottom: 12px;
}

.pricing-compare-wrap {
  overflow-x: auto;
}

.pricing-compare table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.pricing-compare th,
.pricing-compare td {
  padding: 11px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 77, 119, 0.12);
  color: #234661;
  font-size: 13.5px;
}

.pricing-compare th {
  background: rgba(15, 77, 119, 0.07);
  color: #0d3552;
  font-weight: 700;
}

.portfolio-label {
  font-weight: 700;
}

.portfolio-impact {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border-left: 4px solid #ffcc00;
  background: rgba(255, 204, 0, 0.12);
  color: #264864;
  font-size: 13.5px;
  line-height: 1.62;
}

.privacy-note {
  margin-top: 8px;
  font-size: 12.8px;
  color: #567089;
  line-height: 1.64;
}

.footer-https-note {
  margin: 4px 0 2px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.92);
}

.client-img {
  object-fit: cover;
  object-position: center;
}

/* FIX KRUSIAL: kartu layanan harus selalu terlihat */
.layanan-card {
  opacity: 1 !important;
}

@media (max-width: 992px) {
  main > section:not(#home) {
    content-visibility: visible !important;
    contain-intrinsic-size: auto !important;
  }

  main section[id].section-swoop {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .btn-primary,
  .btn-secondary,
  .portfolio-btn,
  .blog-btn,
  .btn-order,
  .kontak-submit,
  .cta-btn {
    min-height: 50px;
  }

  .partner-strip {
    padding: 22px 0 18px;
  }

  .partner-strip-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-compare {
    margin-top: 22px;
    padding: 16px;
  }
}

@media (max-width: 430px) {
  .hero-content h1 {
    font-size: clamp(1.3rem, 7vw, 1.58rem) !important;
    line-height: 1.24 !important;
  }

  .hero-content h1 .hero-typewrite {
    margin-top: 8px;
    font-size: 0.94em;
    line-height: 1.4;
  }

  #layanan .layanan-group,
  #layanan .layanan-card {
    visibility: visible !important;
  }
}
