:root {
  color-scheme: light;
  --hv2-ink: rgb(3, 0, 8);
  --hv2-brand-primary: #001e1e;
  --hv2-brand-primary-container: #063434;
  --hv2-brand-secondary: #006d36;
  --hv2-brand-secondary-container: #83fba5;
  --hv2-brand-on-primary: #ffffff;
  --hv2-brand-on-primary-container: #759d9d;
  --hv2-brand-on-secondary: #ffffff;
  --hv2-bg: #f7fbfb;
  --hv2-surface: rgba(255, 255, 255, 0.84);
  --hv2-surface-soft: rgba(255, 255, 255, 0.68);
  --hv2-border: rgba(3, 0, 8, 0.08);
  --hv2-border-soft: rgba(3, 0, 8, 0.05);
  --hv2-text: var(--hv2-ink);
  --hv2-text-soft: #6d6f78;
  --hv2-text-muted: #8c8f99;
  --hv2-primary: var(--hv2-brand-primary);
  --hv2-secondary: var(--hv2-brand-secondary);
  --hv2-shadow: 0 22px 70px rgba(0, 30, 30, 0.08);
  --hv2-shadow-soft: 0 16px 34px rgba(0, 30, 30, 0.05);
  --hv2-radius-xl: 34px;
  --hv2-radius-lg: 26px;
  --hv2-radius-md: 18px;
  --hv2-max-width: 1180px;
  --hv2-font: "Google Sans", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body.hv2-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--hv2-font);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.38), transparent 26%),
    linear-gradient(180deg, #cfe4f7 0%, #d9ebfb 35rem, #f7fbfb 45rem, #f7fbfb 100%);
  color: var(--hv2-text);
}

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

button,
input,
textarea {
  font: inherit;
}

.hv2-shell {
  position: relative;
  overflow: clip;
}

.hv2-container {
  width: min(calc(100% - 2rem), var(--hv2-max-width));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hv2-noise,
.hv2-grid,
.hv2-orb {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hv2-noise {
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 118px 118px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 88%);
}

.hv2-grid {
  background:
    linear-gradient(to right, rgba(0, 30, 30, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 30, 30, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.26;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 72%);
}

.hv2-orb {
  filter: blur(110px);
  opacity: 0.44;
  transform: translate3d(0, 0, 0);
}

.hv2-orb-one {
  top: -12%;
  left: -10%;
  width: 32rem;
  height: 32rem;
  background: rgba(131, 251, 165, 0.18);
}

.hv2-orb-two {
  inset: auto -10% 6% auto;
  width: 24rem;
  height: 24rem;
  background: rgba(0, 109, 54, 0.14);
}

.hv2-header,
.hv2-hero,
.hv2-section,
.hv2-footer,
.hv2-logo-band {
  position: relative;
  z-index: 1;
}

.hv2-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 0.85rem;
  z-index: 25;
  transition: padding-top 260ms ease;
}

.hv2-header.is-scrolled {
  padding-top: 1rem;
}

.hv2-navbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem 0.15rem;
  border-radius: 0;
  border: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition:
    width 260ms ease,
    max-width 260ms ease,
    padding 260ms ease,
    border-radius 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    backdrop-filter 260ms ease,
    transform 260ms ease;
}

.hv2-navbar.is-scrolled {
  width: min(100%, 66rem);
  max-width: 66rem;
  padding: 0.82rem 1.05rem;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(24px);
  transform: translateY(0);
  box-shadow:
    0 26px 52px rgba(0, 30, 30, 0.1),
    0 12px 24px rgba(0, 30, 30, 0.05);
}

.hv2-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.hv2-brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1rem;
  object-fit: cover;
  /* box-shadow: 0 10px 18px rgba(0, 30, 30, 0.08); */
}

