.header-mobile-actions {
  display: none;
}

:root {
  --panguru-red: #ff3131;
  --panguru-red-hover: #e02020;
  --panguru-red-light: rgba(255, 49, 49, 0.08);
  --bg-white: #FFFFFF;
  --bg-off-white: #FAFAFA;
  --bg-light-gray: #F5F5F5;
  --text-heading: #1A1A1A;
  --text-body: #666666;
  --text-muted: #999999;
  --border-light: #F0F0F0;
  --border-medium: #E5E5E5;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #E5E5E7;
  border-radius: 10px;
  border: 2px solid #FFFFFF;
}

::-webkit-scrollbar-thumb:hover {
  background: #D1D1D6;
}

::-webkit-scrollbar-thumb:active {
  background: var(--panguru-red);
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-white);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background-color: var(--panguru-red-light);
  color: var(--text-heading);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}


.heading-xl {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-heading);
}

.heading-lg {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-heading);
}

.heading-md {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text-heading);
}

.text-body {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-body);
}

.text-small {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.text-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--panguru-red);
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
}


.global-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.global-wrapper>* {
  width: 100%;
}

.section-padding {
  padding: 120px 0;
}

.section-padding-sm {
  padding: 80px 0;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;

  transition: background 0.3s ease,
    padding-top 0.3s ease,
    padding-bottom 0.3s ease,
    box-shadow 0.3s ease,
    border 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

}

.navbar.scrolled .navbar-inner {
  position: relative;
}

.navbar.scrolled .navbar-inner::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-light);
}

.navbar .container {
  max-width: 1100px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.navbar-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-base);
}

.logo-img {
  height: 40px;

  width: auto;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition-base);
}

.navbar-links a:hover {
  color: var(--text-heading);
}


.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.03),
    0 16px 40px rgba(0, 0, 0, 0.08);
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  margin-top: 12px;
}


.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.app-link-card {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 10px !important;
  border-radius: 10px;
  transition: var(--transition-base);
  text-decoration: none;
}

.app-link-card:hover {
  background: var(--bg-soft);
}

.app-icon-wrap {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.app-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-heading);
}

.app-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.2;
}


.navbar-right {
  display: flex;
  align-items: center;
}


.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  background: var(--panguru-red);
  color: #FFFFFF;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-base);
}

.nav-cta:hover {
  background: var(--panguru-red-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 49, 49, 0.3);
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--panguru-red);
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-base);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--panguru-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 49, 49, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-heading);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-base);
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--text-heading);
  transform: translateY(-1px);
}


.hero-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  pointer-events: none;
}

.hero-family {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 200px 24px 140px;
  overflow: hidden;
  background: var(--bg-white);
}

@media (max-width: 768px) {
  .hero-family {
    padding: 160px 24px 100px;
  }
}

.hero-family-center {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.hero-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 49, 49, 0.04);
  border: 1px solid rgba(255, 49, 49, 0.15);
  padding: 6px 16px 6px 8px;
  border-radius: 100px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.hero-tag-pill:hover {
  background: rgba(255, 49, 49, 0.08);
  border-color: rgba(255, 49, 49, 0.3);
  transform: translateY(-1px);
}

.tag-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  padding: 4px 10px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: 0.02em;
}

.tag-brand strong {
  color: var(--panguru-red);
  font-weight: 800;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--panguru-red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 49, 49, 0.4);
  animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 49, 49, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(255, 49, 49, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 49, 49, 0);
  }
}

.tag-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 49, 49, 0.2);
}

.tag-product {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--panguru-red);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


.float-item {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  will-change: transform;
}


