/* ===== CSS Variables (Design Tokens from Figma) ===== */
:root {
  /* Colors */
  --primary-color: #00419C;
  --primary-darken-blue: #0C193E;
  --primary-light-blue: #7BB2FF;
  --neutral-black: #000000;
  --neutral-gray: #999999;
  --neutral-white: #FFFFFF;
  --error-color: #E22935;
  --neutral-700: #43474f;

  /* Gradients */
  --gradient-blue: linear-gradient(to right, #006aff, #004099);
  --gradient-blue-text: linear-gradient(to right, #006aff, #004099);
  --gradient-blue-solid: linear-gradient(to right, #006aff, #004099);
  --gradient-white: linear-gradient(92deg, rgb(255, 255, 255) 0%, rgb(221, 221, 221) 100%);
  --gradient-dark-text: linear-gradient(-58.6deg, rgb(89, 95, 106) 0%, rgb(0, 0, 0) 100%);
  --gradient-dark-title: linear-gradient(97deg, rgb(0, 0, 0) 13%, rgb(79, 79, 79) 91%);

  /* Spacing */
  --gap-8: 8px;
  --gap-10: 10px;
  --gap-14: 14px;
  --gap-16: 16px;
  --gap-24: 24px;
  --gap-32: 32px;
  --gap-64: 64px;
  --gap-72: 72px;

  /* Padding */
  --pd-8: 8px;
  --pd-12: 12px;
  --pd-16: 16px;
  --pd-32: 32px;
  --pd-64: 64px;
  --pd-72: 72px;
  --pd-128: 128px;

  /* Border Radius */
  --radius-sm: 2px;
  --radius-md: 8px;
  --radius-lg: 24px;
  --radius-xl: 48px;

  /* Shadow */
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-button: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  color: var(--neutral-black);
  overflow-x: hidden;
  line-height: 1.4;
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(125% 125% at 50% 90%, #fff 40%, #7BB2FF 100%);
  background-attachment: fixed;
}

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

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

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  background: none;
}


/* ===== Utility Classes ===== */
.gradient-text-blue {
  background: var(--gradient-blue-solid);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-white {
  background: var(--gradient-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grid-bg {
  position: fixed; /* biar gak ikut scroll */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;

  background-image: 
    linear-gradient(to right, #ffffff89 1px, transparent 1px),
    linear-gradient(to bottom, #ffffff89 1px, transparent 1px);

  background-size: 32px 32px;

  /* Fade dari kanan atas */
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 100% 0%, 
    #000 50%, 
    transparent 90%
  );

  mask-image: radial-gradient(
    ellipse 80% 80% at 100% 0%, 
    #000 50%, 
    transparent 90%
  );
}

.page-wrapper {
  width: 100vw;
  margin: 0 auto;
  position: absolute;
  padding: 0 var(--pd-72);
  display: flex;
  justify-content: center;
}

.app-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
  position: relative;
  overflow: visible;
  z-index: 1;   
  max-width: 1728px;
  min-width: 700px;
}

/* ===== Background Decorations ===== */
.bg-decoration-top {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  aspect-ratio: 1/0.3;
  pointer-events: none;
  z-index: 0;
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  width: 80%;
  position: sticky;
  z-index: 1000;
  top: 12px;
  background: rgba(255, 255, 255);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  will-change: transform;
  border-radius: var(--radius-md) 16px var(--radius-md) 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-80px);
}

.navbar-logo img {
  height: 17px;
  width: auto;
}

.navbar-center {
  display: flex;
  align-items: center;
  gap: var(--gap-16);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar-center a {
  font-size: 16px;
  font-weight: 400;
  color: var(--neutral-black);
  letter-spacing: -0.32px;
  padding: 4px 16px;
  transition: color 0.2s ease, transform 0.2s ease ;
}

.navbar-center a:hover {
  color: var(--primary-color);
  transform: scale(1.08);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: var(--gap-16);
}

.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.navbar.hide {
  transform: translateY(-120%);
  opacity: 0;
}

.navbar.show {
  transform: translateY(0);
  opacity: 1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: var(--gap-8);
  font-size: 16px;
  letter-spacing: -0.32px;
}

.language-switcher .active {
  color: var(--neutral-black);
}

.language-switcher .divider {
  width: 1px;
  height: 16px;
  background: var(--neutral-gray);
}

.language-switcher .inactive {
  color: var(--neutral-gray);
}

.cta-button {
  display: flex;
  align-items: center;
  position: relative;
  padding: var(--pd-8); 
  width: 125px;
  height: 40px;
  background: var(--gradient-blue);
  border-radius: var(--radius-sm) var(--radius-md) var(--radius-sm) var(--radius-md);
  box-shadow: var(--shadow-card);
  color: var(--neutral-white);
  font-size: 12px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-button span {
  position: relative;
  left: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.cta-button::after {
  content: attr(data-hover);
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 26px;
  transition: all 0.3s ease;
  z-index: 2;
}

.icon-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50% 0 0 50%;
  transition: all 0.3s ease;
  z-index: 3;
}

.cta-button img {
  width: 9px;
  height: 9px;
  filter: brightness(0) invert(1);
}

.cta-button:hover {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-button:hover span {
  left: -100%; 
}

.cta-button:hover::after {
  left: 0; 
}

.cta-button:hover .icon-wrapper {
  right: 75%; 
  background-color: transparent;
}

.fab-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gradient-blue-solid);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: var(--shadow-button);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.fab-button:hover {
  transform: scale(1.1);
}

.fab-button:hover img{
  transform: rotate(45deg);
}

.fab-button:active {
  transform: scale(0.95);
}

.fab-button img{
  width: 50%;
  height: 50%;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
/* ===== Hero Section ===== */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-32);
  padding: var(--pd-72) 0;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: clip;
}

.hero-card {
  display: flex;
  flex-direction: row;
  padding: 6px var(--pd-8);
  gap: var(--gap-8);
  color: #00419C;
  background: var(--neutral-white);
  box-shadow: var(--shadow-card);
  border-radius: 4px 8px 4px 8px;
}

.hero-card img{
  width: 22px;
}

.hero-title {
  text-align: center;
  font-size: 96px;
  line-height: 1.05;
  letter-spacing: -4.8px;
}

.hero-title .digitalisasi {
  font-weight: 600;
  font-style: italic;
  background: var(--gradient-dark-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .bisnis-mu {
  font-weight: 500;
  background: var(--gradient-blue-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -9.6px;
}

.hero-title .elegan {
  font-weight: 500;
  background: var(--gradient-blue-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -9.6px;
}

.hero-description {
  font-size: 16px;
  font-weight: 400;
  color: var(--neutral-gray);
  text-align: center;
  letter-spacing: -0.32px;
  max-width: 672px;
}


.hero-button {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-8);
  padding: var(--pd-12) var(--pd-16);
  background: var(--gradient-blue);
  border-radius: var(--radius-sm) 6px var(--radius-sm) 6px;
  box-shadow: var(--shadow-button);
  color: var(--neutral-white);
  font-size: 16px;
  letter-spacing: -0.32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

/* ===== Brand Section ===== */
.brand-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-32);
  width: 100vw;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.brand-title {
  display: flex;
  align-items: center;
  gap: var(--gap-32);
}

.brand-title .line {
  width: 120px;
  height: 1px;
  background: var(--neutral-black);
}

.brand-title p {
  font-size: 16px;
  letter-spacing: -0.32px;
  text-align: center;
  white-space: nowrap;
}

.brand-container {
  width: 100vw;
  background: var(--primary-light-blue);
  overflow: hidden;
}

.brand-logos {
  display: flex;
  align-items: center;
  width: max-content;
  height: 96px;
  animation: scrollLogo 30s linear infinite;
  will-change: transform;
}

.brand-logos img {
  height: auto;
  max-height: 42px;
  width: auto;
  flex-shrink: 0;
  margin-right: var(--gap-64);
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

@keyframes scrollLogo {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===== Problem Section ===== */
.problem-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-32);
  padding: var(--pd-8);
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: clip;
}

.problem-title {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.76px;
  text-align: center;
}

.problem-cards {
  display: flex;
  gap: var(--gap-16);
  width: 100%;
  justify-content: center;
}

.problem-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-16);
  padding: var(--pd-32);
  background: var(--neutral-white);
  border-radius: var(--radius-md) var(--radius-lg) var(--radius-md) var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.problem-card .number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.42px;
  background: var(--gradient-blue-solid);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-card .card-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--neutral-black);
  letter-spacing: -0.32px;
}

.problem-card .card-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--neutral-700);
  letter-spacing: -0.24px;
  line-height: 1.4;
}

/* ===== Solving Section ===== */
.solving-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-32);
  padding: var(--pd-8);
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: clip;
}

.solving-title {
  font-size: 51px;
  letter-spacing: -1.02px;
  text-align: center;
  line-height: 1.2;
}

.solving-title .tenang {
  font-weight: 600;
  font-style: italic;
  background: var(--gradient-dark-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solving-title .kami-bisa {
  font-weight: 500;
  background: var(--gradient-blue-solid);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solving-container {
  background: var(--primary-darken-blue);
  border-radius: 12px var(--radius-xl) 12px var(--radius-xl);
  width: 100%;
  overflow: hidden;
}

.solving-row {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-16);
  padding: var(--pd-32);
  overflow: hidden;
}

.solving-row .solving-icon {
  width: 184px;
  height: 65.7px;
  flex-shrink: 0;
}

.solving-row .solving-icon img {
  width: 100%;
  height: 100%;
}

.solving-row-title {
  padding: var(--pd-8) var(--pd-16);
  width: 512px;
  flex-shrink: 0;
}

.solving-row-title h3 {
  font-size: 38px;
  font-weight: 500;
  color: var(--neutral-white);
  letter-spacing: -0.76px;
  line-height: 1.4;
}

.solving-row-desc {
  padding: var(--pd-8) var(--pd-32);
  flex: 1;
}

.solving-row-desc p {
  font-size: 16px;
  font-weight: 400;
  color: var(--neutral-white);
  letter-spacing: -0.32px;
  line-height: 1.4;
}

.solving-divider {
  width: 100%;
  height: 1px;
  background: var(--neutral-white);
}

.solving-cta-row {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-16);
  padding: var(--pd-32);
  background: var(--gradient-blue-solid);
  justify-content: flex-end;
  overflow: hidden;
}

.solving-cta-row .solving-icon {
  width: 184px;
  height: 65.7px;
  flex-shrink: 0;
}

.solving-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--neutral-white);
  border-radius: 2.5px 10px 2.5px 10px;
  box-shadow: var(--shadow-card);
  color: var(--neutral-white);
  font-size: 16px;
  letter-spacing: -0.32px;
  transition: transform 0.2s ease, background 0.2s ease;
  width: 171px;
  justify-content: center;
  background: transparent;
}

.solving-cta-button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.solving-cta-button span {
  background: var(--gradient-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solving-cta-button .arrow-icon {
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
}

/* ===== Flow Section ===== */
.flow-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-32);
  padding: var(--pd-8) 0;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: clip;
}

.flow-title {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.flow-title h2 {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.76px;
  text-align: center;
  white-space: nowrap;
}

.flow-title img {
  height: 44px;
  width: 195px;
}

.flow-subtitle {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  letter-spacing: -0.32px;
  max-width: 672px;
}

.flow-cards {
  display: flex;
  gap: var(--gap-32);
  align-items: center;
  justify-content: center;
  padding: var(--pd-32) 0;
  width: 100%;
  height: auto;
}

.flow-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-14);
  padding: var(--gap-24) 0;
  height: 100%;
}