.hv2-brand-text {
  font-family: var(--hv2-font);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hv2-nav-links,
.hv2-nav-actions {
  display: none;
  align-items: center;
  gap: 0.85rem;
}

.hv2-nav-links a,
.hv2-link-button {
  color: var(--hv2-text-soft);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 180ms ease, transform 180ms ease;
}

.hv2-nav-links a:hover,
.hv2-link-button:hover {
  color: var(--hv2-text);
  transform: translateY(-1px);
}

.hv2-menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.33rem;
  width: 2.95rem;
  height: 2.95rem;
  padding: 0.75rem;
  border: 1px solid rgba(0, 30, 30, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.hv2-menu-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--hv2-text);
  transition: transform 180ms ease;
}

.hv2-menu-toggle.is-open span:first-child {
  transform: translateY(0.35rem) rotate(45deg);
}

.hv2-menu-toggle.is-open span:last-child {
  transform: translateY(-0.35rem) rotate(-45deg);
}

.hv2-mobile-menu {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  box-shadow: var(--hv2-shadow-soft);
}

.hv2-mobile-menu[hidden] {
  display: none;
}

.hv2-mobile-menu a {
  color: var(--hv2-text-soft);
  font-weight: 500;
}

.hv2-primary-button,
.hv2-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.hv2-primary-button {
  color: var(--hv2-brand-on-primary);
  border: 1px solid rgba(6, 52, 52, 0.2);
  background: linear-gradient(135deg, var(--hv2-brand-primary) 0%, var(--hv2-brand-primary-container) 100%);
  box-shadow: 0 16px 34px rgba(0, 30, 30, 0.18);
}

.hv2-primary-button:hover,
.hv2-secondary-button:hover {
  transform: translateY(-2px);
}

.hv2-secondary-button {
  color: var(--hv2-text);
  border: 1px solid var(--hv2-border);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--hv2-shadow-soft);
}

.hv2-primary-button--sm {
  min-height: 2.95rem;
  padding-inline: 1.25rem;
  font-size: 0.92rem;
}

.hv2-badge,
.hv2-kicker,
.hv2-bento-tag,
.hv2-price-badge,
.hv2-section-heading span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  border: 1px solid var(--hv2-border);
  background: rgba(255, 255, 255, 0.76);
  color: var(--hv2-text-soft);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hv2-hero {
  min-height: 100vh;
  padding: 8.4rem 0 3.6rem;
  background: transparent;
}

.hv2-page {
  padding: 8.5rem 0 4rem;
}

.hv2-page-hero {
  padding: 1.25rem 0 2.8rem;
}

.hv2-page-hero-copy {
  max-width: 47rem;
}

.hv2-page-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(3, 0, 8, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--hv2-text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.hv2-page-title {
  margin: 1rem 0 0;
  max-width: 16ch;
  font-size: clamp(2.65rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 500;
  text-wrap: balance;
}

.hv2-page-description {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  color: var(--hv2-text-soft);
  font-size: clamp(1rem, 2vw, 1.08rem);
  line-height: 1.75;
}

.hv2-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hv2-page-grid,
.hv2-page-cards,
.hv2-jobs-grid,
.hv2-legal-grid {
  display: grid;
  gap: 1rem;
}

.hv2-page-card,
.hv2-legal-card {
  padding: 1.45rem;
  border: 1px solid rgba(3, 0, 8, 0.08);
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 251, 251, 0.8));
  box-shadow: 0 18px 40px rgba(0, 30, 30, 0.05);
}

.hv2-page-card h2,
.hv2-page-card h3,
.hv2-legal-card h2,
.hv2-legal-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.hv2-page-card p,
.hv2-page-card li,
.hv2-legal-card p,
.hv2-legal-card li {
  color: var(--hv2-text-soft);
  line-height: 1.72;
}

.hv2-page-stat-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.hv2-page-stat {
  padding: 1rem;
  border: 1px solid rgba(3, 0, 8, 0.07);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.76);
}

