:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --primary: #0f766e;
  --primary-dark: #0c5b55;
  --secondary: #0b1220;
  --accent: #d4af37;
  --text: #1e293b;
  --muted: #475569;
  --line: #dbe2ea;
  --shadow-soft: 0 8px 30px rgba(11, 18, 32, 0.08);
  --shadow-strong: 0 10px 36px rgba(11, 18, 32, 0.18);
  --radius: 18px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 35%),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 22%),
    var(--bg);
  line-height: 1.65;
}

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

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

main {
  overflow: clip;
}

section[id] {
  scroll-margin-top: 100px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding: 3.8rem 0;
}

.section-soft {
  background-color: rgba(255, 255, 255, 0.8);
}

.skip-link {
  position: absolute;
  top: -42px;
  left: 16px;
  background: var(--secondary);
  color: #fff;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  z-index: 1200;
}

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

.site-header {
  position: fixed;
  top: 0.8rem;
  left: 0;
  width: 100%;
  z-index: 1100;
}

.nav-pill {
  width: min(calc(100% - 1rem), 1120px);
  margin-inline: auto;
  padding: 0.7rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(9px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  transition: all 220ms ease;
}

.nav-pill.is-scrolled {
  padding: 0.5rem 0.75rem;
  box-shadow: var(--shadow-strong);
}

.brand {
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.02em;
  padding: 0.2rem 0.55rem;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  background: var(--secondary);
  border-radius: 99px;
  transition: transform 180ms ease;
}

.nav-links {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  margin-inline: auto;
  width: min(calc(100% - 1rem), 1120px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 0.6rem;
  display: grid;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 180ms ease;
}

.nav-links a {
  border-radius: 999px;
  padding: 0.62rem 0.82rem;
  font-weight: 600;
  color: var(--secondary);
}

.nav-links a:hover {
  background: rgba(15, 118, 110, 0.1);
}

.nav-links.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 180ms ease;
}

.btn:focus-visible,
a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 75%, white 25%);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 0.82rem 1.1rem;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--secondary);
  padding: 0.82rem 1.1rem;
}

.btn-secondary:hover {
  border-color: color-mix(in srgb, var(--primary) 45%, white 55%);
  color: var(--primary);
}

.btn-ghost {
  color: var(--primary);
  background: rgba(15, 118, 110, 0.08);
  border-color: rgba(15, 118, 110, 0.2);
  padding: 0.72rem 1rem;
}

.btn-ghost:hover {
  background: rgba(15, 118, 110, 0.16);
}

.btn-nav-wa {
  margin-top: 0.15rem;
  background: var(--secondary);
  color: #fff !important;
  text-align: center;
}

.btn-large {
  padding: 1rem 1.45rem;
  font-size: 1.03rem;
}

.hero {
  position: relative;
  isolation: isolate;
  padding-top: 7.6rem;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    130deg,
    rgba(11, 18, 32, 0.84) 0%,
    rgba(15, 118, 110, 0.56) 48%,
    rgba(11, 18, 32, 0.88) 100%
  );
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 25%, rgba(212, 175, 55, 0.2), transparent 36%),
    radial-gradient(circle at 82% 70%, rgba(11, 18, 32, 0.55), transparent 58%);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) saturate(1.05) contrast(1.08);
}

.hero-video-desktop {
  display: none;
}

.hero-video-mobile {
  display: block;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-panel {
  width: min(100%, 760px);
  padding: 1.1rem;
  border-radius: 24px;
  background: linear-gradient(
    140deg,
    rgba(11, 18, 32, 0.64),
    rgba(11, 18, 32, 0.42) 54%,
    rgba(15, 118, 110, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.32);
  backdrop-filter: blur(8px);
}

.hero-panel::before {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.55));
  margin-bottom: 0.9rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.16);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #7a5d00;
  font-weight: 700;
  padding: 0.34rem 0.75rem;
  margin: 0;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 3px 16px rgba(2, 6, 23, 0.45);
}

.hero .hero-meta,
.hero .hero-service {
  color: #e6edf6;
}

.hero .hero-meta strong {
  color: #fff;
}

.hero .eyebrow {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.45);
  color: #fff0ba;
}

.hero .usp-bar {
  border-color: rgba(255, 255, 255, 0.35);
  color: #eafffd;
  background: rgba(15, 118, 110, 0.26);
}

.hero .btn-primary {
  box-shadow: 0 10px 25px rgba(15, 118, 110, 0.4);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

h1,
h2,
h3 {
  color: var(--secondary);
  margin: 0 0 0.8rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.95rem, 6.4vw, 3.2rem);
  margin-top: 0.9rem;
}

