:root {
  --ink: #241a33;
  --muted: #756b82;
  --paper: #fff9f0;
  --soft: #eff6ff;
  --white: #ffffff;
  --forest: #1e3a8a;
  --jade: #2563eb;
  --coral: #F0B666;
  --gold: #ffd88f;
  --line: rgba(30, 58, 138, 0.16);
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 249, 240, 0.92);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.09);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-header.scrolled .brand {
  color: var(--forest);
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  /* border-radius: 50%; */
  /* background: rgba(255, 255, 255, 0.88); */
  /* box-shadow: 0 8px 24px rgba(36, 26, 51, 0.16); */
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.9;
}

.nav-cta,
.btn {
  border-radius: 999px;
}

.nav-cta {
  padding: 10px 16px;
  color: #fff;
  background: #000000;
}

.site-header.scrolled .nav-cta {
  color: var(--white);
  background: var(--forest);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #1e3a8a;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 118px clamp(20px, 6vw, 84px) 46px;
  color: var(--white);
  padding-bottom: 82px;
}

.hero-media,
.hero-media img,
.hero-accent,
.hero-overlay {
  position: absolute;
}

.hero-media,
.hero-media img,
.hero-overlay {
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
  filter: brightness(1.16) saturate(0.72);
}

.hero-accent {
  z-index: 2;
  right: clamp(90px, 22vw, 360px);
  top: clamp(118px, 15vh, 175px);
  width: clamp(280px, 30vw, 470px);
  height: auto;
  pointer-events: none;
  opacity: 0.94;
  filter: drop-shadow(0 18px 36px rgba(36, 26, 51, 0.12));
  animation: heroAccentFloat 5.5s ease-in-out infinite;
}

.hero-mobile-accent {
  display: none;
}

.hero-overlay {
  z-index: 1;
  /* Menggunakan gradient dari kiri ke kanan */
  background: linear-gradient(
    to right, 
    #ffffff,   /* Sisi kiri: Lebih pekat */
    #ffffffc9,   /* Tengah: Mulai memudar */
    #ffffff33   /* Sisi kanan: Sangat transparan */
  );
}

@keyframes heroAccentFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }

  50% {
    transform: translate3d(10px, -14px, 0) rotate(1.5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--coral);
}

.hero h1,
.section h2,
.showcase h2,
.cta-section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.04;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(42px, 6.8vw, 82px);
  color: #000000;
  text-wrap: balance;
  text-shadow: 0 14px 42px rgba(234, 236, 202, 0.68);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(16px, 1.45vw, 19px);
  color: rgba(0, 0, 0, 0.86);
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 18px 38px rgba(30, 58, 138, 0.25);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.btn-soft {
  color: var(--forest);
  background: rgba(240, 182, 102, 0.22);
}

.hero-stats {
  max-width: 720px;
  margin-top: 38px;
}

.hero-stats div {
  min-width: 160px;
  padding: 16px 18px;
  border: 1px solid rgba(94, 95, 86, 0.22);
  border-radius: 8px;
  background: rgba(94, 95, 86, 0.22);
  backdrop-filter: blur(10px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 24px;
  color: #000000;
}

.hero-stats span {
  color: rgba(3, 3, 3, 0.76);
  font-size: 13px;
}

.section {
  padding: 86px clamp(20px, 6vw, 84px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section h2,
.showcase h2,
.cta-section h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.section-kicker {
  color: var(--forest);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 42px;
  align-items: end;
}

.intro p,
.showcase-text p,
.cta-section p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

/* .feature-band {
  background: #fcf4e6;
} */

.features-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(132px, 1fr));
  gap: 16px;
}

.feature-card,
.step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card {
  display: grid;
  height: 120px;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 20px 16px;
  text-align: center;
  background: #eaf3ff;
  border-color: transparent;
}

.feature-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #1e3a8a;
  background: transparent;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.step h3 {
  margin: 0;
  max-width: 112px;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.feature-card p,
.step p,
.consult-copy p,
.consult-points p,
.accordion-panel p {
  color: var(--muted);
}

.theme-preview {
  padding-top: 18px;
  background: linear-gradient(180deg, rgba(255, 249, 240, 0) 0%, #ffffff 100%);
}

.theme-preview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.theme-preview-card {
  overflow: hidden;
  border: 1px solid rgba(30, 58, 138, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.09);
}

.theme-preview-image {
  position: relative;
  display: grid;
  height: 350px;
  place-items: center;
  overflow: hidden;
  padding: 20px;
  background:
    radial-gradient(circle at 24% 18%, rgba(240, 182, 102, 0.2), transparent 28%),
    linear-gradient(145deg, #fff9f0 0%, #f1edf6 100%);
}

.theme-phone-stack {
  position: relative;
  display: block;
  width: min(92%, 250px);
  height: 270px;
}

.theme-preview-image .theme-phone {
  position: absolute;
  bottom: 0;
  width: 54%;
  height: auto;
  aspect-ratio: 9 / 16;
  padding: 2px;
  /* border: 8px solid #111827; */
  border-radius: 11px;
  object-fit: cover;
  object-position: top center;
  background: #ffffff;
  box-shadow: 0 24px 44px rgba(36, 26, 51, 0.22);
  transition: transform 0.45s ease;
}

.theme-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 1;
  top: 11px;
  width: 44px;
  height: 12px;
  border-radius: 999px;
  background: #111827;
  transform: translateX(-50%);
}

.theme-phone--front {
  left: 8%;
  z-index: 2;
  transform: rotate(-4deg);
}

.theme-phone--back {
  right: 8%;
  z-index: 1;
  transform: translateY(-22px) rotate(5deg);
}

.theme-preview-card:hover .theme-preview-image img {
  box-shadow: 0 28px 48px rgba(36, 26, 51, 0.26);
}

.theme-preview-card:hover .theme-phone--front {
  transform: translateY(-6px) rotate(-4deg);
}

.theme-preview-card:hover .theme-phone--back {
  transform: translateY(-28px) rotate(5deg);
}

.theme-preview-body {
  display: grid;
  gap: 14px;
  padding: 18px 20px 20px;
}

.theme-preview-body span,
.theme-price span {
  display: block;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.theme-preview-body h3 {
  margin: 4px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1.1;
}

.theme-preview-body p {
  min-height: 66px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.theme-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 4px;
}

.theme-price strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.theme-price s {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.theme-demo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  background: #fcf4e6;
}

.showcase-text {
  max-width: 520px;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--forest);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.theme-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.theme-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.theme-card.tall {
  grid-row: span 2;
}

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

.theme-card:hover img {
  transform: scale(1.06);
}

.theme-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.theme-card span,
.theme-card strong {
  display: block;
}

.theme-card span {
  color: var(--forest);
  font-size: 13px;
}

.theme-card strong {
  font-size: 20px;
}

.process {
  background: #eff6ff;
}

.step {
  padding: 24px;
  background: transparent;
}

.step span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-weight: 800;
}

.consult-section {
  background: var(--white);
}

.consult-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.consult-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: 8px;
  background: #1e3a8a;
  box-shadow: var(--shadow);
}

.consult-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 600;
}

.consult-copy .btn {
  align-self: flex-start;
  background: var(--white);
  color: var(--forest);
  box-shadow: none;
}

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

.consult-points article {
  min-height: 290px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.consult-points span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-weight: 800;
}

.consult-points h3 {
  margin: 58px 0 8px;
  font-size: 21px;
}

.consult-points p {
  margin: 0;
}

.testimonial-section {
  padding: 0 clamp(20px, 6vw, 84px) 86px;
}

.testimonial {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background: var(--forest);
}

.testimonial img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

blockquote {
  margin: 0;
  max-width: 780px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 2vw, 48px);
  line-height: 1.15;
}