.hv2-page-stat strong {
  display: block;
  margin-top: 0;
  font-size: 2rem;
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.hv2-page-stat span {
  display: block;
  margin-top: 0.35rem;
  color: var(--hv2-text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.hv2-page-media {
  overflow: hidden;
  padding: 0.9rem;
  border: 1px solid rgba(3, 0, 8, 0.08);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 248, 0.84));
  box-shadow: 0 22px 52px rgba(0, 30, 30, 0.08);
}

.hv2-page-media img {
  display: block;
  width: 100%;
  border-radius: 1.35rem;
}

.hv2-page-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.hv2-page-list li {
  position: relative;
  padding-left: 1.2rem;
}

.hv2-page-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--hv2-brand-secondary);
}

.hv2-page-note {
  margin-top: 1rem;
  color: var(--hv2-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hv2-legal-prose {
  display: grid;
  gap: 1rem;
}

.hv2-legal-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.hv2-job-card {
  display: grid;
  gap: 1.2rem;
}

.hv2-job-card-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(3, 0, 8, 0.08);
}

.hv2-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hv2-job-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(3, 0, 8, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--hv2-text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.hv2-job-columns {
  display: grid;
  gap: 1rem;
}

.hv2-job-columns h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  line-height: 1.3;
}

.hv2-hero-copy {
  max-width: 76rem;
  margin: 0 auto;
  text-align: center;
}

.hv2-hero-title,
.hv2-section-header h2,
.hv2-footer-cta h2 {
  margin: 0;
  font-family: var(--hv2-font);
  font-weight: 500;
  letter-spacing: -0.07em;
}

.hv2-hero-title {
  font-size: clamp(3.05rem, 6.8vw, 4.75rem);
  line-height: 0.93;
  max-width: 17.25ch;
  margin-inline: auto;
  text-wrap: balance;
}

.hv2-hero-description,
.hv2-section-header p,
.hv2-footer-cta p,
.hv2-footer-copy,
.hv2-pricing-note p {
  margin: 1.3rem auto 0;
  max-width: 45rem;
  color: var(--hv2-text-soft);
  font-size: clamp(1rem, 2vw, 1.08rem);
  line-height: 1.75;
}

.hv2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hv2-hero-stage {
  position: relative;
  height: clamp(19.2rem, 33vw, 27.2rem);
  margin-top: 2.35rem;
  overflow: hidden;
  perspective: 2200px;
  perspective-origin: center bottom;
}

.hv2-hero-dashboard {
  --hv2-hero-progress: 0;
  position: absolute;
  left: 50%;
  bottom: -10.4rem;
  width: min(100%, 66rem);
  padding: 1rem;
  border-radius: 2.25rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 38px 80px rgba(0, 30, 30, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.38);
  transform-origin: 50% 100%;
  transform:
    translateX(-50%)
    translateY(calc(10.4rem - (var(--hv2-hero-progress) * 12.4rem)))
    rotateX(calc(88deg - (var(--hv2-hero-progress) * 88deg)))
    scale(calc(0.942 + (var(--hv2-hero-progress) * 0.058)));
  transition: transform 140ms linear;
  will-change: transform;
}

.hv2-hero-dashboard-image {
  display: block;
  width: 100%;
  border-radius: 1.4rem;
  object-fit: cover;
  transform-origin: 50% 100%;
}

.hv2-setting-card,
.hv2-stat-card,
.hv2-category-card,
.hv2-bento-card,
.hv2-testimonial-card,
.hv2-price-card,
.hv2-faq-item,
.hv2-footer-grid,
.hv2-footer-cta,
.hv2-gallery-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.66));
  backdrop-filter: blur(22px);
  box-shadow: var(--hv2-shadow);
}

.hv2-gallery-column {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  min-height: 100%;
}

.hv2-gallery-track {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  animation: hv2-gallery-up 30s linear infinite;
  will-change: transform;
}

.hv2-gallery-column:nth-child(even) .hv2-gallery-track {
  animation-name: hv2-gallery-down;
  animation-duration: 32s;
}

.hv2-gallery-card {
  overflow: hidden;
}

.hv2-gallery-image,
.hv2-bento-image {
  display: block;
  width: 100%;
  border-radius: 1.1rem;
  object-fit: cover;
}

.hv2-gallery-card .hv2-gallery-image {
  height: auto;
  aspect-ratio: auto;
}

