:root {
  --navy: #17146b;
  --deep: #0f0d5a;
  --ink: #111111;
  --muted: #6e6e73;
  --soft: #f5f5f7;
  --line: #e7e8ef;
  --white: #ffffff;
  --spice: #d9a323;
  --ice: #eef3ff;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(15, 13, 90, 0.11);
  --shadow-soft: 0 14px 38px rgba(15, 13, 90, 0.075);
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 12%, rgba(23, 20, 107, 0.08), transparent 26rem),
    radial-gradient(circle at 88% 8%, rgba(217, 163, 35, 0.10), transparent 23rem),
    radial-gradient(circle at 70% 78%, rgba(23, 20, 107, 0.055), transparent 30rem);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("./assets/images/fish-pattern.svg");
  background-size: 420px 420px;
  opacity: 0.6;
  animation: driftPattern 24s linear infinite;
}

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

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

button,
summary {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--deep);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(231, 232, 239, 0.78);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 16px 38px rgba(15, 13, 90, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 172px;
}

.brand img {
  width: 168px;
  border-radius: 14px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #242438;
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a {
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.section-pad {
  padding: 94px 0;
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  padding-top: 74px;
}

.hero-grid,
.split-grid,
.story-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  max-width: 650px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.lead,
.hero-lead,
.section-title p,
.split-copy p,
.story-copy p,
.area-intro p,
.faq-intro p,
.contact-grid p,
.footer-brand p {
  color: var(--muted);
}

.hero-lead {
  max-width: 620px;
  font-size: 18px;
}

.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid rgba(23, 20, 107, 0.12);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--deep));
  box-shadow: 0 16px 34px rgba(23, 20, 107, 0.24);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(23, 20, 107, 0.30);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
  border-color: #d8dbea;
}

.btn-line {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.btn[aria-disabled="true"] {
  color: rgba(255, 255, 255, 0.72);
  cursor: not-allowed;
  transform: none;
}

.btn svg,
.icon {
  flex: 0 0 auto;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #303044;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--spice);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.dish-frame {
  position: relative;
  width: min(510px, 92%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.dish-frame::before,
.dish-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.4px solid rgba(17, 17, 17, 0.22);
  border-radius: 50%;
}

.dish-frame::before {
  animation: orbitSlow 18s linear infinite;
}

.dish-frame::after {
  inset: 7%;
  border-color: rgba(23, 20, 107, 0.26);
  animation: orbitReverse 24s linear infinite;
}

.orbit-dot {
  position: absolute;
  z-index: 4;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
}

.orbit-dot.one {
  top: 13%;
  right: 12%;
}

.orbit-dot.two {
  bottom: 18%;
  left: 5%;
  width: 10px;
  height: 10px;
  background: var(--navy);
}

.orbit-dot.three {
  right: 3%;
  bottom: 27%;
  width: 20px;
  height: 20px;
}

.hero-product {
  position: relative;
  z-index: 3;
  width: 86%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.product-float {
  position: absolute;
  z-index: 5;
  right: 3%;
  bottom: 2%;
  width: 150px;
  border: 7px solid var(--white);
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(15, 13, 90, 0.22);
  transform: rotate(5deg);
}

.floating-chip {
  position: absolute;
  z-index: 5;
  left: -2%;
  bottom: 10%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  color: var(--navy);
  font-weight: 900;
  animation: floatChip 4.8s ease-in-out infinite;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.special-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(245, 245, 247, 0.72));
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.special-card,
.product-card,
.benefit-card,
.area-card,
.step-card,
.faq-item,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.special-card {
  padding: 26px 24px 30px;
  border-radius: 28px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.special-card:nth-child(2) {
  transform: translateY(18px);
  box-shadow: var(--shadow);
}

.special-card:hover {
  transform: translateY(-4px);
}

.special-card:nth-child(2):hover {
  transform: translateY(12px);
}

.special-card img {
  width: 190px;
  height: 190px;
  margin: 0 auto 18px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid var(--white);
}

.special-card p,
.product-card p,
.benefit-card p,
.step-card p,
.area-card p,
.testimonial-card p,
.faq-item p {
  color: var(--muted);
  font-size: 14px;
}

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

.split-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.split-visual::before {
  content: "";
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border: 1.5px solid rgba(17, 17, 17, 0.22);
  border-radius: 50%;
  transform: rotate(16deg);
}

.split-visual img {
  position: relative;
  z-index: 2;
  width: min(420px, 90%);
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #303044;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  flex: 0 0 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: inset 0 0 0 6px var(--ice);
}

.product-section {
  background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 16px;
  border-radius: 28px;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 84% 8%, rgba(23, 20, 107, 0.12), transparent 210px);
  pointer-events: none;
}

.product-media {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 215px;
  margin-bottom: 10px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f7f8fc);
}

.product-media img {
  width: min(230px, 88%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  filter: drop-shadow(0 18px 22px rgba(15, 13, 90, 0.18));
}

.product-card .mini-label {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--ice);
}

.product-copy {
  position: relative;
  z-index: 1;
  padding: 2px 8px 10px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.benefit-grid,
.area-grid,
.step-grid {
  display: grid;
  gap: 18px;
}

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

.benefit-card,
.area-card,
.step-card {
  border-radius: 24px;
  padding: 24px;
}

.benefit-card svg,
.step-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--navy);
}

.benefit-card p,
.step-card p {
  margin-bottom: 0;
}

.area-section {
  background: #f7f8fc;
}

.area-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.area-intro {
  position: sticky;
  top: 110px;
}

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

.area-card {
  scroll-margin-top: 110px;
}

.area-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.story-card {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--navy), var(--deep));
  color: var(--white);
  box-shadow: var(--shadow);
}