.flow-card .flow-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.flow-card .flow-icon img {
  width: 50%;
  height: auto;
}

.flow-card h4 {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  text-transform: capitalize;
}

.flow-card p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  letter-spacing: -0.7px;
  line-height: 1.2;
}

/* ===== Price Section ===== */
.price-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-32);
  padding: var(--pd-8);
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: clip;
}

.price-title {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.76px;
  text-align: center;
}

.price-subtitle {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  letter-spacing: -0.32px;
  max-width: 672px;
}

.price-cards {
  display: flex;
  gap: var(--gap-16);
  align-items: center;
  justify-content: center;
  padding: var(--pd-32) 0;
  width: 100%;
}

.price-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--gap-16);
  padding: var(--pd-32);
  background: var(--neutral-white);
  border-radius: 6px var(--radius-lg) 6px var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.price-card-recomendation {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px;
  background: var(--gradient-blue-solid);
  border-radius: 6px var(--radius-lg) 6px var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.container-recomendation {
  display: flex;
  align-items: center; 
  padding: 6px; 
}

.title-recomendation {
  color: white;
  padding: 0 var(--pd-8);
  font-size: small;
}

.container-recomendation img {
  width: 16px; 
  height: auto;
}

.price-container-info{
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 6px var(--radius-lg) 6px var(--radius-lg);
  font-size: 12px;
  padding:  var(--pd-16) var(--pd-16) var(--pd-32) var(--pd-16);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

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

.price-card-info {
  display: flex;
  flex-direction: column;
  gap: var(--gap-24);
  align-items: center;
  width: 100%;
}

.price-card-name {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.56px;
  text-align: center;
}

.price-card-desc {
  font-size: 16px;
  color: var(--neutral-gray);
  text-align: center;
  letter-spacing: -0.32px;
}

.price-card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.price-card-price .current-price {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.76px;
  text-align: center;
}

.price-card-price .old-price {
  font-size: 21px;
  font-weight: 400;
  color: var(--neutral-gray);
  text-decoration: line-through;
  letter-spacing: -0.42px;
  text-align: center;
}

.price-card-discount {
  padding-top: 24px;
  text-align: center;
}

.price-card-discount span {
  font-size: 16px;
  letter-spacing: -0.32px;
}

.price-card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
}

.price-feature img {
  width: 16.67px;
  height: 16.67px;
  flex-shrink: 0;
}

.price-feature span {
  font-size: 16px;
  letter-spacing: -0.32px;
}

.price-feature.disabled span {
  color: var(--neutral-gray);
}

.price-card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: var(--gradient-blue);
  border-radius: 2.5px 10px 2.5px 10px;
  box-shadow: var(--shadow-card);
  color: var(--neutral-white);
  font-size: 16px;
  letter-spacing: -0.32px;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

/* ===== Inspiration Section ===== */
.inspiration-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-32);
  padding: var(--pd-8);
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md) 0 var(--radius-md) 36px;
  overflow: clip;
}