.hv2-pricing-note,
.hv2-testimonial-person span,
.hv2-footer-links span {
  color: var(--hv2-text-muted);
}

.hv2-gallery-showcase {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  height: clamp(28rem, 50vw, 39rem);
  margin-top: 0.5rem;
  padding: clamp(0.8rem, 1.4vw, 1rem);
  overflow: hidden;
  border-radius: 2.5rem;
  background: linear-gradient(180deg, rgba(0, 30, 30, 0.045), rgba(0, 30, 30, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.38),
    0 22px 44px rgba(0, 30, 30, 0.06);
}

.hv2-gallery-showcase::before,
.hv2-gallery-showcase::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  height: 3.8rem;
  z-index: 3;
  pointer-events: none;
  border-radius: 999px;
}

.hv2-gallery-showcase::before {
  top: 0.45rem;
  background: linear-gradient(180deg, rgba(247, 251, 251, 0.98), rgba(247, 251, 251, 0));
  filter: blur(10px);
}

.hv2-gallery-showcase::after {
  bottom: 0.45rem;
  background: linear-gradient(0deg, rgba(247, 251, 251, 0.98), rgba(247, 251, 251, 0));
  filter: blur(10px);
}

.hv2-gallery-column--2 {
  padding-top: 1.25rem;
}

.hv2-gallery-column--3 {
  padding-top: 0.6rem;
}

.hv2-setting-value,
.hv2-stat-card strong,
.hv2-price-card strong {
  display: block;
  margin-top: 0.25rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.hv2-logo-band {
  max-width: 56rem;
  margin: 2.35rem auto 0;
}

.hv2-logo-band-title {
  margin: 0 0 1rem;
  color: var(--hv2-text-muted);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-transform: none;
}

#fitur .hv2-section-header,
#galeri .hv2-section-header,
#testimoni .hv2-section-header,
#harga .hv2-section-header {
  max-width: 46rem;
  margin-inline: auto;
  align-items: center;
  text-align: center;
}

#fitur .hv2-section-header p,
#galeri .hv2-section-header p,
#testimoni .hv2-section-header p,
#harga .hv2-section-header p {
  margin-inline: auto;
  text-align: center;
}

.hv2-feature-tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  max-width: 100%;
  margin: 2.15rem auto 1.5rem;
  padding: 0;
  overflow-x: auto;
  border-bottom: 1px solid rgba(3, 0, 8, 0.1);
  scrollbar-width: none;
}

.hv2-feature-tabs::-webkit-scrollbar {
  display: none;
}