h2 {
  font-size: clamp(1.56rem, 4vw, 2.2rem);
}

h3 {
  font-size: 1.16rem;
}

p {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.hero-meta {
  margin-top: 0.6rem;
  font-size: 1.05rem;
}

.hero-service {
  font-weight: 700;
  color: var(--secondary);
}

.usp-bar {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.24);
  color: var(--primary);
  background: rgba(15, 118, 110, 0.09);
  padding: 0.44rem 0.84rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.chips {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chips li {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 18px rgba(11, 18, 32, 0.12);
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #f8fbff;
}

.section-intro {
  max-width: 62ch;
}

.grid {
  display: grid;
  gap: 0.95rem;
}

.cards-3,
.audience-grid,
.trust-grid {
  grid-template-columns: 1fr;
}

.card,
.mini-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 7px 24px rgba(15, 23, 42, 0.04);
}

.card {
  padding: 1.15rem;
}

.service-card {
  overflow: hidden;
}

.service-card-image {
  width: calc(100% + 2.3rem);
  max-width: none;
  margin: -1.15rem -1.15rem 0.95rem;
  height: 190px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 -20px 30px rgba(11, 18, 32, 0.08);
}

.audience-card {
  overflow: hidden;
  padding: 0;
  border: none;
  box-shadow: 0 14px 30px rgba(11, 18, 32, 0.1);
}

.audience-card-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border: none;
  background: linear-gradient(135deg, #eef4f7, #f5f7fa);
}

.audience-card h3,
.audience-card p {
  padding-inline: 1rem;
}

.audience-card h3 {
  margin-top: 0.95rem;
}

.audience-card p {
  padding-bottom: 1rem;
  margin-bottom: 0;
}

#sesuai .audience-card {
  border: none !important;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(11, 18, 32, 0.08);
  overflow: hidden;
}

#sesuai .audience-card-image {
  border: none !important;
  border-radius: 0;
  display: block;
}

.mini-card {
  padding: 1rem;
}

.icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.7rem;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--primary) 14%, white 86%),
    color-mix(in srgb, var(--accent) 14%, white 86%)
  );
}

.icon-wrap svg {
  width: 23px;
  height: 23px;
  fill: var(--primary);
}

.section-cta {
  margin-top: 1.15rem;
}

.about-ash {
  margin-top: 1.15rem;
  display: grid;
  gap: 1rem;
}

.about-ash-media,
.about-ash-story {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 7px 24px rgba(15, 23, 42, 0.04);
}

.about-ash-media {
  padding: 0.85rem;
}

.about-carousel {
  position: relative;
}

.about-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: 14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about-carousel-track::-webkit-scrollbar {
  display: none;
}

.about-slide {
  flex: 0 0 100%;
  margin: 0;
  scroll-snap-align: start;
}

.about-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.about-slide img.about-cover-top {
  object-position: center top;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(11, 18, 32, 0.54);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.carousel-btn.prev {
  left: 0.55rem;
}

.carousel-btn.next {
  right: 0.55rem;
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.carousel-dots {
  margin-top: 0.7rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 28px;
  background: var(--primary);
}

.about-ash-story {
  padding: 1rem;
}

.about-ash-lead {
  color: var(--secondary);
  font-size: 1.03rem;
}

.about-stats {
  margin-bottom: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-stats span {
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(15, 118, 110, 0.09);
  border: 1px solid rgba(15, 118, 110, 0.2);
}

.about-more {
  margin-top: 0.6rem;
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

.about-more summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--secondary);
}

.about-more p {
  margin-top: 0.65rem;
}

#kenapa .about-ash {
  margin-top: 1.35rem;
}

#kenapa .about-ash + .trust-grid {
  margin-top: 1.45rem;
}

#kenapa .trust-grid {
  gap: 1.05rem;
}

#kenapa .mini-card {
  padding: 1.15rem;
}

#kenapa .section-cta {
  margin-top: 1.65rem;
}

.testimonial-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, #ffffff, #f8fbfd);
  box-shadow: 0 10px 28px rgba(11, 18, 32, 0.06);
}

.testimonial-quote {
  margin: 0;
  color: #334155;
  font-size: 1.01rem;
  line-height: 1.75;
}

.testimonial-quote::before {
  content: "“";
  font-size: 2rem;
  line-height: 0.1;
  color: color-mix(in srgb, var(--primary) 78%, white 22%);
  margin-right: 0.15rem;
  vertical-align: -0.3rem;
}

.testimonial-name {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 800;
  color: var(--secondary);
}