.inspiration-title {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.76px;
  text-align: center;
}

.inspiration-subtitle {
  font-size: 16px;
  color: var(--neutral-gray);
  text-align: center;
  letter-spacing: -0.32px;
  max-width: 672px;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: var(--pd-32) 0;
  width: 100%;
}

.inspiration-card {
  display: flex;
  flex-direction: column;
  gap: var(--gap-16);
  padding: var(--pd-16) var(--pd-16) var(--pd-32) var(--pd-16);
  background: var(--neutral-white);
  border-radius: var(--radius-md) var(--radius-lg) var(--radius-md) var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.inspiration-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px 16px 4px 16px;
  overflow: hidden;
}

.inspiration-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inspiration-card-info {
  display: flex;
  flex-direction: column;
  gap: var(--gap-16);
  padding: var(--pd-16);
}

.inspiration-card-info h4 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.32px;
}

.inspiration-card-info p {
  font-size: 12px;
  color: var(--neutral-gray);
  letter-spacing: -0.24px;
  line-height: 1.4;
}

.inspiration-card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: var(--gradient-blue);
  border-radius: 2.5px 10px 2.5px 10px;
  box-shadow: var(--shadow-card);
  color: var(--neutral-white);
  font-size: 16px;
  letter-spacing: -0.32px;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.inspiration-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