.testimonial p {
  margin: 22px 0 0;
  color: var(--forest);
  font-weight: 700;
}

.faq {
  padding-top: 0;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 68px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.accordion-item strong {
  font-size: 24px;
  color: var(--forest);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.accordion-panel p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 20px;
}

.accordion-item.active + .accordion-panel {
  max-height: 160px;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 clamp(20px, 6vw, 84px) 84px;
  padding: 48px;
  border-radius: 8px;
  color: var(--ink);
  background: #eaf3ff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.cta-section .section-kicker,
.cta-section p {
  color: var(--muted);
}

.cta-section .section-kicker::before {
  background: var(--coral);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 84px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--forest);
  font-weight: 800;
}

@media (max-width: 960px) {
  .main-nav {
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 249, 240, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .nav-cta,
  .site-header.scrolled .nav-cta {
    color: var(--white);
    background: var(--forest);
  }

  .nav-toggle {
    display: block;
    color: inherit;
  }

  .intro,
  .showcase,
  .consult-layout,
  .testimonial,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .theme-preview-grid,
  .consult-points,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand span:last-child {
    max-width: 170px;
    line-height: 1.1;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: 92svh;
    align-items: center;
    padding: 86px 20px 34px;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(255, 255, 255, 0.68) 48%,
      rgba(255, 249, 240, 0.86) 100%
    );
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-accent {
    display: none;
  }

  .hero-mobile-accent {
    display: block;
    width: min(78vw, 320px);
    height: auto;
    margin: 26px auto 0;
    opacity: 0.9;
    filter: drop-shadow(0 18px 36px rgba(36, 26, 51, 0.12));
    animation: heroAccentFloat 5.5s ease-in-out infinite;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(38px, 12vw, 48px);
    line-height: 1.04;
    text-shadow: 0 10px 30px rgba(255, 255, 255, 0.62);
  }

  .hero-copy,
  .intro p,
  .showcase-text p,
  .cta-section p {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .btn,
  .cta-section .btn {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-stats div {
    min-width: 0;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(36, 26, 51, 0.12);
    backdrop-filter: blur(8px);
  }

  .section {
    padding: 64px 20px;
  }

  .features-grid,
  .theme-preview-grid,
  .consult-points,
  .steps,
  .theme-gallery {
    grid-template-columns: 1fr;
  }

  .theme-preview {
    padding-top: 0;
  }

  .theme-preview-image {
    height: 460px;
  }

  .theme-preview-body p {
    min-height: auto;
  }

  .theme-gallery {
    grid-auto-rows: 260px;
  }

  .theme-card.tall {
    grid-row: auto;
  }

  .consult-copy,
  .consult-points article {
    min-height: auto;
  }

  .consult-copy {
    padding: 26px;
  }

  .consult-copy .btn {
    width: 100%;
  }

  .consult-points h3 {
    margin-top: 34px;
  }

  .testimonial-section {
    padding: 0 20px 64px;
  }

  .testimonial {
    padding: 20px;
  }

  .testimonial img {
    height: 260px;
  }

  .cta-section {
    margin: 0 20px 64px;
    padding: 30px 22px;
  }

  .site-footer {
    flex-direction: column;
  }
}
