:root {
  --bg: #ffffff;
  --bg-2: #e5e2da;
  --ink: #0d0d10;
  --ink-soft: #2a2a2d;
  --mute: #8a8780;
  --line: #dad6c9;
  --pill: #0d0d10;
  --green: #87ceeb;
  --green-dark: #2f7fb5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
}

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

html {
  background: #ffffff;
}
html,
body {
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body {
  background: transparent;
  min-height: 100vh;
}
#c-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ============ GATE INTRO ============ */
.gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  perspective: 1200px;
  overflow: hidden;
}
.gate-overlay.active {
  display: block;
}
.gate {
  position: absolute;
  top: -2%;
  bottom: -2%;
  width: 50.5%;
  will-change: transform;
}
.gate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 58px,
    rgba(255, 255, 255, 0.04) 58px 60px
  );
}
.gate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(135, 206, 235, 0.14),
    transparent 55%
  );
}
.gate-left {
  left: -1%;
  background: linear-gradient(100deg, #05060a 0%, #0d1219 45%, #16202c 100%);
  box-shadow: inset -3px 0 18px rgba(135, 206, 235, 0.28);
}
.gate-right {
  right: -1%;
  background: linear-gradient(260deg, #05060a 0%, #0d1219 45%, #16202c 100%);
  box-shadow: inset 3px 0 18px rgba(135, 206, 235, 0.28);
}
.gate-seam {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 0;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent 5%,
    rgba(135, 206, 235, 0.85) 30%,
    rgba(111, 195, 239, 0.9) 70%,
    transparent 95%
  );
  filter: blur(8px);
}
.gate-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
}
.gate-logo img {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.gate-logo span {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .gate-overlay {
    display: none !important;
  }
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: padding 0.45s cubic-bezier(0.6, 0, 0.2, 1),
    background 0.45s ease, backdrop-filter 0.45s ease,
    border-color 0.45s ease;
}
.nav.scrolled {
  padding: 14px 40px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(20, 20, 22, 0.06);
}
.logo {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 4px;
  max-width: 212px;
  text-decoration: none;
  transition: max-width 0.45s cubic-bezier(0.6, 0, 0.2, 1);
}
.nav.scrolled .logo {
  max-width: 420px;
}
.logo-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  line-height: 1.2;
  border-left: 1px solid transparent;
  padding-left: 0;
  margin-left: 0;
  transition: border-color 0.45s ease,
    padding-left 0.45s cubic-bezier(0.6, 0, 0.2, 1),
    margin-left 0.45s cubic-bezier(0.6, 0, 0.2, 1), gap 0.3s;
}
.nav.scrolled .logo-tag {
  border-left-color: var(--line);
  padding-left: 14px;
  margin-left: 14px;
  gap: 3px;
}
.logo-tag .t1 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  white-space: nowrap;
  transition: font-size 0.45s cubic-bezier(0.6, 0, 0.2, 1);
}
.logo-tag .t2 {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute);
  white-space: nowrap;
  transition: font-size 0.45s cubic-bezier(0.6, 0, 0.2, 1);
}
.nav.scrolled .logo-tag .t1 {
  font-size: 11px;
}
.nav.scrolled .logo-tag .t2 {
  font-size: 9px;
}
.logo img {
  height: 60px;
  width: auto;
  display: block;
  transition: height 0.45s cubic-bezier(0.6, 0, 0.2, 1);
}
.nav.scrolled .logo img {
  height: 42px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding: 4px 2px;
  transition: color 0.3s, font-size 0.45s cubic-bezier(0.6, 0, 0.2, 1);
}
.nav.scrolled .nav-links a {
  font-size: 14px;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: right 0.35s cubic-bezier(0.6, 0, 0.2, 1);
}
.nav-links a:hover::after {
  right: 0;
}
.contact-pill {
  background: linear-gradient(135deg, #6fc3ef, #2f7fb5);
  color: #ffffff;
  border: none;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 12px 22px -8px rgba(31, 110, 159, 0.5),
    0 4px 8px -2px rgba(31, 110, 159, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 4px rgba(20, 70, 105, 0.4);
  transition: transform 0.4s cubic-bezier(0.6, 0, 0.2, 1),
    padding 0.45s cubic-bezier(0.6, 0, 0.2, 1),
    font-size 0.45s cubic-bezier(0.6, 0, 0.2, 1);
}
.nav.scrolled .contact-pill {
  padding: 13px 28px;
  font-size: 14px;
}
.contact-pill:hover {
  transform: translateY(-2px);
}

/* Elemen dekorasi menu mobile (desktop: tersembunyi) */
.nl-num,
.nl-arrow {
  display: none;
}
/* Backdrop redup saat menu terbuka */
.nav-dim {
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(13, 13, 16, 0.32);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-dim.show {
  opacity: 1;
  pointer-events: auto;
}

/* Floating contact button (mobile) */
.fab-contact {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6fc3ef, #2f7fb5);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 16px 30px -10px rgba(31, 110, 159, 0.55),
    0 6px 12px -3px rgba(31, 110, 159, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(20, 70, 105, 0.35);
  animation: fab-bob 4s ease-in-out infinite;
}
.fab-contact svg {
  width: 26px;
  height: 26px;
}
.fab-contact:active {
  filter: brightness(0.88);
}
@keyframes fab-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Burger (mobile menu) */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav.menu-open .nav-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.menu-open .nav-burger span:nth-child(2) {
  opacity: 0;
}
.nav.menu-open .nav-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding: 90px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 5;
  background:
    radial-gradient(
      70% 40% at 50% 28%,
      rgba(135, 206, 235, 0.2),
      transparent 70%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(255, 255, 255, 0.45) 22%,
      rgba(255, 255, 255, 0.32) 45%,
      rgba(255, 255, 255, 0.6) 65%,
      rgba(255, 255, 255, 0.92) 82%,
      #ffffff 100%
    ),
    url("../img/handshake.jpg") center 35% / cover no-repeat;
}

.headline {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 130px);
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 1300px;
  margin: 0 auto;
}
.hero-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 1.4vw, 20px);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-desc {
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 560px;
}
.hero-desc strong {
  color: var(--green-dark);
  font-weight: 600;
}
.headline .line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow: visible;
  padding: 4px 0;
}
.headline .word {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}
.headline .word > span {
  display: inline-block;
  transform: translateY(105%);
}
.headline .acc {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0d3a5c;
}

