:root {
  --navy: #0f172a;
  --navy-light: #1e293b;
  --emerald: #059669;
  --emerald-hover: #047857;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-700: #334155;
  --white: #ffffff;
  --max: 1200px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --gold: #c5a028;
  --gold-soft: rgba(197, 160, 40, 0.18);
  --product-navy: #0b1220;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: transparent;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--slate-100);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.93rem;
  color: var(--slate-700);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--emerald);
}

.nav-cta {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 10px;
  font-weight: 600;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--emerald);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--emerald-hover);
}

.btn-outline {
  border-color: var(--slate-300);
}

.hero {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 14px;
  line-height: 1.15;
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.hero p {
  margin: 0 0 24px;
  color: var(--slate-500);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-art {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--slate-50);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.section-head p {
  margin: 0;
  color: var(--slate-500);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--emerald);
  font-weight: 700;
  margin-bottom: 8px;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
}

.card p {
  margin: 0;
  color: var(--slate-500);
}

.media-card img {
  border-radius: var(--radius);
  margin-bottom: 14px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--slate-500);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
}

.split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Product showcase — Tumbuh Dana */
.product-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    var(--slate-50) 0%,
    var(--white) 45%,
    rgba(5, 150, 105, 0.06) 100%
  );
}

.product-section__glow {
  position: absolute;
  inset: -20% -10% auto auto;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    var(--gold-soft),
    transparent 65%
  );
  pointer-events: none;
}

.product-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.product-section__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.product-section__logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: contain;
  flex-shrink: 0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  background: var(--white);
}

.product-section__title {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--product-navy);
}

.product-section__tagline {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-700);
}

.product-section__lead {
  margin: 0 0 22px;
  color: var(--slate-500);
  max-width: 34em;
}

.product-section__highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.product-section__highlights li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  color: var(--slate-500);
  font-size: 0.96rem;
  line-height: 1.55;
}

.product-section__highlights li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--emerald), #34d399);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
}

.product-section__highlights strong {
  color: var(--navy);
  font-weight: 700;
}

.product-section__visual {
  display: flex;
  justify-content: center;
}

.product-section__frame {
  position: relative;
  max-width: 420px;
  width: 100%;
}

.product-section__ring {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 40, 0.25);
  background: linear-gradient(
    135deg,
    rgba(197, 160, 40, 0.08),
    transparent 50%,
    rgba(5, 150, 105, 0.06)
  );
  animation: product-ring-pulse 8s ease-in-out infinite;
}

.product-section__shot {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(15, 23, 42, 0.06);
  animation: product-float 7s ease-in-out infinite;
}

.product-section__copy > * {
  animation: product-reveal 0.75s ease backwards;
}

.product-section__copy > *:nth-child(1) {
  animation-delay: 0.05s;
}
.product-section__copy > *:nth-child(2) {
  animation-delay: 0.12s;
}
.product-section__copy > *:nth-child(3) {
  animation-delay: 0.18s;
}
.product-section__copy > *:nth-child(4) {
  animation-delay: 0.24s;
}
.product-section__copy > *:nth-child(5) {
  animation-delay: 0.3s;
}

@keyframes product-reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes product-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes product-ring-pulse {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-section__shot,
  .product-section__ring {
    animation: none;
  }
  .product-section__copy > * {
    animation: none;
  }
}

.site-footer {
  margin-top: 48px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-title {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-note {
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-main {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--slate-100);
    box-shadow: var(--shadow);
    padding: 20px;
    flex-direction: column;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
  }

  .nav-main.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .hero-grid,
  .split,
  .product-section__grid {
    grid-template-columns: 1fr;
  }

  .product-section__visual {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Contact form */
.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-700);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--slate-300);
  border-radius: 10px;
  font: inherit;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px 22px;
  border: none;
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  background: var(--emerald);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, opacity 0.2s;
}

.btn-submit:hover:not(:disabled) {
  background: var(--emerald-hover);
}

.btn-submit:disabled {
  opacity: 0.85;
  cursor: not-allowed;
}

.btn-submit .btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: form-spin 0.7s linear infinite;
  display: none;
}

.btn-submit.is-loading .btn-spinner {
  display: block;
}

.btn-submit.is-loading .btn-text {
  opacity: 0.95;
}

@keyframes form-spin {
  to {
    transform: rotate(360deg);
  }
}

.form-success-panel {
  text-align: center;
  padding: 36px 24px;
}

.form-success-panel h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.form-success-panel p {
  margin: 0 0 20px;
  color: var(--slate-500);
}

.btn-secondary {
  padding: 12px 20px;
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--slate-300);
  background: var(--white);
  color: var(--navy);
}

.btn-secondary:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}
.sub-title{
  font-size: 1.4rem;
  margin-bottom: 15px !important;
  font-weight: bold;
  margin-top:10px !important;
}
.paragraph-content{
  font-size: 16px;
  color: #000 !important;
  margin-bottom: 10px !important;
}