.inspiration-more {
  display: flex;
  align-items: center;
  gap: var(--gap-24);
  justify-content: center;
  width: 305px;
}

.inspiration-more .line {
  width: 120px;
  height: 1px;
  background: var(--neutral-black);
}

.inspiration-more-button {
  display: flex;
  width: 120px;
  height: auto;
  align-items: center;
  gap: var(--gap-16);
  padding: var(--pd-16);
  background: var(--gradient-blue-solid);
  border-radius: var(--radius-sm) var(--radius-md) var(--radius-sm) var(--radius-md);
  box-shadow: var(--shadow-button);
  flex: 1;
  justify-content: center;
  transition: transform 0.2s ease;
}

.inspiration-more-button:hover {
  transform: translateY(-2px);
}

.inspiration-more-button span {
  font-size: 16px;
  color: var(--neutral-white);
  letter-spacing: -0.32px;
}

.inspiration-more-button .arrow-icon {
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
}

/* INPIRATION */

/* ===== SEO Section ===== */
.seo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-32);
  width: 100%;
  position: relative;
  z-index: 1;
}

.seo-title {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.76px;
  text-align: center;
}

.seo-subtitle {
  font-size: 16px;
  color: var(--neutral-gray);
  text-align: center;
  letter-spacing: -0.32px;
  max-width: 672px;
}