.hero-svg-1 {
  animation: floatA 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.hero-svg-2 {
  animation: floatB 9s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.5s;
}

.hero-svg-3 {
  animation: floatC 7s cubic-bezier(0.4, 0, 0.2, 1) infinite 1s;
}

.hero-svg-4 {
  animation: floatD 6s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.3s;
}

.hero-svg-5 {
  animation: floatE 10s cubic-bezier(0.4, 0, 0.2, 1) infinite 1.5s;
}

.hero-svg-6 {
  animation: floatF 8.5s cubic-bezier(0.4, 0, 0.2, 1) infinite 2s;
}

.hero-svg-7 {
  animation: floatA 7.5s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.8s;
}

.hero-svg-8 {
  animation: floatC 9.5s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.2s;
}

.hero-svg-9 {
  animation: floatD 8s cubic-bezier(0.4, 0, 0.2, 1) infinite 1.2s;
}

.hero-svg-10 {
  animation: floatE 7s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.7s;
}

.hero-svg-11 {
  animation: floatB 9s cubic-bezier(0.4, 0, 0.2, 1) infinite 1.1s;
}

.hero-svg-12 {
  animation: floatA 8.5s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.4s;
}

.hero-svg-13 {
  animation: floatF 7.5s cubic-bezier(0.4, 0, 0.2, 1) infinite 1.3s;
}

.hero-svg-14 {
  animation: floatD 9s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.2s;
}

.hero-svg-15 {
  animation: floatC 8s cubic-bezier(0.4, 0, 0.2, 1) infinite 1.8s;
}

.hero-svg-16 {
  animation: floatE 10s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.6s;
}

.hero-svg-17 {
  animation: floatB 7.5s cubic-bezier(0.4, 0, 0.2, 1) infinite 1.4s;
}

.hero-svg-18 {
  animation: floatA 9.5s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.9s;
}

.hero-decor-1 {
  animation: floatE 6s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.5s;
  opacity: 0.8;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.hero-decor-2 {
  animation: floatC 8s cubic-bezier(0.4, 0, 0.2, 1) infinite 1.2s;
  opacity: 0.7;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.hero-decor-3 {
  animation: floatA 5s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.3s;
  opacity: 0.9;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.hero-decor-4 {
  animation: floatF 7s cubic-bezier(0.4, 0, 0.2, 1) infinite 2s;
  opacity: 0.6;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.hero-decor-5 {
  animation: floatB 9s cubic-bezier(0.4, 0, 0.2, 1) infinite 1.8s;
  opacity: 0.8;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.hero-decor-6 {
  animation: floatD 6s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.9s;
  opacity: 0.7;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.hero-decor-7 {
  animation: floatA 7.5s cubic-bezier(0.4, 0, 0.2, 1) infinite 1.4s;
  opacity: 0.9;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.hero-decor-8 {
  animation: floatE 8s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.6s;
  opacity: 0.8;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.hero-decor-9 {
  animation: floatC 6.5s cubic-bezier(0.4, 0, 0.2, 1) infinite 1.1s;
  opacity: 0.7;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}


@keyframes floatA {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-20px) rotate(4deg) scale(1.03);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-12px) translateX(8px) rotate(-3deg);
  }

  66% {
    transform: translateY(8px) translateX(-4px) rotate(2deg);
  }
}

@keyframes floatC {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-25px) rotate(-6deg) scale(1.05);
  }
}

@keyframes floatD {

  0%,
  100% {
    transform: translate(0px, 0px) scale(1) rotate(0deg);
  }

  50% {
    transform: translate(8px, -15px) scale(1.08) rotate(5deg);
  }
}

@keyframes floatE {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-15px) rotate(4deg);
  }

  66% {
    transform: translateY(5px) rotate(-3deg);
  }
}

@keyframes floatF {

  0%,
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }

  50% {
    transform: translate(-10px, -20px) rotate(-5deg) scale(1.06);
  }
}


.bento-section {
  background: transparent;
  padding: 20px 0 0 0;
}

.container-bento {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.bento-header {
  text-align: center;
  margin-bottom: 30px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(min-content, max-content);
  gap: 16px;
}

.bento-card {
  background: #FCFCFC;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: none;
}

.bento-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.bento-visual {
  flex: 1;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.bento-center {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-padding {
  padding: 30px 0;
}

.bento-dark {
  grid-row: span 2;
  background: #111;
  color: #fff;
  border-color: #222;
}

.bento-dark .bento-visual {
  background: #0A0A0A;
  flex-direction: column;
  align-items: stretch;
  padding: 24px;
  justify-content: flex-start;
}

.bento-dark:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.bento-content {
  padding: 20px 24px 24px;
}

.bento-dark .bento-content {
  background: transparent;
}

.bento-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.bento-dark .bento-content h3 {
  color: #fff;
}

.bento-content p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.4;
}

.bento-dark .bento-content p {
  color: rgba(255, 255, 255, 0.6);
}


.dark-ui-mockup {
  gap: 10px;
  position: relative;
}


@keyframes rowScan {
  0% {
    opacity: 0.4;
    transform: scale(0.98);
    border-color: rgba(255, 255, 255, 0.05);
  }

  20% {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
  }

  40%,
  100% {
    opacity: 0.4;
    transform: scale(0.98);
    border-color: rgba(255, 255, 255, 0.05);
  }
}

.mockup-row {
  display: flex;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: rowScan 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.4;
  transform: scale(0.98);
}

.mockup-row:nth-child(1) {
  animation-delay: 0s;
}

.mockup-row:nth-child(2) {
  animation-delay: 1.3s;
}

.mockup-row:nth-child(3) {
  animation-delay: 2.6s;
  margin-bottom: 0;
}

.mockup-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
  color: #fff;
}

.mockup-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.mockup-text strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.mockup-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1px;
}


@keyframes minimalPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.2);
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
    transform: scale(1);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(76, 175, 80, 0.05);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  animation: minimalPulse 2.5s infinite;
}