.hv2-feature-tab {
  flex: 0 0 auto;
  border: 0;
  border-bottom: 2px solid transparent;
  min-height: 3.35rem;
  padding: 0.85rem 1.2rem 0.95rem;
  background: transparent;
  color: var(--hv2-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.hv2-feature-tab.is-active {
  color: var(--hv2-text);
  border-bottom-color: var(--hv2-brand-secondary);
}

.hv2-feature-panels {
  margin-top: 0;
}

.hv2-feature-panel {
  display: block;
  padding: clamp(1.35rem, 2.2vw, 1.9rem);
  border: 1px solid rgba(3, 0, 8, 0.08);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(0, 30, 30, 0.05);
}

.hv2-feature-panel[hidden] {
  display: none;
}

.hv2-feature-panel-layout {
  display: grid;
  gap: 1.3rem;
  align-items: start;
}

.hv2-feature-copy {
  display: grid;
  align-content: start;
}

.hv2-feature-panel-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  width: fit-content;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(3, 0, 8, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--hv2-text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.hv2-feature-copy h3 {
  margin: 0.95rem 0 0;
  max-width: 16ch;
  font-size: clamp(1.7rem, 2.8vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.14;
}

.hv2-feature-copy p {
  margin: 0.9rem 0 0;
  max-width: 34rem;
  color: var(--hv2-text-soft);
  font-size: 0.99rem;
  line-height: 1.72;
}

.hv2-feature-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  margin: 1.45rem 0 0;
  padding: 0;
  list-style: none;
}

.hv2-feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  min-height: 100%;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(3, 0, 8, 0.07);
  border-radius: 1rem;
  background: rgba(248, 251, 251, 0.86);
  color: var(--hv2-text-soft);
  line-height: 1.6;
}

.hv2-feature-point-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.12rem;
  border-radius: 999px;
  background: rgba(0, 109, 54, 0.12);
  color: var(--hv2-brand-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.hv2-feature-visual {
  display: grid;
  gap: 0.95rem;
}

.hv2-feature-visual-card {
  overflow: hidden;
  padding: 0.75rem;
  border: 1px solid rgba(3, 0, 8, 0.08);
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 248, 0.88));
}

.hv2-feature-visual-image {
  display: block;
  width: 100%;
  border-radius: 1.15rem;
}

.hv2-feature-visual-note {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(3, 0, 8, 0.07);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
}

.hv2-feature-visual-note span {
  color: var(--hv2-text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.hv2-feature-visual-note strong {
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hv2-marquee {
  margin-top: 0;
  overflow: hidden;
  padding: 0.55rem 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.hv2-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: hv2-marquee 28s linear infinite;
}

.hv2-marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--hv2-border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--hv2-text-soft);
  font-weight: 500;
  white-space: nowrap;
}

.hv2-section {
  padding: clamp(4.75rem, 8vw, 6.75rem) 0;
}

#testimoni,
#faq {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.48));
}

#galeri {
  overflow: hidden;
}

.hv2-section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

.hv2-section-header h2,
.hv2-footer-cta h2 {
  font-size: 40px;
  line-height: 48px;
  max-width: 18ch;
  text-wrap: balance;
}

.hv2-settings-grid,
.hv2-problem-stats,
.hv2-category-grid,
.hv2-bento-grid,
.hv2-feature-showcase,
.hv2-feature-stack,
.hv2-testimonial-grid,
.hv2-pricing-cards,
.hv2-footer-links {
  display: grid;
  gap: 1rem;
}

.hv2-setting-card,
.hv2-stat-card,
.hv2-category-card,
.hv2-feature-lead,
.hv2-feature-item,
.hv2-bento-card,
.hv2-testimonial-card,
.hv2-price-card,
.hv2-faq-item {
  padding: 1.5rem;
  border-radius: var(--hv2-radius-lg);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hv2-setting-card:hover,
.hv2-stat-card:hover,
.hv2-category-card:hover,
.hv2-feature-lead:hover,
.hv2-feature-item:hover,
.hv2-bento-card:hover,
.hv2-testimonial-card:hover,
.hv2-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(0, 30, 30, 0.09);
}

.hv2-setting-value {
  color: var(--hv2-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.hv2-setting-card h3,
.hv2-category-card h3,
.hv2-feature-lead h3,
.hv2-feature-item h3,
.hv2-bento-card h3,
.hv2-testimonial-card p,
.hv2-price-card span,
.hv2-faq-trigger span:first-child {
  margin: 0.55rem 0 0;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hv2-setting-card p,
.hv2-stat-card span,
.hv2-category-card p,
.hv2-feature-lead p,
.hv2-feature-item p,
.hv2-bento-card p,
.hv2-price-card p,
.hv2-faq-panel p {
  margin: 0.7rem 0 0;
  color: var(--hv2-text-soft);
  line-height: 1.7;
}

.hv2-feature-showcase {
  gap: 1.25rem;
}

.hv2-feature-lead,
.hv2-feature-item {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68));
  backdrop-filter: blur(22px);
  box-shadow: var(--hv2-shadow);
}

.hv2-feature-lead {
  padding: 1.75rem;
}

.hv2-feature-lead-copy {
  max-width: 35rem;
}

.hv2-feature-lead h3 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.hv2-feature-lead-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.hv2-feature-signal {
  padding: 1rem;
  border-radius: 1.25rem;
  background: rgba(0, 30, 30, 0.035);
  border: 1px solid var(--hv2-border-soft);
}

.hv2-feature-signal span,
.hv2-feature-signal small,
.hv2-feature-item-index {
  color: var(--hv2-text-muted);
}

.hv2-feature-signal strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.hv2-feature-signal small {
  display: block;
  margin-top: 0.25rem;
  line-height: 1.55;
}

.hv2-feature-stack {
  gap: 1rem;
}

.hv2-feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.hv2-feature-item-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid var(--hv2-border);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 500;
}