.testimonial-tag {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--primary);
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.78rem 0.95rem;
}

.faq-item summary {
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--primary);
}

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

.faq-item p {
  margin-top: 0.65rem;
  margin-bottom: 0.2rem;
}

.final-cta {
  background:
    linear-gradient(130deg, rgba(15, 118, 110, 0.95), rgba(12, 91, 85, 0.98)),
    #0f766e;
  color: #ecfffd;
  border-radius: 24px;
  padding: 1.45rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: auto -45px -45px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.26), transparent 62%);
}

.final-cta h2,
.final-cta p {
  color: #ecfffd;
  position: relative;
  z-index: 1;
}

.contact-no {
  margin-top: 0.8rem;
  font-weight: 800;
  color: #fff;
  font-size: 1.2rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.55rem 0 2.2rem;
  background: #fff;
}

.footer-inner {
  display: grid;
  gap: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-weight: 700;
  color: var(--primary);
}

.foot-note {
  font-size: 0.92rem;
}

.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  background: #0ea868;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(14, 168, 104, 0.36);
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.floating-wa svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 4.7rem;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: var(--secondary);
  color: #fff;
  display: none;
  place-items: center;
  box-shadow: var(--shadow-soft);
  z-index: 1070;
}

.back-to-top svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.back-to-top.show {
  display: grid;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    width: auto;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: flex;
    align-items: center;
    gap: 0.22rem;
  }

  .btn-nav-wa {
    margin-left: 0.38rem;
    margin-top: 0;
  }

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

  .audience-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-ash {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    align-items: start;
  }

  #kenapa .about-ash + .trust-grid {
    margin-top: 1.75rem;
  }

  #kenapa .trust-grid {
    gap: 1.2rem;
  }

  #kenapa .mini-card {
    padding: 1.3rem;
  }

  .about-slide img {
    height: 360px;
  }

  .section {
    padding: 5rem 0;
  }

  .hero {
    padding-top: 8.5rem;
  }

  .hero-panel {
    padding: 1.65rem;
  }

  .hero-video-desktop {
    display: block;
  }

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

  .final-cta {
    padding: 2.1rem;
  }

  .service-card-image {
    height: 210px;
  }

  .audience-card-image {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 86vh;
    padding-top: 5.9rem;
    padding-bottom: 2.2rem;
    align-items: flex-end;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(11, 18, 32, 0.2) 0%,
      rgba(11, 18, 32, 0.42) 38%,
      rgba(11, 18, 32, 0.86) 100%
    );
  }

  .hero::after {
    background:
      radial-gradient(circle at 50% 82%, rgba(11, 18, 32, 0.55), transparent 56%),
      radial-gradient(circle at 12% 12%, rgba(212, 175, 55, 0.12), transparent 30%);
  }

  .hero-panel {
    width: min(100%, 640px);
    padding: 0.92rem;
    margin-bottom: 1rem;
    border-radius: 18px;
    background: linear-gradient(
      150deg,
      rgba(11, 18, 32, 0.74),
      rgba(11, 18, 32, 0.56) 62%,
      rgba(15, 118, 110, 0.46)
    );
    box-shadow: 0 12px 32px rgba(2, 6, 23, 0.3);
    backdrop-filter: blur(5px);
  }

  .hero-panel::before {
    width: 82px;
    margin-bottom: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(1.42rem, 6.2vw, 1.95rem);
    margin-top: 0.45rem;
    margin-bottom: 0.55rem;
  }

  .hero .eyebrow {
    font-size: 0.74rem;
    padding: 0.25rem 0.58rem;
  }

  .hero .hero-meta {
    margin-top: 0.2rem;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero .hero-service {
    font-size: 0.9rem;
    margin-bottom: 0.55rem;
  }

  .hero .usp-bar {
    font-size: 0.82rem;
    padding: 0.32rem 0.62rem;
    margin-bottom: 0.7rem;
  }

  .hero-actions {
    margin-top: 0.6rem;
    gap: 0.5rem;
  }

  .hero .btn-primary,
  .hero .btn-secondary {
    padding: 0.62rem 0.86rem;
    font-size: 0.9rem;
  }

  .chips {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-panel {
    padding: 0.82rem;
    border-radius: 16px;
  }

  .hero .eyebrow {
    display: none;
  }
}

@media (max-width: 859px) {
  .site-header.menu-open .nav-pill {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
}

@media (min-width: 961px) {
  .audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .audience-card-image {
    height: 200px;
  }
}

@media (min-width: 901px) {
  .back-to-top {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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