.pill-green svg {
  color: #4CAF50;
  width: 18px;
  height: 18px;
}


@keyframes lineFill {

  0%,
  10% {
    height: 0%;
  }

  45%,
  55% {
    height: 50%;
  }

  90%,
  100% {
    height: 100%;
  }
}

@keyframes stepPop {

  0%,
  100% {
    transform: scale(1);
    border-color: #E5E5E5;
    background: #fff;
    box-shadow: none;
  }

  50% {
    transform: scale(1.2);
    border-color: #3b82f6;
    background: #DBEAFE;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  }
}

.stepper-ui {
  width: 100%;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.stepper-ui::before {
  content: '';
  position: absolute;
  left: 45.5px;
  top: 10px;
  bottom: 16px;
  width: 2px;
  background: rgba(0, 0, 0, 0.05);
  z-index: 0;
}

.stepper-ui::after {
  content: '';
  position: absolute;
  left: 45.5px;
  top: 10px;
  width: 2px;
  background: #3b82f6;
  z-index: 1;
  border-radius: 10px;
  animation: lineFill 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.step-r {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.step-r::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #E5E5E5;
  margin-right: 14px;
}

.step-r:nth-child(1)::before {
  animation: stepPop 4s infinite 0s;
}

.step-r:nth-child(2)::before {
  animation: stepPop 4s infinite 1.8s;
}

.step-r:nth-child(3)::before {
  animation: stepPop 4s infinite 3.6s;
}

.step-r span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1A1A1A;
  flex: 1;
  text-align: left;
}

.step-r small {
  font-size: 0.7rem;
  color: #999;
}




@keyframes shakeFire {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  25% {
    transform: rotate(-10deg) scale(1.1);
  }

  50% {
    transform: rotate(10deg) scale(1.1);
  }

  75% {
    transform: rotate(-10deg) scale(1.1);
  }
}

.urgent-ui {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-heading);
  padding: 12px 24px;
  background: rgba(255, 152, 0, 0.05);
  border: 1px solid rgba(255, 152, 0, 0.15);
  border-radius: 100px;
}

.fire-icon {
  background: #FFF3E0;
  padding: 6px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: shakeFire 2s infinite ease-in-out;
}


.flex-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 60px;
  width: 100%;
}

.fun-avatar {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  animation: orbitFood 8s infinite cubic-bezier(0.36, 0, 0.64, 1);
  left: 50%;
  margin-left: -22px;
}

.fun-avatar:nth-child(1) {
  animation-delay: 0s;
}

.fun-avatar:nth-child(2) {
  animation-delay: -2s;
}

.fun-avatar:nth-child(3) {
  animation-delay: -4s;
}

.fun-avatar:nth-child(4) {
  animation-delay: -6s;
}