.hv2-stat-card {
  text-align: center;
}

.hv2-stat-card strong {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
}

.hv2-category-card {
  min-height: 13rem;
}

.hv2-bento-card--image {
  padding: 0.8rem;
  overflow: hidden;
}

.hv2-testimonial-marquees {
  display: grid;
  gap: 1rem;
}

.hv2-testimonial-scroller {
  position: relative;
  overflow: hidden;
  padding: 0.2rem 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.hv2-testimonial-scroller::before,
.hv2-testimonial-scroller::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4.25rem;
  z-index: 2;
  pointer-events: none;
}

.hv2-testimonial-scroller::before {
  left: 0;
  background: linear-gradient(90deg, rgba(247, 251, 251, 0.98), rgba(247, 251, 251, 0));
}

.hv2-testimonial-scroller::after {
  right: 0;
  background: linear-gradient(270deg, rgba(247, 251, 251, 0.98), rgba(247, 251, 251, 0));
}

.hv2-testimonial-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: hv2-marquee 34s linear infinite;
}

.hv2-testimonial-track--reverse {
  animation-name: hv2-marquee-reverse;
  animation-duration: 36s;
}

.hv2-testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: min(22.5rem, calc(100vw - 3rem));
  min-height: 15.5rem;
  padding: 1.35rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(3, 0, 8, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 249, 0.8));
  box-shadow: none;
  transition: none;
}

.hv2-testimonial-card p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.72;
}

.hv2-testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  min-height: 3rem;
}

.hv2-testimonial-person img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.hv2-testimonial-person strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
}

.hv2-testimonial-card:hover {
  transform: none;
  box-shadow: none;
}

.hv2-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(3, 0, 8, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.hv2-price-card-head {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto auto 1fr;
  min-height: 11.4rem;
  padding: 0.2rem;
  border-radius: 1rem;
}

.hv2-price-card-plan-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 1.6rem;
}

.hv2-price-card-plan {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  margin-top: 0;
  font-size: 0.92rem;
  font-weight: 500;
}

.hv2-price-card-price {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  margin-top: 0.7rem;
}

.hv2-price-card strong {
  margin: 0;
  font-size: 35px;
  line-height: 1;
}

.hv2-price-card-price p {
  margin: 0 0 0.22rem;
  font-size: 0.92rem;
  color: var(--hv2-text-soft);
}

.hv2-price-card-billing {
  display: block;
  margin-top: 0.35rem;
  color: var(--hv2-text-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hv2-price-card-plan-row .hv2-price-badge,
.hv2-price-card-billing {
  font-weight: 500;
}

.hv2-price-badge,
.hv2-price-card-billing {
  margin-top: 0;
}

.hv2-price-card-description {
  margin: 0.65rem 0 0;
  color: var(--hv2-text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  min-height: 4.5rem;
}

.hv2-price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.hv2-price-card li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--hv2-text-soft);
  font-size: 0.92rem;
  line-height: 1.58;
}

.hv2-price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.06rem;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--hv2-brand-secondary);
  font-size: 0.92rem;
  font-weight: 700;
}

.hv2-pricing-cards {
  align-items: stretch;
  margin-top: 0.75rem;
  gap: 0.85rem;
}

.hv2-price-card--featured {
  transform: none;
  border-color: rgba(0, 109, 54, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 247, 0.88));
  box-shadow: inset 0 0 0 1px rgba(0, 109, 54, 0.08);
}

.hv2-price-card--featured .hv2-price-card-head {
  background: transparent;
  border-color: transparent;
}