/* ============ GALLERY ============ */
.gallery {
  padding: 40px 40px 100px;
  position: relative;
  z-index: 5;
}
.gallery-head {
  max-width: 1280px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.gallery-copy .eyebrow {
  color: var(--ink-soft);
}
.gallery-copy h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 700px;
}
.gallery-side {
  max-width: 360px;
}
.gallery-side > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
}
.gallery-actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

/* Pill (shared) */
.try-pill {
  background: linear-gradient(135deg, #6fc3ef, #2f7fb5);
  color: #ffffff;
  border: none;
  padding: 14px 34px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 16px 28px -10px rgba(31, 110, 159, 0.5),
    0 6px 12px -3px rgba(31, 110, 159, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 4px rgba(20, 70, 105, 0.4);
  transition: transform 0.4s cubic-bezier(0.6, 0, 0.2, 1);
  white-space: nowrap;
}
.try-pill:hover {
  transform: translateY(-3px) scale(1.03);
}

/* Stat block */
.stat-block {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-block .num {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-block .num small {
  font-size: 0.55em;
  color: var(--ink-soft);
  font-weight: 700;
}
.stat-block p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 200px;
}

/* Carousel */
.gallery-swiper {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 56px;
}
.gallery-swiper .swiper-slide {
  border-radius: 28px;
}
.g-slide {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  box-shadow: 0 30px 55px -20px rgba(40, 30, 10, 0.35),
    0 12px 24px -8px rgba(40, 30, 10, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.g-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.g-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 30%,
    transparent 75%,
    rgba(40, 20, 10, 0.15) 100%
  );
  pointer-events: none;
}

/* Carousel nav + pagination */
.gallery-swiper .g-nav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6fc3ef, #2f7fb5);
  color: #ffffff;
  box-shadow: 0 14px 26px -8px rgba(31, 110, 159, 0.45),
    0 5px 10px -3px rgba(31, 110, 159, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(20, 70, 105, 0.35);
  transition: transform 0.35s cubic-bezier(0.6, 0, 0.2, 1);
  top: calc(50% - 28px);
}
.gallery-swiper .g-nav:hover {
  transform: scale(1.08);
}
.gallery-swiper .g-nav::after {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}
.gallery-swiper .swiper-button-prev {
  left: 14px;
}
.gallery-swiper .swiper-button-next {
  right: 14px;
}
.gallery-swiper .swiper-pagination {
  bottom: 8px;
}
.gallery-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #cfc9bd;
  opacity: 1;
  transition: width 0.3s, background 0.3s, border-radius 0.3s;
}
.gallery-swiper .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 999px;
  background: var(--green-dark);
}

/* ============ SECTION 2: COMPETENCIES ============ */
.features {
  padding: 80px 40px 60px;
  position: relative;
  z-index: 5;
}
.features-head {
  max-width: 1280px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(47, 127, 181, 0.25);
}
.features-head h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 700px;
}
.features-head p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 340px;
}