.scene {
  position: relative;
  width: 100%;
  height: 520px;
  background: rgb(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: inset 0px 0px 4px rgb(0, 0, 0, 0.3);
  border-radius: 12px var(--radius-xl) 12px var(--radius-xl);
  overflow: hidden; /* clip absolutely-positioned dm-matter elements */
}

.dm-matter-elem, .dm-matter-elem-circle, .dm-matter-elem-pill {
  pointer-events: none;
  white-space: nowrap;
  position: absolute;
}

.dm-matter-elem {
  position: absolute;
  padding: 10px 20px;
  background: white;
  color: black;
  border: 1px solid black;
  border-radius: 8px;
  pointer-events: none;
  white-space: nowrap;
}

.dm-matter-elem-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  pointer-events: none;
}

.dm-matter-elem-circle img{
  width: 90%;
  height: auto;
}

.dm-matter-elem-pill {
  position: absolute;
  padding: 10px 30px;
  background: var(--primary-light-blue);
  border: 1px solid black;
  border-radius: 50px;
  pointer-events: none;
  white-space: nowrap;
}

/* ===== FAQ Section ===== */
.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-32);
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: clip;
}

.faq-title {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.76px;
  text-align: center;
}

.faq-subtitle {
  font-size: 16px;
  color: var(--neutral-gray);
  text-align: center;
  letter-spacing: -0.32px;
  max-width: 672px;
}

.faq-grid {
  column-count: 2;
  column-gap: 16px;
  gap: 16px;
  width: 100%;
}

.faq-item {
  background: var(--neutral-white);
  border-radius: var(--radius-md) 4px var(--radius-md) 4px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  display: inline-block;
  width: 100%;
  margin-bottom: 16px;
}

.faq-item:hover {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--pd-16) var(--pd-32);
  cursor: pointer;
  min-height: 60px;
  user-select: none;
}

.faq-question p {
  font-size: 16px;
  letter-spacing: -0.32px;
}

.faq-question .faq-arrow {
  width: 10px;
  height: 5px;
  transition: transform 0.3s ease;
  transform: rotate(180deg);
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease, padding 0.3s ease;
}

.faq-answer-content {
  padding: 0 var(--pd-32) var(--pd-16);
  font-size: 14px;
  color: var(--neutral-gray);
  letter-spacing: -0.28px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* ===== FAQ CTA Section ===== */
.faq-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-32);
  padding: var(--pd-64) var(--pd-8);
  background: var(--neutral-white);
  border-radius: var(--radius-md) var(--radius-lg) var(--radius-md) var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: -48px;
  margin-bottom: -18px;
}

.faq-cta-title {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.76px;
  text-align: center;
}

.faq-cta-desc {
  font-size: 16px;
  color: var(--neutral-gray);
  text-align: center;
  letter-spacing: -0.32px;
  max-width: 672px;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-8);
  padding: var(--pd-8) var(--pd-16);
  background: var(--gradient-blue-solid);
  border-radius: 4px var(--radius-md) 4px var(--radius-md);
  color: var(--neutral-white);
  font-size: 12px;
  letter-spacing: -0.24px;
  transition: transform 0.2s ease;
}

.faq-cta-button:hover {
  transform: translateY(-2px);
}

.faq-cta-button .arrow-icon {
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
}