.hv2-price-card--featured .hv2-price-card-plan {
  color: var(--hv2-text);
}

.hv2-price-badge {
  margin-bottom: 0;
  min-height: 1.45rem;
  padding: 0.14rem 0.5rem;
  border: 1px solid rgba(0, 109, 54, 0.14);
  background: rgba(131, 251, 165, 0.22);
  color: var(--hv2-brand-secondary);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.hv2-price-card-action {
  width: 100%;
  margin-top: auto;
  justify-content: center;
  font-size: 0.88rem;
  text-align: center;
}

.hv2-pricing-note {
  margin-top: 1.5rem;
  text-align: center;
}

.hv2-pricing-note a {
  color: var(--hv2-primary);
  font-weight: 500;
}

.hv2-faq-shell {
  max-width: 55rem;
}

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

.hv2-faq-item {
  overflow: hidden;
}

.hv2-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.hv2-faq-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 30, 30, 0.05);
  transition: transform 180ms ease;
}

.hv2-faq-trigger[aria-expanded="true"] .hv2-faq-icon {
  transform: rotate(45deg);
}

.hv2-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.hv2-faq-panel p {
  padding-top: 0.9rem;
}

.hv2-footer {
  padding: 1rem 0 3rem;
}

.hv2-footer-cta,
.hv2-footer-grid {
  padding: 1.7rem;
  border-radius: var(--hv2-radius-xl);
}

.hv2-footer-cta {
  display: grid;
  gap: 1.4rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(13, 128, 95, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(237, 247, 242, 0.84));
  color: var(--hv2-text);
}

.hv2-footer-cta h2,
.hv2-footer-cta p,
.hv2-footer-cta .hv2-kicker {
  color: inherit;
}

.hv2-footer-cta .hv2-kicker {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(3, 0, 8, 0.08);
}

.hv2-footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hv2-footer-cta .hv2-link-button {
  color: var(--hv2-text-soft);
  align-self: center;
}

.hv2-footer-grid {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(240, 248, 248, 0.72));
}

.hv2-brand--footer {
  margin-bottom: 1rem;
}

.hv2-footer-copy {
  margin-top: 0;
  max-width: 31rem;
}

.hv2-footer-links span {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hv2-footer-links a {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--hv2-text-soft);
  font-weight: 500;
}

.hv2-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hv2-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes hv2-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes hv2-marquee-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

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

@keyframes hv2-gallery-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(calc(-50% - 0.45rem)); }
}

@keyframes hv2-gallery-down {
  0% { transform: translateY(calc(-50% - 0.45rem)); }
  100% { transform: translateY(0); }
}

@media (min-width: 720px) {
  .hv2-section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }

  #fitur .hv2-section-header,
  #galeri .hv2-section-header,
  #testimoni .hv2-section-header,
  #harga .hv2-section-header {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .hv2-section-header p {
    max-width: 33rem;
    margin-inline: 0;
  }

  #fitur .hv2-section-header p,
  #galeri .hv2-section-header p,
  #testimoni .hv2-section-header p,
  #harga .hv2-section-header p {
    margin-inline: auto;
  }

  .hv2-settings-grid,
  .hv2-problem-stats,
  .hv2-feature-lead-grid,
  .hv2-testimonial-grid,
  .hv2-pricing-cards,
  .hv2-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hv2-footer-cta,
  .hv2-footer-grid {
    padding: 2rem;
  }
}