.features-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feat-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 22px 40px -16px rgba(40, 30, 10, 0.18),
    0 8px 16px -4px rgba(40, 30, 10, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.6, 0, 0.2, 1);
}
.feat-card:hover {
  transform: translateY(-8px);
}

.feat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 22px -6px rgba(40, 30, 10, 0.25),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 4px rgba(40, 30, 10, 0.2);
}
.feat-icon svg {
  width: 30px;
  height: 30px;
  color: #ffffff;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.28));
}
.feat-icon.ic-1 {
  background: radial-gradient(circle at 30% 30%, #ffd66b 0%, #e26a4d 60%, #8a2818);
}
.feat-icon.ic-2 {
  background: radial-gradient(circle at 30% 30%, #c9e37b 0%, #6b9d2c 60%, #2f5810);
}
.feat-icon.ic-3 {
  background: radial-gradient(circle at 30% 30%, #c9a6f4 0%, #6a3db8 60%, #391b72);
}
.feat-icon.ic-4 {
  background: radial-gradient(circle at 30% 30%, #b5e3f2 0%, #5aa0c4 60%, #24526e);
}
.feat-icon.ic-5 {
  background: radial-gradient(circle at 30% 30%, #ffe078 0%, #e0a82e 60%, #966d14);
}
.feat-icon.ic-6 {
  background: radial-gradient(circle at 30% 30%, #f8d6a6 0%, #c99368 60%, #8a5f32);
}
.feat-icon.ic-7 {
  background: radial-gradient(circle at 30% 30%, #ffb1a0 0%, #e0503f 60%, #93230f);
}
.feat-icon.ic-8 {
  background: radial-gradient(circle at 30% 30%, #c7a6f7 0%, #8b5bd9 60%, #4e2f92);
}
.feat-icon.ic-9 {
  background: radial-gradient(circle at 30% 30%, #a8ecd6 0%, #41a582 60%, #155e45);
}
.feat-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 35%
  );
}

.feat-card h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.feat-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1;
}
.feat-card .feat-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.feat-card .feat-link:hover {
  gap: 12px;
}

/* ============ SECTION 3: ABOUT ============ */
.about {
  padding: 60px 40px 100px;
  position: relative;
  z-index: 5;
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.about-copy h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.about-copy > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
.ab-stat .ab-num {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.ab-stat .ab-num small {
  font-size: 0.5em;
  color: var(--ink-soft);
}
.ab-stat p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 220px;
  margin-top: 6px;
}
.founder-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 30px 55px -20px rgba(40, 30, 10, 0.28),
    0 12px 24px -8px rgba(40, 30, 10, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.founder-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background-size: cover;
  background-position: center 25%;
  box-shadow: 0 18px 34px -12px rgba(40, 30, 10, 0.45),
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    inset 0 -4px 8px rgba(60, 30, 10, 0.2);
}
.founder-card blockquote {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 18px;
}
.founder-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.founder-role {
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============ MOTTO BAND ============ */
.motto {
  background: var(--ink);
  overflow: hidden;
  padding: 34px 0;
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.motto-track {
  display: flex;
  width: max-content;
  animation: motto-scroll 38s linear infinite;
}
.motto:hover .motto-track {
  animation-play-state: paused;
}
.motto-row {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 40px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #f4f0eb;
}
.motto-row .strike {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--green);
  text-decoration: line-through;
  text-decoration-color: rgba(135, 206, 235, 0.55);
  text-decoration-thickness: 3px;
}
.motto-row i {
  font-style: normal;
  color: var(--green);
  font-size: 0.6em;
}
@keyframes motto-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============ SECTION 4: CTA ============ */
.cta-section {
  padding: 80px 40px 40px;
  position: relative;
  z-index: 5;
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 36px;
  padding: 80px 60px;
  color: #f4f0eb;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(20, 12, 0, 0.45),
    0 16px 32px -12px rgba(20, 12, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -3px 8px rgba(0, 0, 0, 0.5);
}
.cta-inner::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(135, 206, 235, 0.25),
    transparent 65%
  );
  top: -200px;
  left: -100px;
  filter: blur(30px);
}
.cta-inner::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 198, 130, 0.18),
    transparent 65%
  );
  bottom: -180px;
  right: -80px;
  filter: blur(30px);
}
.cta-inner h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -0.035em;
  position: relative;
  z-index: 1;
}
.cta-inner h2 em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(135deg, #a5dcf5, #5aa7d9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-right {
  position: relative;
  z-index: 1;
}
.cta-right > p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}
.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.cta-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #f4f0eb;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.3s, transform 0.3s;
}
.cta-contact:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(4px);
}
.cta-contact .cc-ico {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--green);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.cta-contact b {
  display: block;
  font-size: 13px;
  font-weight: 700;
}
.cta-contact small {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}
.cta-btn {
  background: linear-gradient(135deg, #6fc3ef, #2f7fb5);
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 16px 26px -10px rgba(0, 0, 0, 0.4),
    0 5px 10px -2px rgba(31, 110, 159, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 4px rgba(20, 70, 105, 0.4);
  transition: transform 0.4s cubic-bezier(0.6, 0, 0.2, 1);
}
.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

/* ============ FOOTER ============ */
.footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-left img {
  height: 40px;
  width: auto;
  align-self: flex-start;
}
.footer-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--ink);
}
.footer-right {
  font-size: 12px;
  color: var(--mute);
}