@keyframes orbitFood {
  0% {
    transform: translateX(0) scale(1) translateY(0);
    z-index: 4;
    opacity: 1;
  }

  25% {
    transform: translateX(40px) scale(0.8) translateY(-5px);
    z-index: 2;
    opacity: 0.6;
  }

  50% {
    transform: translateX(0) scale(0.6) translateY(-10px);
    z-index: 1;
    opacity: 0.3;
  }

  75% {
    transform: translateX(-40px) scale(0.8) translateY(-5px);
    z-index: 2;
    opacity: 0.6;
  }

  100% {
    transform: translateX(0) scale(1) translateY(0);
    z-index: 4;
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-dark {
    grid-row: auto;
  }
}



.mockup-showcase-section {
  position: relative;
  overflow: hidden;
}

.flex-showcase {
  display: flex;
  align-items: center;
  gap: 60px;
}

.showcase-left,
.showcase-right {
  flex: 1;
}

.showcase-left {
  display: flex;
  justify-content: flex-start;
}

.showcase-right {
  display: flex;
  flex-direction: column;
}


.flex-showcase.reverse {
  flex-direction: row-reverse;
}

.flex-showcase.reverse .showcase-left {
  justify-content: flex-end;
}

.flex-showcase.reverse .showcase-right {
  align-items: flex-start;
}

.mockup-stage {
  background: var(--bg-off-white);
  border-radius: 36px;
  padding: 32px 32px 0 32px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  max-width: 480px;
  width: 100%;
}

.mockup-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.highlight-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--panguru-red);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.custom-xl {
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.showcase-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 100%;
}

.mini-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-icon {
  font-size: 1.25rem;
  color: var(--panguru-red);
}

.mini-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-heading);
}

.elegant-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.05);
  margin: 0 auto;
}

.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  background: var(--panguru-red);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 49, 49, 0.15);
  min-width: 180px;
}

.store-btn:hover {
  transform: translateY(-2px);
  background: #e62e2e;
  box-shadow: 0 8px 24px rgba(255, 49, 49, 0.3);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.btn-text span {
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
}

.btn-text strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}


@keyframes floatCap {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-3px) rotate(5deg);
  }
}

.anim-float-cap {
  display: inline-block;
  animation: floatCap 3s infinite ease-in-out;
}

@keyframes pulseMuscle {

  0%,
  100% {
    transform: scale(1);
  }

  10%,
  30% {
    transform: scale(1.15) rotate(5deg);
  }

  20%,
  40% {
    transform: scale(1);
  }
}

.anim-pulse-muscle {
  display: inline-block;
  animation: pulseMuscle 3s infinite;
  transform-origin: bottom left;
}

@keyframes shineCoin {

  0%,
  100% {
    transform: perspective(400px) rotateY(0);
  }

  50% {
    transform: perspective(400px) rotateY(180deg);
  }
}

.anim-shine-coin {
  display: inline-block;
  animation: shineCoin 4s infinite linear;
}

@keyframes vibrateBolt {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(-1px, 1px) scale(1.1);
  }

  50% {
    transform: translate(1px, -1px) scale(1);
  }

  75% {
    transform: translate(-1px, -1px) scale(1.1);
  }
}

.anim-vibrate-bolt {
  display: inline-block;
  animation: vibrateBolt 0.5s infinite ease-in-out;
}

@keyframes swayLeaf {

  0%,
  100% {
    transform: rotate(-15deg);
  }

  50% {
    transform: rotate(15deg);
  }
}

.anim-sway-leaf {
  display: inline-block;
  animation: swayLeaf 3s infinite ease-in-out;
  transform-origin: bottom center;
}

@keyframes bounceSalad {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px) scaleY(1.05);
  }
}

.anim-bounce-salad {
  display: inline-block;
  animation: bounceSalad 2s infinite ease-in-out;
}


.visual-board {
  position: relative;
  width: 100%;
  height: 250px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.v-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 14px 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  z-index: 2;
}

.v-card:hover {
  transform: scale(1.05) translateY(-5px) !important;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  z-index: 10;
  border-color: var(--panguru-red);
}

.v-card-1 {
  top: 0%;
  left: 0%;
  transform: rotate(-2deg);
}

.v-card-2 {
  top: 38%;
  left: 8%;
  transform: rotate(1.5deg);
}

.v-card-3 {
  top: 76%;
  left: 1%;
  transform: rotate(-1deg);
}

.v-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 49, 49, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--panguru-red);
}

.v-content {
  display: flex;
  flex-direction: column;
}

