:root {
  --cyan: #4394AD;
  --sky: #3A85A0;
  --deep: #487799;
  --aqua: #8ED1C8;
  --navy: #2C4F6B;
  --navy2: #1E3A52;
  --white: #FFFFFF;
  --soft-bg: #F4FAFB;
  --soft-bg2: #EBF6F8;
  --border: #C8E8EF;
  --text-dark: #1A2E3B;
  --text-sec: #4F6E7A;
  --grad: linear-gradient(135deg, #8ED1C8, #4394AD, #487799);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family:'Poppins',sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* NAVBAR */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 26px rgba(67,148,173,.08);
}

.nav-inner{
    max-width:1200px;
    height:80px; 
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 20px;
}

.logo{
    display:flex;
    align-items:center;
}

.logo a{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo img{
    height:240px;
    width:auto;
    object-fit:contain;
    transition:.3s;
}

.logo img:hover{
    transform:scale(1.03);
}

.nav-links{
    display:flex;
    align-items:center;
    gap:40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-sec);
  font-weight: 600;
  font-size: .9rem;
}

.nav-links a:hover { color: var(--deep); }

.btn-nav {
  background: linear-gradient(135deg, #4394AD, #487799);
  color: white !important;
  padding: .55rem 1.2rem;
  border-radius: 50px;
}

/* GLOBAL */
.section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: auto;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-label,
.badge {
  display: inline-block;
  background: rgba(67,148,173,.10);
  border: 1px solid rgba(67,148,173,.22);
  color: var(--deep);
  padding: .38rem .95rem;
  border-radius: 50px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: .8rem;
}

.section-sub {
  color: var(--text-sec);
  line-height: 1.85;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: .8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* HERO */
.profile-hero {
  min-height: 92vh;
  padding: 120px 2rem 5rem;
  background: linear-gradient(160deg, #F4FAFB 0%, #EBF6F8 55%, #C8E8EF 100%);
  position: relative;
  overflow: hidden;
}

.profile-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(67,148,173,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67,148,173,.07) 1px, transparent 1px);
  background-size: 48px 48px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(75px);
  opacity: .55;
  animation: orbMove 8s ease-in-out infinite alternate;
}

.orb-1 {
  width: 360px;
  height: 360px;
  background: #8ED1C8;
  top: -80px;
  right: -80px;
}

.orb-2 {
  width: 280px;
  height: 280px;
  background: #4394AD;
  bottom: -90px;
  left: -70px;
}

@keyframes orbMove {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(30px) scale(1.08); }
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.12;
  margin-bottom: 1rem;
  animation: fadeUp .9s ease both;
}

.hero-title em { color: var(--deep); }

.hero-desc {
  color: var(--text-sec);
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 2rem;
  animation: fadeUp .9s .15s ease both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .9s .3s ease both;
}

.btn-primary,
.btn-outline {
  text-decoration: none;
  padding: .75rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  transition: .25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #4394AD, #487799);
  color: white;
  box-shadow: 0 8px 24px rgba(67,148,173,.35);
}

.btn-outline {
  color: var(--deep);
  border: 1.5px solid var(--cyan);
}

.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(-3px);
}

.hero-card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 2.5rem;
  box-shadow: 0 18px 55px rgba(67,148,173,.16);
  animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-logo-box {
  width: 160px;
  height: 160px;
  margin: auto auto 1.5rem;
  border-radius: 35px;
  background: linear-gradient(145deg, #2C4F6B, #487799, #4394AD);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 45px rgba(67,148,173,.25);
}

.hero-logo-box img {
  width: 110px;
  object-fit: contain;
}

.hero-card h3 {
  font-family: 'DM Serif Display', serif;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: .7rem;
}

.hero-card p {
  text-align: center;
  color: var(--text-sec);
  line-height: 1.7;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: .8rem;
  margin-top: 1.5rem;
}

.hero-mini {
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
}

.hero-mini strong {
  display: block;
  color: var(--deep);
  font-size: 1.2rem;
}

.hero-mini span {
  color: var(--text-sec);
  font-size: .75rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(67,148,173,.10);
}

.about-box p {
  color: var(--text-sec);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.small-card {
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
}

.small-card h4 {
  color: var(--deep);
  margin-bottom: .4rem;
}

.small-card p {
  font-size: .85rem;
  line-height: 1.6;
  color: var(--text-sec);
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
}

.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.6rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(67,148,173,.08);
  transition: .3s;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(67,148,173,.15);
}

.stat-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--deep);
}

.stat-text {
  color: var(--text-sec);
  font-size: .85rem;
  margin-top: .3rem;
}

/* VALUE CARDS */
#nilai {
  background: var(--soft-bg);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 1.5rem;
}

.value-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(67,148,173,.09);
  transition: .35s ease;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: .35s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(67,148,173,.16);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg,#8ED1C8,#4394AD);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: .7rem;
}

.value-card p {
  color: var(--text-sec);
  line-height: 1.75;
  font-size: .9rem;
}

/* VISION */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.vm-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(67,148,173,.10);
  transition: .3s;
}