@media (min-width: 960px) {
  .hv2-navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .hv2-nav-links,
  .hv2-nav-actions {
    display: inline-flex;
  }

  .hv2-nav-links {
    justify-self: center;
    gap: 3rem;
  }

  .hv2-nav-actions {
    justify-self: end;
  }

  .hv2-menu-toggle,
  .hv2-mobile-menu {
    display: none;
  }

  .hv2-feature-panel-layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    align-items: center;
  }

  .hv2-settings-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hv2-gallery-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
  }

  .hv2-feature-showcase {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: stretch;
  }

  .hv2-problem-stats,
  .hv2-testimonial-grid,
  .hv2-pricing-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .hv2-bento-grid {
    grid-template-columns: 1.05fr 1.05fr 1.2fr;
  }

  .hv2-bento-card--image {
    grid-row: span 2;
  }

  .hv2-footer-cta {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }

  .hv2-footer-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 2rem;
  }

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

  .hv2-page-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }

  .hv2-page-cards,
  .hv2-jobs-grid,
  .hv2-legal-grid,
  .hv2-job-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 959px) {
  .hv2-navbar {
    border-radius: 1.4rem;
    padding: 0.82rem 0.15rem;
  }

  .hv2-navbar.is-scrolled {
    width: 100%;
    padding: 0.76rem 0.86rem;
  }

  .hv2-feature-tabs {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hv2-gallery-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 25rem;
  }

  .hv2-gallery-column--2,
  .hv2-gallery-column--3 {
    padding-top: 0;
  }

  .hv2-gallery-column:nth-child(even) {
    padding-top: 1rem;
  }

  .hv2-feature-tabs::-webkit-scrollbar {
    display: none;
  }

  .hv2-page {
    padding-top: 7.5rem;
  }

  .hv2-page-title {
    max-width: none;
  }

  .hv2-job-card-head {
    align-items: flex-start;
  }
}

@media (max-width: 719px) {
  .hv2-container {
    width: min(calc(100% - 1.25rem), var(--hv2-max-width));
  }

  .hv2-hero-title {
    max-width: 13.8ch;
  }

  .hv2-logo-band {
    margin-top: 0.95rem;
  }

  .hv2-footer-cta,
  .hv2-footer-grid {
    padding: 1.15rem;
  }

  .hv2-page-card,
  .hv2-legal-card {
    padding: 1.1rem;
    border-radius: 1.3rem;
  }

  .hv2-page-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hv2-page-actions .hv2-primary-button,
  .hv2-page-actions .hv2-secondary-button {
    width: 100%;
  }


  .hv2-hero-stage {
    height: 13.4rem;
  }

  .hv2-hero-dashboard {
    bottom: -5.6rem;
    width: calc(100% - 0.6rem);
    padding: 0.6rem;
    border-radius: 1.35rem;
  }

  .hv2-feature-panel {
    padding: 1rem;
    border-radius: 1.45rem;
  }

  .hv2-feature-tab {
    min-height: 2.9rem;
    padding: 0.72rem 1rem;
    font-size: 0.88rem;
  }

  .hv2-feature-copy h3 {
    max-width: none;
    font-size: 1.58rem;
  }

  .hv2-feature-checklist {
    grid-template-columns: 1fr;
  }

  .hv2-feature-checklist li,
  .hv2-feature-visual-note {
    padding: 0.9rem;
  }

  .hv2-gallery-showcase {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    height: 23rem;
    margin-top: 0.35rem;
    padding: 0.7rem;
    border-radius: 1.8rem;
  }

  .hv2-gallery-column:nth-child(n+2) {
    display: none;
  }

  .hv2-gallery-card {
    border-radius: 1rem;
  }

  .hv2-gallery-showcase::before,
  .hv2-gallery-showcase::after {
    left: 0.55rem;
    right: 0.55rem;
    height: 2.8rem;
  }

  .hv2-setting-card,
  .hv2-stat-card,
  .hv2-category-card,
  .hv2-feature-lead,
  .hv2-feature-item,
  .hv2-bento-card,
  .hv2-testimonial-card,
  .hv2-price-card,
  .hv2-faq-item {
    padding: 1.2rem;
  }
}

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

  .hv2-marquee-track,
  .hv2-gallery-track,
  .hv2-reveal,
  .hv2-hero-dashboard,
  .hv2-primary-button,
  .hv2-secondary-button,
  .hv2-setting-card,
  .hv2-stat-card,
  .hv2-category-card,
  .hv2-bento-card,
  .hv2-testimonial-card,
  .hv2-price-card {
    animation: none !important;
    transition: none !important;
  }
}