/* Responsive */
@media (max-width: 1000px) {
  /* ===== Header: beralih ke mode burger SEBELUM menu menabrak logo ===== */
  .nav-burger {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    flex-direction: column;
    gap: 0;
    background: linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.98),
      rgba(240, 247, 252, 0.94)
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(20, 20, 22, 0.07);
    border-radius: 24px;
    box-shadow: 0 30px 60px -20px rgba(31, 110, 159, 0.3),
      0 12px 24px -8px rgba(40, 30, 10, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
    padding: 12px 10px;
    transform: none;
    z-index: 49;
    overflow: hidden;
  }
  .nav-links::before {
    content: "";
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6fc3ef, transparent);
    border-radius: 2px;
  }
  .nav.menu-open .nav-links {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li + li a {
    border-top: 1px solid rgba(20, 20, 22, 0.05);
  }
  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 16px;
    transition: background 0.3s, padding-left 0.3s;
  }
  .nav-links a::after {
    display: none;
  }
  .nav-links a:hover {
    background: rgba(111, 195, 239, 0.12);
    padding-left: 24px;
  }
  .nl-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(47, 127, 181, 0.28);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #2f7fb5;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
  }
  .nav-links a:hover .nl-num {
    background: linear-gradient(135deg, #6fc3ef, #2f7fb5);
    border-color: transparent;
    color: #ffffff;
  }
  .nl-arrow {
    display: block;
    margin-left: auto;
    width: 16px;
    height: 16px;
    color: #2f7fb5;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s, transform 0.3s;
  }
  .nav-links a:hover .nl-arrow {
    opacity: 1;
    transform: translateX(0);
  }
  /* Logo di tengah */
  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  /* Saat di atas (dengan tagline): jangkar ke atas agar logo tidak terpotong */
  .nav:not(.scrolled) .logo {
    top: 24px;
    transform: translateX(-50%);
  }
  /* Tagline tampil di bawah logo saat di atas, hilang saat scroll */
  .nav.scrolled .logo-tag {
    display: none;
  }
  .contact-pill {
    display: none;
  }
  /* Tombol kontak melayang pojok kanan bawah */
  .fab-contact {
    display: flex;
  }

  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    padding: 50px 30px;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 700px) {
  .nav,
  .nav.scrolled {
    padding: 12px 18px;
  }
  .nav .logo img,
  .nav.scrolled .logo img {
    height: 40px;
  }
  .nav:not(.scrolled) .logo {
    top: 12px;
  }
  .hero {
    padding: 90px 18px 30px;
  }
  .headline .line {
    gap: 12px;
  }
  .gallery {
    padding: 30px 18px 60px;
  }
  .gallery-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .gallery-swiper .g-nav {
    display: none;
  }
  .features {
    padding: 40px 18px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .about {
    padding: 20px 18px 60px;
  }
  .cta-section {
    padding: 20px 18px 60px;
  }
  .footer {
    padding: 30px 18px 34px;
    flex-direction: column;
    text-align: center;
  }
  .footer-left {
    align-items: center;
  }
  .footer-left img {
    align-self: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .motto-track {
    animation: none;
  }
}