/* ===== Footer ===== */
.footer {
  display: flex;
  flex-direction: column;
  gap: var(--gap-16);
  align-items: center;
  padding: var(--gap-32) var(--pd-64);
  background: var(--neutral-white);
  border-radius: var(--radius-md) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-card);
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: clip;
}

.footer-top {
  display: flex;
  gap: var(--gap-32);
  width: 100%;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: var(--gap-16);
  width: 504px;
  padding: 12px 0;
  flex-shrink: 0;
}

.footer-logo img {
  height: 18px;
  width: auto;
}

.footer-desc {
  font-size: 12px;
  color: var(--neutral-gray);
  letter-spacing: -0.24px;
  line-height: 1.4;
}

.footer-socials {
  display: flex;
  gap: var(--gap-16);
  align-items: center;
}

.footer-socials img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer-socials a:hover img {
  opacity: 1;
}

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

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: var(--gap-8);
}

.footer-link-title {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.32px;
  color: var(--neutral-black);
}

.footer-link-group a {
  font-size: 12px;
  color: var(--neutral-gray);
  letter-spacing: -0.24px;
  transition: color 0.2s ease;
}

.footer-link-group a:hover {
  color: var(--neutral-black);
}

.footer-divider {
  width: 100%;
  height: 0.5px;
  background: var(--neutral-gray);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: var(--pd-16) 0;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: -0.24px;
}