.v-content strong {
  font-size: 1rem;
  color: var(--text-heading);
  font-weight: 700;
}

.v-content span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.board-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 49, 49, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.board-desc {
  max-width: 520px;
  margin-top: 30px;
  opacity: 0.9;
}


@keyframes floatSlowV {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

@keyframes floatMediumV {

  0%,
  100% {
    transform: translateY(0) rotate(1.5deg);
  }

  50% {
    transform: translateY(-18px) rotate(4deg);
  }
}

@keyframes floatFastV {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

.anim-float-slow {
  animation: floatSlowV 6s infinite ease-in-out;
}

.anim-float-medium {
  animation: floatMediumV 5s infinite ease-in-out;
}

.anim-float-fast {
  animation: floatFastV 4s infinite ease-in-out;
}

@media (max-width: 992px) {
  .visual-board {
    height: auto;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .v-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100%;
    animation: none !important;
  }
}

@media (max-width: 992px) {
  .flex-showcase {
    flex-direction: column;
    text-align: center;
  }

  .showcase-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .showcase-desc {
    margin: 0 auto 40px auto;
  }
}


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

.cluster-container {
  display: flex;
  align-items: center;
  gap: 100px;
  min-height: 500px;
}

.cluster-info {
  flex: 1;
}

.cluster-mission {
  max-width: 480px;
  margin-top: 24px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.studio-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.tech-pill {
  background: var(--bg-off-white);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-heading);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tech-pill:hover {
  background: #ffffff;
  border-color: var(--panguru-red);
  color: var(--panguru-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 49, 49, 0.1);
}


.cluster-visual {
  flex: 1.2;
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-orb {
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(255, 49, 49, 0.15);
  z-index: 5;
  border: 4px solid var(--bg-white);
}

.node-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--text-heading);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 10;
  transition: transform 0.3s ease;
}

.node-card:hover {
  transform: scale(1.1) !important;
  z-index: 20;
}

.node-1 {
  top: 15%;
  left: 10%;
}

.node-2 {
  top: 25%;
  right: 10%;
}

.node-3 {
  bottom: 20%;
  left: 25%;
}

.node-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 49, 49, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}


.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.connection-lines line {
  stroke: rgba(255, 49, 49, 0.1);
  stroke-width: 2;
  stroke-dasharray: 6;
  animation: dash 20s linear infinite;
}

@keyframes dash {
  from {
    stroke-dashoffset: 200;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pulseSlow {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(255, 49, 49, 0.15);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(255, 49, 49, 0.25);
  }
}

.anim-pulse-slow {
  animation: pulseSlow 4s infinite ease-in-out;
}

@media (max-width: 1200px) {
  .cluster-container {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .cluster-container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .cluster-mission {
    margin: 24px auto 0;
  }

  .studio-stats-minimal {
    justify-content: center;
  }

  .cluster-visual {
    width: 100%;
    height: 400px;
  }
}


.how-it-works {
  background: var(--bg-off-white);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--panguru-red), var(--border-medium), var(--panguru-red));
  opacity: 0.3;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--panguru-red);
  transition: var(--transition-base);
}

.step-item:hover .step-number {
  border-color: var(--panguru-red);
  box-shadow: 0 0 0 8px var(--panguru-red-light);
}

.step-item h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}