.vm-card:hover {
  transform: translateY(-6px);
}

.vm-card h3 {
  font-size: 1.2rem;
  color: var(--deep);
  margin-bottom: 1rem;
}

.vm-card p,
.vm-card li {
  color: var(--text-sec);
  line-height: 1.8;
}

.vm-card ul { padding-left: 1.2rem; }

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(67,148,173,.08);
  transition: .3s;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 18px 45px rgba(67,148,173,.15);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg,#8ED1C8,#4394AD);
  border-radius: 17px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.service-card h3 { margin-bottom: .7rem; }

.service-card p {
  color: var(--text-sec);
  line-height: 1.75;
  font-size: .9rem;
}

/* PROCESS */
#proses {
  background: var(--soft-bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 1.5rem;
}

.process-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 8px 30px rgba(67,148,173,.08);
  transition: .3s;
}

.process-card:hover {
  transform: translateY(-8px);
}

.process-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg,#4394AD,#487799);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 1rem;
}

.process-card h3 {
  margin-bottom: .7rem;
}

.process-card p {
  color: var(--text-sec);
  line-height: 1.7;
  font-size: .9rem;
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-card {
  display: flex;
  gap: 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(67,148,173,.08);
  transition: .3s;
}

.why-card:hover {
  transform: translateX(8px);
}

.check {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg,#8ED1C8,#4394AD);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
}

.why-card p {
  color: var(--text-sec);
  line-height: 1.7;
  font-size: .9rem;
}

/* CTA */
.cta {
  background: linear-gradient(160deg,#1E3A52,#487799);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(142,209,200,.18);
  border-radius: 50%;
  filter: blur(50px);
  top: -120px;
  right: -100px;
}

.cta .section-inner {
  position: relative;
  z-index: 1;
}

.cta .section-title { color: white; }

.cta p {
  color: rgba(255,255,255,.75);
  max-width: 650px;
  margin: auto auto 2rem;
  line-height: 1.8;
}

.cta .btn-primary {
  background: white;
  color: var(--deep);
}

/* FOOTER */
.footer {
  background: #1E3A52;
  color: rgba(255,255,255,.75);
  text-align: center;
  padding: 2rem;
  font-size: .85rem;
}


/* CORPORATE TRANSPARENT THEME */
.corporate-bg {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(244,250,251,.94), rgba(235,246,248,.82)),
    radial-gradient(circle at 12% 18%, rgba(142,209,200,.38), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(67,148,173,.22), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(72,119,153,.16), transparent 35%);
}

.corporate-bg::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -180px;
  bottom: -190px;
  background: linear-gradient(135deg, rgba(142,209,200,.32), rgba(67,148,173,.18));
  border-radius: 42% 58% 63% 37% / 45% 40% 60% 55%;
  filter: blur(2px);
  animation: morphCorporate 9s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes morphCorporate {
  0% {
    border-radius: 42% 58% 63% 37% / 45% 40% 60% 55%;
    transform: rotate(0deg) scale(1);
  }
  100% {
    border-radius: 58% 42% 38% 62% / 50% 60% 40% 50%;
    transform: rotate(10deg) scale(1.08);
  }
}

.corporate-shape {
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(142,209,200,.22);
  border: 1px solid rgba(67,148,173,.16);
  border-radius: 36px;
  transform: rotate(18deg);
  animation: floatShape 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.shape-1 { top: 130px; left: 5%; }
.shape-2 { right: 8%; bottom: 110px; width: 110px; height: 110px; animation-delay: 1.5s; }
.shape-3 { left: 8%; bottom: 80px; width: 90px; height: 90px; animation-delay: 2.5s; opacity: .7; }

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(18deg); }
  50% { transform: translateY(-18px) rotate(25deg); }
}

.glass-card {
  background: rgba(255,255,255,.72) !important;
  border: 1px solid rgba(200,232,239,.78) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 20px 55px rgba(67,148,173,.12),
    inset 0 1px 0 rgba(255,255,255,.70) !important;
}

.glass-card:hover {
  box-shadow:
    0 24px 65px rgba(67,148,173,.18),
    inset 0 1px 0 rgba(255,255,255,.85) !important;
}

.corporate-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(67,148,173,.28), transparent);
  margin: 1.2rem 0;
}

.corporate-panel {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(244,250,251,.70));
  border: 1px solid rgba(200,232,239,.75);
  border-radius: 28px;
  padding: 2rem;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 55px rgba(67,148,173,.12);
  overflow: hidden;
}

.corporate-panel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  background: rgba(142,209,200,.28);
  border-radius: 50%;
  filter: blur(8px);
}

.section.corporate-bg .section-inner {
  position: relative;
  z-index: 1;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .hero-inner,
  .about-grid,
  .vm-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-card { order: -1; }

  .stats-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:768px) {
  .nav-links { display: none; }

  .profile-hero {
    padding: 110px 1.2rem 4rem;
  }

  .section {
    padding: 4rem 1.2rem;
  }

  .stats-grid,
  .about-card-grid {
    grid-template-columns: 1fr;
  }
}