.footer-bottom-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-bottom-icons img {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

/* ===== Scroll-Driven Fade-In Animations ===== */

/* Reveal-on-scroll, driven by IntersectionObserver (works in every browser).
   Elements start hidden + blurred, then transition to visible when .in-view
   is added by script.js. */

/* Text elements: titles, subtitles, descriptions, buttons */
.brand-title,
.problem-title,
.solving-title,
.flow-title,
.flow-subtitle,
.price-title,
.price-subtitle,
.inspiration-title,
.inspiration-subtitle,
.inspiration-more,
.seo-title,
.seo-subtitle,
.faq-title,
.faq-subtitle,
.price-card-recomendation {
  opacity: 0;
  translate: 0 3rem;
  filter: blur(12px);
  transition:
    opacity 0.7s ease-out,
    translate 0.7s ease-out,
    filter 0.7s ease-out;
  will-change: opacity, translate, filter;
}

/* Cards & containers: scale + fade */
.problem-card,
.solving-container,
.flow-card,
.price-card,
.inspiration-card,
.seo-tags,
.faq-item,
.faq-cta-section {
  opacity: 0;
  translate: 0 2.5rem;
  scale: 0.92;
  filter: blur(16px);
  transition:
    opacity 0.75s ease-out,
    translate 0.75s ease-out,
    scale 0.75s ease-out,
    filter 0.75s ease-out;
  will-change: opacity, translate, scale, filter;
}

/* Visible state */
.brand-title.in-view,
.problem-title.in-view,
.solving-title.in-view,
.flow-title.in-view,
.flow-subtitle.in-view,
.price-title.in-view,
.price-subtitle.in-view,
.inspiration-title.in-view,
.inspiration-subtitle.in-view,
.inspiration-more.in-view,
.seo-title.in-view,
.seo-subtitle.in-view,
.faq-title.in-view,
.faq-subtitle.in-view,
.price-card-recomendation.in-view,
.problem-card.in-view,
.solving-container.in-view,
.flow-card.in-view,
.price-card.in-view,
.inspiration-card.in-view,
.seo-tags.in-view,
.faq-item.in-view,
.faq-cta-section.in-view {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  filter: blur(0);
}

/* Staggered cascade: cards in the same row reveal one after another */
.problem-card:nth-child(2),
.flow-card:nth-child(2),
.inspiration-card:nth-child(2),
.price-card:nth-child(3) {
  transition-delay: 0.12s;
}

.problem-card:nth-child(3),
.flow-card:nth-child(3),
.inspiration-card:nth-child(3) {
  transition-delay: 0.24s;
}

.flow-card:nth-child(4) {
  transition-delay: 0.36s;
}

.flow-card:nth-child(5) {
  transition-delay: 0.48s;
}

/* ==========================================================================
   RESPONSIVE / MEDIA QUERIES
   Desktop-first: base styles target large screens, overrides scale down.
   Breakpoints: 1200px, 1024px, 768px (tablet), 480px (mobile)
   ========================================================================== */

/* ===== ≤1200px : large laptops ===== */
@media (max-width: 1200px) {
  .page-wrapper {
    padding: 0 var(--pd-32);
  }

  .app-container {
    gap: 80px;
  }

  .hero-title {
    font-size: 76px;
    letter-spacing: -3.8px;
  }

  .hero-title .bisnis-mu,
  .hero-title .elegan {
    letter-spacing: -6px;
  }

  .solving-title {
    font-size: 44px;
  }

  .solving-row-title {
    width: 360px;
  }

  .solving-row-title h3 {
    font-size: 30px;
  }

  .solving-row .solving-icon,
  .solving-cta-row .solving-icon {
    width: 140px;
    height: auto;
  }

  .footer-left {
    width: 380px;
  }
}

/* ===== ≤1024px : tablets landscape / small laptops ===== */
@media (max-width: 1024px) {
  .app-container {
    gap: 64px;
    min-width: 0;
  }

  .navbar {
    width: 92%;
  }

  .hero-section {
    padding: var(--pd-32) 0;
  }

  .hero-title {
    font-size: 60px;
    letter-spacing: -3px;
  }

  .hero-title .bisnis-mu,
  .hero-title .elegan {
    letter-spacing: -4px;
  }

  .brand-title .line {
    width: 80px;
  }

  .problem-title,
  .flow-title h2,
  .price-title,
  .inspiration-title,
  .seo-title,
  .faq-title,
  .faq-cta-title {
    font-size: 32px;
  }

  .solving-title {
    font-size: 38px;
  }

  /* Solving rows: let title/desc share the space more evenly */
  .solving-row {
    flex-wrap: wrap;
  }

  .solving-row-title {
    width: auto;
    flex: 1 1 260px;
  }

  .solving-row-desc {
    flex: 1 1 100%;
    padding: var(--pd-8) var(--pd-16);
  }

  /* Inspiration: 3 → 2 columns */
  .inspiration-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer top wraps: links move below the intro block */
  .footer-left {
    width: 100%;
  }
}

/* ===== ≤768px : tablets portrait ===== */
@media (max-width: 768px) {
  .page-wrapper {
    padding: 0 var(--pd-16);
  }

  .app-container {
    gap: 56px;
    width: 100%;
  }

  /* Navbar: drop the centered links, keep logo + CTA */
  .navbar {
    width: 100%;
    padding: 8px 12px;
  }

  .navbar-center {
    display: none;
  }

  .language-switcher {
    display: none;
  }

  /* Hero */
  .hero-title {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .hero-title .bisnis-mu,
  .hero-title .elegan {
    letter-spacing: -2.5px;
  }

  .hero-title br {
    display: none;
  }

  .hero-description {
    font-size: 15px;
  }

  /* Brand marquee a touch smaller */
  .brand-logos {
    height: 72px;
  }

  .brand-logos img {
    max-height: 32px;
    margin-right: var(--gap-32);
  }

  /* Stack all card rows into a single column */
  .problem-cards,
  .price-cards {
    flex-direction: column;
  }

  .flow-cards {
    flex-wrap: wrap;
    gap: var(--gap-24);
  }

  .flow-card {
    flex: 1 1 40%;
    min-width: 140px;
  }

  /* Solving rows: full vertical stack */
  .solving-row,
  .solving-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gap-8);
    padding: var(--pd-16);
  }

  .solving-row .solving-icon,
  .solving-cta-row .solving-icon {
    display: none;
  }

  /* Reset the ≤1024 flex-basis: in a column it becomes vertical height and
     leaves a huge empty gap between title and description. */
  .solving-row-title,
  .solving-row-desc {
    flex: 0 0 auto;
    width: 100%;
    padding: 0;
  }

  .solving-row-title h3 {
    font-size: 26px;
  }

  .solving-cta-row {
    align-items: center;
  }

  .solving-cta-row .solving-row-desc {
    width: auto;
  }

  /* Inspiration: 2 → 1 column */
  .inspiration-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ: 2 → 1 column */
  .faq-grid {
    column-count: 1;
  }

  .faq-question {
    padding: var(--pd-16) var(--pd-16);
  }

  .faq-answer-content {
    padding: 0 var(--pd-16) var(--pd-16);
  }

  /* Footer: stack intro over the link columns */
  .footer {
    padding: var(--gap-32) var(--pd-32);
  }

  .footer-top {
    flex-direction: column;
    gap: var(--gap-24);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--gap-16);
    align-items: center;
    text-align: center;
  }

  /* Brand + flow titles use white-space: nowrap in the base styles, which
     forces horizontal overflow on narrow screens — let them wrap. */
  .brand-title p,
  .flow-title h2 {
    white-space: normal;
  }

  /* SEO physics scene: shorter on small screens */
  .scene {
    height: 400px;
  }

  /* Let touches pass through the physics canvas so the page scrolls normally
     on mobile (drag interaction stays enabled on desktop). */
  .scene canvas {
    pointer-events: none;
  }

  /* Shrink the floating keyword bodies — matter.js reads offsetWidth/Height,
     so smaller elements = smaller physics bodies that fit the mobile scene
     and leave empty space to scroll through. */
  .dm-matter-elem {
    padding: 6px 12px;
    font-size: 12px;
  }

  .dm-matter-elem-pill {
    padding: 6px 16px;
    font-size: 12px;
  }

  .dm-matter-elem-circle {
    width: 52px;
    height: 52px;
  }
}