.app-preview {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.app-preview-image {
  max-width: 900px;
  margin: 60px auto 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
}


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

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.stat-box {
  background: var(--bg-off-white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--panguru-red);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card {
  background: linear-gradient(135deg, #1A1A1A 0%, #2d2d2d 100%);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 49, 49, 0.1), transparent 60%);
  pointer-events: none;
}

.about-card-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(255, 49, 49, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.about-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}


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

.cta-card {
  background: var(--panguru-red);
  border-radius: 40px;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  overflow: visible;
  position: relative;
  box-shadow: 0 40px 100px rgba(255, 49, 49, 0.15);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  flex: 1.2;
  position: relative;
  z-index: 2;
}

.cta-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-card .heading-lg {
  color: #ffffff;
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 420px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn-white {
  background: #ffffff;
  color: var(--panguru-red);
  padding: 12px 24px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.store-btn-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  background: #fdfdfd;
}

.cta-visual-free {
  position: absolute;
  right: -20px;
  bottom: -80px;
  width: 420px;
  pointer-events: none;
  z-index: 10;
}

.huge-mockup {
  width: 100%;
  height: auto;
  filter: drop-shadow(-20px 40px 60px rgba(0, 0, 0, 0.25));
  transform: rotate(6deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-card:hover .huge-mockup {
  transform: rotate(4deg) scale(1.05) translateY(-20px);
}

@media (max-width: 1200px) {
  .cta-card {
    padding: 50px 60px;
  }

  .cta-card .heading-lg {
    font-size: 2.2rem;
  }

  .cta-visual-free {
    width: 400px;
    right: -20px;
    bottom: -80px;
  }
}

@media (max-width: 992px) {
  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px;
    overflow: hidden;
  }

  .cta-text {
    margin: 0 auto 32px auto;
  }

  .cta-actions {
    justify-content: center;
  }

  .policy-sidebar-container {
    position: relative;
    height: auto;
    /* Match content height */
  }

  .cta-visual-free {
    position: relative;
    width: 100%;
    max-width: 320px;
    right: auto;
    bottom: auto;
    margin: 40px auto -100px auto;
  }

  .huge-mockup {
    transform: rotate(0);
  }
}

@media (max-width: 1200px) {
  .cta-card {
    padding: 60px;
  }

  .cta-card .heading-lg {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 60px 32px;
  }

  .cta-text {
    margin: 0 auto 40px auto;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-visual {
    justify-content: center;
    margin-top: 40px;
  }

  .cta-mockup {
    transform: rotate(0);
  }
}


.footer {
  background: #FFFFFF;
  padding: 60px 0 60px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .navbar-logo {
  color: var(--text-heading);
  margin-bottom: 20px;
  font-weight: 800;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.footer-links-group {
  display: flex;
  gap: 80px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-base);
}

.footer-col a:hover {
  color: var(--panguru-red);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-off-white);
  color: var(--text-muted);
  transition: var(--transition-base);
}

.footer-social a:hover {
  background: var(--panguru-red);
  color: #FFFFFF;
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}


.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 0;
}

.section-header .text-label {
  margin-bottom: 12px;
  display: inline-block;
}

.section-header .heading-lg {
  margin-bottom: 16px;
}

.section-header .text-body {
  max-width: 480px;
  margin: 0 auto;
}

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

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-tall {
    grid-row: auto;
  }
}


.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-heading);
}


.mobile-menu {
  display: none;
}


@media (max-width: 1024px) {
  .float-item {
    opacity: 0.5;
    transform: scale(0.7);
  }

  .float-item img {
    display: none;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }

  .float-item {
    display: none;
  }

  .hero-family {
    min-height: auto;
    padding: 110px 20px 60px;
    text-align: center;
  }

  .hero-family .heading-xl {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .hero-tag-pill {
    transform: scale(0.9);
  }

  .flex-showcase {
    flex-direction: column !important;
    text-align: center;
    gap: 48px;
  }

  .flex-showcase.reverse {
    flex-direction: column !important;
  }

  .showcase-right {
    padding-left: 0;
    padding-right: 0;
  }

  .custom-xl {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }

  .mini-features-grid {
    justify-content: center;
  }

  .navbar-links {
    display: none;
  }

  .navbar-right {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100000;
  }

  .mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-heading);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }


  .mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 2000;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.4);
    /* White transparent backdrop */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .mobile-menu-wrapper.open {
    display: block;
    pointer-events: all;
  }

  .mobile-menu {
    position: fixed;
    top: 80px;
    right: 20px;
    left: 20px;
    background: #ffffff !important;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    transform-origin: top right;
    animation: menuScale 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2001;
    pointer-events: all;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .header-mobile-actions {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-right: -42px;
    /* Pushed significantly more to match the logo distance */
  }

  .header-mobile-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-heading);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .header-mobile-btn:active {
    transform: scale(0.92);
    background: #fdfdfd;
  }

  .header-mobile-btn svg {
    width: 20px;
    height: 20px;
  }


  @keyframes menuScale {
    from {
      opacity: 0;
      transform: scale(0.98) translateY(-10px);
    }

    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-menu-links a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: var(--text-heading) !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 0 !important;
    background: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .mobile-menu-links a:last-child {
    border-bottom: none;
  }

  .mobile-menu-links a::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
    opacity: 0.5;
  }

  .mobile-cta-btn {
    background: var(--panguru-red) !important;
    color: #ffffff !important;
    border: none !important;
    width: 100% !important;
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
    padding: 16px !important;
    border-radius: 14px !important;
    font-weight: 700 !important;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-item:not(:last-child)::after {
    display: none;
  }

  .feature-item {
    padding: 40px 20px;
    border-bottom: 1px solid var(--border-light);
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-container::before {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 48px;
  }

  .footer-brand {
    order: 2;
    /* Move branding to bottom */
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand p {
    max-width: 100%;
    margin: 12px 0 0 0;
  }

  .footer-links-group {
    order: 1;
    /* Links on top */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
    width: 100%;
    text-align: left;
    padding: 0;
  }

  .footer-col h4 {
    margin-bottom: 16px;
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }

  .footer-bottom-left {
    text-align: left;
    width: 100%;
    font-size: 0.8rem;
  }

  .footer-social {
    justify-content: flex-start;
    gap: 12px;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
    background: #FAFAFA;
    border: 1px solid var(--border-light);
  }

  .footer {
    padding: 20px 0 30px 0 !important;
  }

  .cluster-visual {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bento-visual {
    min-height: 200px;
  }

  .container-bento {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .cta-card {
    border-radius: 0 !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    width: 100vw !important;
    max-width: none !important;
    padding: 60px 24px !important;
  }

  .elegant-divider {
    display: block !important;
    height: 1px;
    background: var(--border-light);
    opacity: 0.5;
    width: 80% !important;
    margin: 0 auto !important;
  }

  .studio-tech-stack {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    width: 100%;
  }

  .tech-pill {
    white-space: nowrap !important;
    font-size: 0.65rem !important;
    padding: 6px 10px !important;
    flex: 1;
    text-align: center;
  }

  .cluster-container {
    gap: 0 !important;
    padding: 0 !important;
    min-height: auto !important;
  }

  .cluster-visual {
    display: none !important;
  }

  .mobile-menu-btn {
    position: fixed !important;
    top: 18px !important;
    right: 24px !important;
    z-index: 99999 !important;
    pointer-events: all !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  }

  .navbar-inner {
    padding-right: 60px !important;
    /* Make room for the fixed button */
  }

  .connection-lines {
    display: none;
  }

  .store-buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    justify-content: center !important;
    width: 100%;
  }

  .store-buttons .store-btn {
    flex: 1;
    padding: 14px 16px !important;
    min-width: 140px;
  }

  .store-buttons .store-btn .btn-text strong {
    font-size: 0.75rem !important;
  }

  .store-buttons .store-btn .btn-text span {
    font-size: 0.6rem !important;
  }

  .cta-visual-free {
    display: none !important;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .store-btn-white {
    width: 100%;
    justify-content: center;
  }
}


.contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.contact-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.minimal-contact-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 12px 24px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal-overlay.active .minimal-contact-card {
  transform: translateY(0);
}

.m-card-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.m-card-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1d1d1f;
  letter-spacing: -0.01em;
}

.m-card-brand img {
  width: 28px;
  height: 28px;
}

.m-card-divider {
  width: 1px;
  height: 24px;
  background: #e2e2e7;
}

.m-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.m-action-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: #515154;
  transition: all 0.2s ease;
}

.m-action-item svg {
  color: #86868b;
  transition: color 0.2s ease;
}

.m-action-item:hover {
  background: #f5f5f7;
  color: var(--panguru-red);
}

.m-action-item:hover svg {
  color: var(--panguru-red);
}

.minimal-close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  background: #1d1d1f;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.minimal-close-btn:hover {
  transform: scale(1.1);
  background: var(--panguru-red);
}

@media (max-width: 480px) {
  .m-card-brand span {
    display: none;
  }

  .minimal-contact-card {
    padding: 10px 16px;
  }
}

/* --- Policy Page Spacing Fixes --- */
.policy-footer-spacer {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .policy-footer-spacer {
    padding-top: 100px; /* Recalibrated for a moderate, airy look */
    padding-bottom: 60px;
  }
}