.story-card p {
  color: rgba(255, 255, 255, 0.76);
}

.story-card img {
  width: 100%;
  border-radius: 24px;
  margin-top: 22px;
}

.step-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.testimonial-section {
  background: linear-gradient(180deg, #ffffff, #f7f8fc);
}

.testimonial-image {
  position: relative;
  display: grid;
  place-items: center;
}

.testimonial-image::before {
  content: "";
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border: 1.5px solid rgba(17, 17, 17, 0.2);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.testimonial-image img {
  position: relative;
  z-index: 1;
  width: min(400px, 92%);
  border: 10px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.testimonial-card {
  max-width: 520px;
}

.stars {
  color: var(--spice);
  font-size: 19px;
  letter-spacing: 0.08em;
}

.cta-section {
  padding: 84px 0;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 52px;
  border-radius: 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 13, 90, 0.95), rgba(23, 20, 107, 0.70)),
    url("./assets/images/banner-produk-jojo-jeje.webp") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 20px;
  padding: 0 20px;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 900;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-bottom: 20px;
}

.contact-section {
  background: linear-gradient(180deg, var(--white), #f7f8fc);
}

.contact-card {
  padding: 30px;
  border-radius: 28px;
}

.contact-card img {
  width: 190px;
  border-radius: 16px;
}

.contact-card address {
  color: var(--muted);
  font-style: normal;
}

.contact-card a {
  color: var(--navy);
  font-weight: 900;
}

.site-footer {
  padding: 62px 0 24px;
  color: #dce2ff;
  background: #080822;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 28px;
}

.footer-brand img {
  width: 168px;
  padding: 8px;
  border-radius: 14px;
  background: var(--white);
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 15px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: #c3c9ed;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aeb7e3;
  font-size: 14px;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(23, 20, 107, 0.28);
}

.reveal {
  opacity: 1;
  transform: none;
}

@keyframes orbitSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes driftPattern {
  to {
    background-position: 420px 420px;
  }
}

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

@media (max-width: 1040px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  .nav {
    min-height: 72px;
  }

  .brand img {
    width: 148px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 80px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 13px 14px;
    border-radius: 16px;
  }

  .nav-menu a:hover {
    background: var(--soft);
  }

  .nav-menu a::after,
  .nav .btn-small {
    display: none;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-grid,
  .split-grid,
  .story-grid,
  .testimonial-grid,
  .contact-grid,
  .area-layout,
  .faq-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 430px;
  }

  .special-grid,
  .product-grid,
  .benefit-grid,
  .area-grid,
  .step-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .special-card:nth-child(2) {
    transform: none;
  }

  .area-intro {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 24px);
  }

  .section-pad {
    padding: 68px 0;
  }

  h1 {
    font-size: 41px;
  }

  h2 {
    font-size: 33px;
  }

  .hero-lead {
    font-size: 16px;
  }

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

  .hero-visual {
    min-height: 330px;
  }

  .dish-frame {
    width: 310px;
  }

  .hero-product {
    border-width: 7px;
  }

  .product-float {
    width: 96px;
    right: 0;
    border-width: 5px;
    border-radius: 18px;
  }

  .floating-chip {
    left: 0;
    bottom: 2%;
    font-size: 12px;
  }

  .special-grid,
  .product-grid,
  .benefit-grid,
  .area-grid,
  .step-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .special-card img {
    width: 170px;
    height: 170px;
  }

  .cta-panel {
    padding: 30px;
    border-radius: 26px;
  }

  .footer-bottom {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