/* ===== ≤480px : phones ===== */
@media (max-width: 480px) {
  .page-wrapper {
    padding: 0 var(--pd-12);
  }

  .app-container {
    gap: 48px;
  }

  /* Hide the CTA text-swap animation label so it never overflows */
  .navbar-logo img {
    height: 15px;
  }

  .hero-card p {
    font-size: 13px;
  }

  .hero-title {
    font-size: 34px;
    letter-spacing: -1.2px;
  }

  .hero-title .bisnis-mu,
  .hero-title .elegan {
    letter-spacing: -1.5px;
  }

  .problem-title,
  .flow-title h2,
  .price-title,
  .inspiration-title,
  .seo-title,
  .faq-title,
  .faq-cta-title {
    font-size: 26px;
  }

  .solving-title {
    font-size: 30px;
  }

  /* Flow becomes single column on phones */
  .flow-card {
    flex: 1 1 100%;
  }

  /* Brand title lines take too much room on tiny screens */
  .brand-title .line {
    width: 40px;
  }

  .brand-title p {
    font-size: 14px;
    white-space: normal;
  }

  /* Flow title wraps (logo below text) */
  .flow-title {
    flex-direction: column;
    gap: var(--gap-8);
  }

  .flow-title h2 {
    white-space: normal;
  }

  .price-card-name {
    font-size: 24px;
  }

  .price-card-price .current-price {
    font-size: 32px;
  }

  .faq-cta-section {
    padding: var(--pd-32) var(--pd-16);
  }

  .scene {
    height: 340px;
  }

  .dm-matter-elem,
  .dm-matter-elem-pill {
    padding: 5px 10px;
    font-size: 11px;
  }

  .dm-matter-elem-circle {
    width: 44px;
    height: 44px;
  }

  /* Keep the floating action button clear of screen edges */
  .fab-button {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* Accessibility: show everything instantly, no motion */
@media (prefers-reduced-motion: reduce) {

  .hero-title,
  .hero-description,
  .hero-button,
  .brand-title,
  .problem-title,
  .problem-card,
  .solving-title,
  .solving-container,
  .flow-title,
  .flow-subtitle,
  .flow-card,
  .price-title,
  .price-subtitle,
  .price-card,
  .price-card-recomendation,
  .inspiration-title,
  .inspiration-subtitle,
  .inspiration-card,
  .inspiration-more,
  .seo-title,
  .seo-subtitle,
  .seo-tags,
  .faq-title,
  .faq-subtitle,
  .faq-item,
  .faq-cta-title,
  .faq-cta-desc,
  .faq-cta-button,
  .footer-top,
  .footer-bottom {
    opacity: 1;
    translate: 0 0;
    scale: 1;
    filter: none;
    transition: none;
    animation: none;
  }
}