@font-face {
  font-family: 'Cubao Free';
  src: url('/assets/fonts/Cubao_Free_Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink-dark: #126458;
  --ink-mid: #69B2A7;
  --ink-teal: #33A49C;
  --ink-light: #A6CCC0;
  --bg: #ffffff;
  --muted: #6b7c78;
  --radius: 14px;
  --max-w: 1100px;
  --shadow-sm: 0 6px 26px rgba(18,100,88,0.06);
  --shadow-lg: 0 12px 32px rgba(18,100,88,0.12);
  --transition: all 0.3s ease;
  --section-spacing: 4rem;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: var(--ink-dark);
  background: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Cubao Free', sans-serif;
  color: var(--ink-dark);
  margin-bottom: 1rem;
}

section {
  padding: var(--section-spacing) 0;
  width: 100%;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}
@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-2deg); }
  75% { transform: rotate(2deg); }
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.4s ease-out forwards;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  5% {
    opacity: 0.8;
    transform: translateY(95vh) scale(0.5);
  }
  95% {
    opacity: 0.8;
    transform: translateY(-5vh) scale(1);
  }
  100% {
    transform: translateY(-10vh) scale(0.6);
    opacity: 0;
  }
}

@keyframes wobble {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(-15px) rotate(-3deg);
  }
  75% {
    transform: translateX(15px) rotate(3deg);
  }
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Bubble container styles */
.bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.section-fade-enter-active,
.section-fade-leave-active {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-fade-enter-from,
.section-fade-leave-to {
  opacity: 0;
  transform: translateY(30px);
}

.scroll-reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.slide-enter-active,
.slide-leave-active {
  transition: transform 0.3s ease;
}

.slide-enter-from {
  transform: translateX(-100%);
}

.slide-leave-to {
  transform: translateX(100%);
}

section {
  position: relative;
  padding: 6rem 0;
  background: transparent;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  margin: 1rem;
  z-index: -1;
  transition: opacity 0.3s ease;
  box-shadow: 0 10px 30px rgba(18, 100, 88, 0.1);
}

header[data-v-deba70d7] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  position: relative;
  max-width: 1400px;
  margin: 0 auto 28px;
  padding: 0 2rem;
  width: 100%;
}
.nav-desktop[data-v-deba70d7] {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.nav-mobile[data-v-deba70d7] {
  display: none;
}
.brand[data-v-deba70d7] {
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.brand[data-v-deba70d7]:hover {
  transform: scale(1.02);
}
.logo-container[data-v-deba70d7] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.full-logo[data-v-deba70d7] {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(18,100,88,0.15));
  transition: var(--transition);
}
.brand:hover .full-logo[data-v-deba70d7] {
  filter: drop-shadow(0 6px 12px rgba(18,100,88,0.2));
}
.nav-desktop a[data-v-deba70d7] {
  margin-left: 32px;
  text-decoration: none;
  color: var(--ink-dark);
  font-weight: 600;
  position: relative;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-desktop a[data-v-deba70d7]:first-child {
  margin-left: 0;
}
.nav-desktop a[data-v-deba70d7]:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink-teal);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-desktop .icon[data-v-deba70d7] {
  font-size: 16px;
}
.nav-desktop a[data-v-deba70d7]:not(.btn):hover {
  color: var(--ink-teal);
}
.nav-desktop a[data-v-deba70d7]:not(.btn):hover::after {
  transform: scaleX(1);
}
.nav-desktop .btn[data-v-deba70d7] {
  background: var(--ink-dark);
  color: #fff;
  padding: 14px 24px;
  border-radius: 14px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  margin-left: 32px;
}
.nav-desktop .btn .icon[data-v-deba70d7] {
  font-size: 16px;
  margin-right: 4px;
}
.btn[data-v-deba70d7]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn[data-v-deba70d7]:hover::before {
  transform: translateX(100%);
}
.btn[data-v-deba70d7]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18,100,88,0.2);
}
@media (max-width: 900px) {
header[data-v-deba70d7] {
    justify-content: center;
    padding-top: 1rem;
}
.nav-desktop[data-v-deba70d7] {
    display: none;
}
.brand[data-v-deba70d7] {
    margin: 0 auto;
}
.logo-container[data-v-deba70d7] {
    align-items: center;
}
.nav-mobile[data-v-deba70d7] {
    display: block !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 16px 12px;
    box-shadow: 0 -4px 20px rgba(18,100,88,0.15);
    z-index: 1000;
}
.nav-mobile-items[data-v-deba70d7] {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}
.nav-mobile a[data-v-deba70d7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--ink-dark);
    font-size: 12px;
    margin-left: 0;
}
.nav-mobile .icon[data-v-deba70d7] {
    font-size: 20px;
}
.full-logo[data-v-deba70d7] {
    width: 240px; /* Increased from 180px */
}
}

.footer[data-v-48103df4] {
  background: var(--primary-color);
  color: white;
  padding: 4rem 0 2rem;
}
.container[data-v-48103df4] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-content[data-v-48103df4] {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.logo-section[data-v-48103df4] {
  max-width: 400px;
}
.footer-logo[data-v-48103df4] {
  height: 50px;
  margin-bottom: 1rem;
}
.tagline[data-v-48103df4] {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-style: italic;
}
.contact-section[data-v-48103df4] {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 12px;
}
.contact-section .contact-email[data-v-48103df4] {
  margin: 0;
}
.footer-section p[data-v-48103df4] {
  margin-bottom: 1rem;
  opacity: 0.8;
}
.contact-email[data-v-48103df4] {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}
.contact-email strong[data-v-48103df4] {
  color: white;
  opacity: 1;
}
.contact-email a[data-v-48103df4] {
  color: white;
  text-decoration: underline;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.contact-email a[data-v-48103df4]:hover {
  opacity: 1;
}
h4[data-v-48103df4] {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.footer-nav[data-v-48103df4] {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-nav a[data-v-48103df4] {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer-nav a[data-v-48103df4]:hover {
  opacity: 1;
}

/* Social links styles removed - no longer needed */
.footer-bottom[data-v-48103df4] {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-bottom p[data-v-48103df4] {
  opacity: 0.6;
}
.copyright[data-v-48103df4] {
  font-weight: 600;
  opacity: 0.8 !important;
}
.brand-info[data-v-48103df4] {
  font-size: 0.9rem;
  opacity: 0.7 !important;
}
.license-info[data-v-48103df4] {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.attribution[data-v-48103df4] {
  font-size: 0.85rem;
}
.attribution a[data-v-48103df4] {
  color: white;
  text-decoration: underline;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.attribution a[data-v-48103df4]:hover {
  opacity: 1;
}
@media (max-width: 900px) {
.footer[data-v-48103df4] {
    padding-bottom: calc(4rem + 70px); /* Added extra padding for mobile nav */
}
.footer-content[data-v-48103df4] {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}
.logo-section[data-v-48103df4] {
    max-width: none;
}
.footer-logo[data-v-48103df4] {
    margin: 0 auto 1rem;
}
.footer-nav[data-v-48103df4] {
    align-items: center;
}
}

.cursor-bubbles[data-v-fd8ddc05] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 500;
}
.cursor-bubble[data-v-fd8ddc05] {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 25% 25%, 
    rgba(255, 255, 255, 0.9), 
    rgba(51, 164, 156, 0.4),
    rgba(51, 164, 156, 0.1)
  );
  box-shadow: 
    0 0 20px rgba(51, 164, 156, 0.4),
    inset 0 0 15px rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(51, 164, 156, 0.3);
  pointer-events: none;
  will-change: transform, opacity;
}

/* Animation removed - bubbles now animate via JavaScript for better control */

:root {
  --primary-color: #000;
  --secondary-color: #fff;
  --ink-teal: #33A49C;
  --ink-dark: #126458;
  --ink-light: #F7FFFD;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styles moved to main.css to avoid conflicts */
.ocean-background {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(180deg, var(--ink-light) 0%, #F7FFFD 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.global-bubble {
  position: fixed;
  bottom: -100px;
  background: radial-gradient(circle at 25% 25%, 
    rgba(255, 255, 255, 0.8), 
    rgba(51, 164, 156, 0.35),
    rgba(51, 164, 156, 0.1)
  );
  border-radius: 50%;
  box-shadow: 
    0 0 18px rgba(51, 164, 156, 0.3),
    inset 0 0 15px rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(51, 164, 156, 0.2);
  animation: globalFloatUp linear infinite;
  pointer-events: none;
  z-index: 1;
  will-change: transform, opacity;
}
.header-bubble {
  position: fixed;
  background: radial-gradient(circle at 25% 25%, 
    rgba(255, 255, 255, 0.7), 
    rgba(51, 164, 156, 0.3),
    rgba(51, 164, 156, 0.1)
  );
  border-radius: 50%;
  box-shadow: 
    0 0 15px rgba(51, 164, 156, 0.25),
    inset 0 0 12px rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(51, 164, 156, 0.15);
  animation: headerBubbleBob ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
  will-change: transform;
}
@keyframes globalFloatUp {
0% {
    transform: translateY(0) translateX(0) scale(0.5);
    opacity: 0;
}
5% {
    opacity: 0.7;
    transform: translateY(-5vh) translateX(-10px) scale(0.7);
}
50% {
    opacity: 0.8;
    transform: translateY(-50vh) translateX(15px) scale(1);
}
95% {
    opacity: 0.6;
    transform: translateY(-95vh) translateX(-5px) scale(1.2);
}
100% {
    transform: translateY(-100vh) translateX(0) scale(0.8);
    opacity: 0;
}
}
@keyframes headerBubbleBob {
0% {
    transform: translateY(-5px) translateX(-3px) scale(0.95);
}
25% {
    transform: translateY(2px) translateX(4px) scale(1);
}
50% {
    transform: translateY(5px) translateX(-2px) scale(1.05);
}
75% {
    transform: translateY(-1px) translateX(3px) scale(1);
}
100% {
    transform: translateY(-8px) translateX(-1px) scale(0.9);
}
}

/* Cleaned up - old animations removed */
.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
  background: transparent;
}
main {
  flex: 1;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero[data-v-42ce788f] {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 40px;
  background: linear-gradient(180deg, var(--ink-mid) 0%, var(--ink-light) 50%, #ffffff 100%);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero[data-v-42ce788f]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2333A49C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Hero Background Animation */
.hero-bg-animation[data-v-42ce788f] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(51,164,156,0.03) 50%, transparent 70%);
  animation: shimmer-42ce788f 3s ease-in-out infinite;
  pointer-events: none;
}
.cute-label[data-v-42ce788f] {
  background: rgba(51,164,156,0.1);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  color: var(--ink-teal);
  display: inline-block;
  margin-bottom: 16px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(51,164,156,0.1);
  opacity: 0;
}
.animate-bounce-in[data-v-42ce788f] {
  animation: bounceIn-42ce788f 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
.animate-slide-up[data-v-42ce788f] {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade-42ce788f 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.animate-fade-in[data-v-42ce788f] {
  opacity: 0;
  animation: fadeIn-42ce788f 0.8s ease-out 0.5s forwards;
}
.animate-slide-up-delayed[data-v-42ce788f] {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFade-42ce788f 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}
.hero-content[data-v-42ce788f] {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-content h2[data-v-42ce788f] {
  font-family: 'Cubao Free', sans-serif;
  font-size: 44px;
  margin: 0 0 16px;
  line-height: 1.2;
  position: relative;
  color: var(--ink-dark);
  display: inline-block;
  opacity: 0;
  animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.story-text[data-v-42ce788f] {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  position: relative;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(51,164,156,0.05);
  border: 2px solid var(--ink-light);
  opacity: 0;
  animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.cta-row[data-v-42ce788f] {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.btn[data-v-42ce788f] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--ink-dark) 0%, var(--ink-teal) 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(51,164,156,0.2);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.pulse-glow[data-v-42ce788f] {
  animation: pulseGlow-42ce788f 2s ease-in-out infinite;
}
.pulse-glow[data-v-42ce788f]:hover {
  animation: none;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(51,164,156,0.4);
}
.btn-shine[data-v-42ce788f] {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}
.btn:hover .btn-shine[data-v-42ce788f] {
  left: 100%;
}
.hover-lift[data-v-42ce788f] {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-lift[data-v-42ce788f]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(51,164,156,0.2);
}
.btn[data-v-42ce788f]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn[data-v-42ce788f]:hover::before {
  transform: translateX(100%);
}
.btn[data-v-42ce788f]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18,100,88,0.2);
}
.btn.secondary[data-v-42ce788f] {
  background: transparent;
  color: var(--ink-dark);
  border: 2px solid rgba(18,100,88,0.12);
}
.btn.secondary[data-v-42ce788f]:hover {
  background: rgba(18,100,88,0.04);
}
@media (max-width: 900px) {
.hero[data-v-42ce788f] {
    padding: 24px;
    margin-bottom: 60px;
}
.hero-content h2[data-v-42ce788f] {
    font-size: 32px;
    text-align: center;
}
.cute-label[data-v-42ce788f] {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.story-text[data-v-42ce788f] {
    text-align: center;
    padding: 16px;
    font-size: 16px;
}
.cta-row[data-v-42ce788f] {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}
.btn[data-v-42ce788f] {
    text-align: center;
    padding: 16px;
    font-size: 16px;
}
}
@media (max-width: 400px) {
.hero-content h2[data-v-42ce788f] {
    font-size: 28px;
}
.btn[data-v-42ce788f] {
    padding: 14px;
    font-size: 15px;
}
.cute-label[data-v-42ce788f] {
    font-size: 12px;
    padding: 6px 12px;
}
}

/* Enhanced Keyframe Animations */
@keyframes shimmer-42ce788f {
0%, 100% { transform: translateX(-100%);
}
50% { transform: translateX(100%);
}
}
@keyframes bounceIn-42ce788f {
0% {
    opacity: 0;
    transform: scale(0.3);
}
50% {
    opacity: 1;
    transform: scale(1.05);
}
70% {
    transform: scale(0.95);
}
100% {
    opacity: 1;
    transform: scale(1);
}
}
@keyframes slideUpFade-42ce788f {
0% {
    opacity: 0;
    transform: translateY(30px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes fadeIn-42ce788f {
0% { opacity: 0;
}
100% { opacity: 1;
}
}
@keyframes pulseGlow-42ce788f {
0%, 100% {
    box-shadow: 0 4px 12px rgba(51,164,156,0.2);
}
50% {
    box-shadow: 0 6px 20px rgba(51,164,156,0.4);
}
}
.wave-hand[data-v-42ce788f] {
  display: inline-block;
  animation: wave-42ce788f 1s ease-in-out infinite;
}
.gentle-wiggle[data-v-42ce788f] {
  display: inline-block;
  opacity: 0;
  animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
@keyframes wave-42ce788f {
0%, 100% { transform: rotate(0deg);
}
25% { transform: rotate(20deg);
}
75% { transform: rotate(-20deg);
}
}

.story[data-v-94bbae46] {
  padding: 5rem 0;
  background: #f9f9f9;
}
.container[data-v-94bbae46] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
h2[data-v-94bbae46] {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--ink-dark);
  font-family: 'Cubao Free', sans-serif;
}
.story-content[data-v-94bbae46] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-image img[data-v-94bbae46] {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.story-text p[data-v-94bbae46] {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
.story-content[data-v-94bbae46] {
    grid-template-columns: 1fr;
    gap: 2rem;
}
}

.gallery[data-v-c31abfc2] {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 50%, #f0f9f7 100%);
  position: relative;
  overflow: hidden;
}
.gallery[data-v-c31abfc2]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(51, 164, 156, 0.03) 50%, 
    transparent 100%);
  animation: galleryShimmer-c31abfc2 8s infinite;
}
.container[data-v-c31abfc2] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
h2[data-v-c31abfc2] {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--ink-dark);
  font-family: 'Cubao Free', sans-serif;
}
.animate-title[data-v-c31abfc2] {
  opacity: 0;
  transform: translateY(30px);
  animation: titleFadeUp-c31abfc2 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* Carousel Styles */
.carousel-container[data-v-c31abfc2] {
  position: relative;
  max-width: 100%;
}
.carousel-wrapper[data-v-c31abfc2] {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(18, 100, 88, 0.1);
}
.carousel-track[data-v-c31abfc2] {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.carousel-slide[data-v-c31abfc2] {
  flex: 0 0 33.333%;
  padding: 0 10px;
  box-sizing: border-box;
}
.image-container[data-v-c31abfc2] {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  background: white;
  box-shadow: 0 4px 20px rgba(18, 100, 88, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-image[data-v-c31abfc2] {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.image-overlay[data-v-c31abfc2] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(18, 100, 88, 0.7) 0%, 
    rgba(51, 164, 156, 0.6) 100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}
.overlay-content[data-v-c31abfc2] {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.view-icon[data-v-c31abfc2] {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
  animation: float-c31abfc2 2s ease-in-out infinite;
}
.view-text[data-v-c31abfc2] {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Loading shimmer removed for cleaner look */

/* Navigation Arrows */
.carousel-nav[data-v-c31abfc2] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--ink-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
  font-size: 24px;
  color: var(--ink-dark);
  backdrop-filter: blur(10px);
}
.carousel-nav[data-v-c31abfc2]:hover {
  background: var(--ink-teal);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(51, 164, 156, 0.3);
}
.carousel-nav[data-v-c31abfc2]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.5);
}
.carousel-nav[data-v-c31abfc2]:disabled:hover {
  transform: translateY(-50%) scale(1);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink-dark);
  box-shadow: none;
}
.carousel-nav-prev[data-v-c31abfc2] {
  left: -25px;
}
.carousel-nav-next[data-v-c31abfc2] {
  right: -25px;
}

/* Dot Indicators */
.carousel-dots[data-v-c31abfc2] {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.carousel-dot[data-v-c31abfc2] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--ink-teal);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-dot[data-v-c31abfc2]:hover {
  background: rgba(51, 164, 156, 0.3);
  transform: scale(1.2);
}
.carousel-dot.active[data-v-c31abfc2] {
  background: var(--ink-teal);
  transform: scale(1.3);
}

/* Hover effects */
.carousel-slide:hover .image-container[data-v-c31abfc2] {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(18, 100, 88, 0.2);
}
.carousel-slide:hover .gallery-image[data-v-c31abfc2] {
  transform: scale(1.05);
}
.carousel-slide:hover .image-overlay[data-v-c31abfc2] {
  opacity: 1;
}
.carousel-slide:hover .overlay-content[data-v-c31abfc2] {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
.carousel-slide[data-v-c31abfc2] {
    flex: 0 0 50%;
}
.carousel-nav-prev[data-v-c31abfc2] {
    left: -20px;
}
.carousel-nav-next[data-v-c31abfc2] {
    right: -20px;
}
}
@media (max-width: 768px) {
.carousel-slide[data-v-c31abfc2] {
    flex: 0 0 100%;
    padding: 0 5px;
}
.gallery-image[data-v-c31abfc2] {
    height: 280px;
}
.carousel-nav[data-v-c31abfc2] {
    width: 40px;
    height: 40px;
    font-size: 20px;
}
.carousel-nav-prev[data-v-c31abfc2] {
    left: -15px;
}
.carousel-nav-next[data-v-c31abfc2] {
    right: -15px;
}
.carousel-slide:hover .image-container[data-v-c31abfc2] {
    transform: translateY(-4px) scale(1.01);
}
}
@media (max-width: 480px) {
.carousel-nav-prev[data-v-c31abfc2],
  .carousel-nav-next[data-v-c31abfc2] {
    display: none;
}
.gallery[data-v-c31abfc2] {
    padding: 3rem 0;
}
h2[data-v-c31abfc2] {
    font-size: 2rem;
    margin-bottom: 2rem;
}
}

/* Animations */
@keyframes galleryShimmer-c31abfc2 {
0% { left: -100%;
}
100% { left: 100%;
}
}
@keyframes titleFadeUp-c31abfc2 {
0% {
    opacity: 0;
    transform: translateY(30px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}

/* Shimmer animation removed */
@keyframes float-c31abfc2 {
0%, 100% { transform: translateY(0);
}
50% { transform: translateY(-10px);
}
}

.care[data-v-259fa616] {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(166,204,192,0.1) 0%, rgba(255,255,255,0.8) 100%);
}
.container[data-v-259fa616] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.care-header[data-v-259fa616] {
  text-align: center;
  margin-bottom: 4rem;
}
.care-header h2[data-v-259fa616] {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--ink-dark);
  font-family: 'Cubao Free', sans-serif;
}
.care-header h3[data-v-259fa616] {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--ink-mid);
  font-weight: 600;
}
.inky-quote[data-v-259fa616] {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(51,164,156,0.08);
  padding: 2rem;
  border-radius: 20px;
  border-left: 4px solid var(--ink-teal);
}
.inky-quote p[data-v-259fa616] {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-dark);
  font-style: italic;
  margin: 0;
}
.signature[data-v-259fa616] {
  font-weight: 600;
  color: var(--ink-teal);
  font-style: normal;
}
.care-grid[data-v-259fa616] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
.care-grid[data-v-259fa616] {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 1024px) {
.care-grid[data-v-259fa616] {
    grid-template-columns: repeat(4, 1fr);
}
}
.care-card[data-v-259fa616] {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(18,100,88,0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(166,204,192,0.2);
  position: relative;
  overflow: hidden;
}
.care-card[data-v-259fa616]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(51,164,156,0.1), transparent);
  transition: left 0.8s ease;
}
.care-card[data-v-259fa616]:hover::before {
  left: 100%;
}
.care-card[data-v-259fa616]:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 12px 40px rgba(18,100,88,0.2);
  border-color: rgba(51,164,156,0.4);
}
.care-emoji[data-v-259fa616] {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}
.care-card h4[data-v-259fa616] {
  margin-bottom: 1rem;
  color: var(--ink-dark);
  font-size: 1.3rem;
  font-weight: 700;
}
.care-card p[data-v-259fa616] {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}
@media (max-width: 767px) {
.care-header h2[data-v-259fa616] {
    font-size: 2rem;
}
.care-header h3[data-v-259fa616] {
    font-size: 1.4rem;
}
.inky-quote[data-v-259fa616] {
    padding: 1.5rem;
}
.inky-quote p[data-v-259fa616] {
    font-size: 1rem;
}
.care-card[data-v-259fa616] {
    padding: 1.8rem 1.3rem;
}
.care-emoji[data-v-259fa616] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.care-card h4[data-v-259fa616] {
    font-size: 1.1rem;
}
.care-card p[data-v-259fa616] {
    font-size: 0.9rem;
}
}

/* Enhanced Care Card Animations */
.animate-card[data-v-259fa616] {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  animation: cardSlideUp-259fa616 0.6s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s) forwards;
}
.bounce-emoji[data-v-259fa616] {
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.care-card:hover .bounce-emoji[data-v-259fa616] {
  transform: scale(1.2) rotate(10deg);
  animation: bounceEmoji-259fa616 0.6s ease-in-out;
}
@keyframes cardSlideUp-259fa616 {
0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}
100% {
    opacity: 1;
    transform: translateY(0) scale(1);
}
}
@keyframes bounceEmoji-259fa616 {
0%, 100% { transform: scale(1.2) rotate(10deg);
}
50% { transform: scale(1.3) rotate(-5deg);
}
}

.community[data-v-7e9a0ee1] {
  padding: 5rem 0;
  background: white;
}
.container[data-v-7e9a0ee1] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
h2[data-v-7e9a0ee1] {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--ink-dark);
  font-family: 'Cubao Free', sans-serif;
}
.community-content[data-v-7e9a0ee1] {
  max-width: 800px;
  margin: 0 auto;
}
.community-content h3[data-v-7e9a0ee1] {
  font-family: 'Cubao Free', sans-serif;
  color: var(--ink-dark);
  margin-bottom: 1rem;
  font-size: 1.8rem;
  text-align: center;
}
.community-content p[data-v-7e9a0ee1] {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-mid);
  margin-bottom: 2rem;
  text-align: center;
}
.social-links[data-v-7e9a0ee1] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
.social-link[data-v-7e9a0ee1] {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(51,164,156,0.05);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.social-link[data-v-7e9a0ee1]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(51,164,156,0.1), transparent);
  transition: left 0.6s ease;
}
.social-link[data-v-7e9a0ee1]:hover::before {
  left: 100%;
}
.social-link[data-v-7e9a0ee1]:hover {
  background: rgba(51,164,156,0.1);
  border-color: var(--ink-light);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(51,164,156,0.15);
}
.link-arrow[data-v-7e9a0ee1] {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--ink-teal);
  transition: transform 0.3s ease;
}
.social-link:hover .link-arrow[data-v-7e9a0ee1] {
  transform: translateX(5px);
}
.social-icon[data-v-7e9a0ee1] {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-teal);
  border-radius: 12px;
}
.social-info[data-v-7e9a0ee1] {
  display: flex;
  flex-direction: column;
}
.social-info strong[data-v-7e9a0ee1] {
  color: var(--ink-dark);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}
.social-info span[data-v-7e9a0ee1] {
  color: var(--ink-mid);
  font-size: 0.9rem;
}
.community-highlights[data-v-7e9a0ee1] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.highlight-card[data-v-7e9a0ee1] {
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(18,100,88,0.08);
  border: 1px solid rgba(166,204,192,0.2);
  text-align: center;
}
.highlight-card h4[data-v-7e9a0ee1] {
  color: var(--ink-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.highlight-card p[data-v-7e9a0ee1] {
  color: var(--ink-mid);
  font-size: 0.9rem;
  margin: 0;
}
@media (max-width: 768px) {
.social-links[data-v-7e9a0ee1] {
    gap: 1rem;
}
.social-link[data-v-7e9a0ee1] {
    padding: 1.2rem;
}
.social-icon[data-v-7e9a0ee1] {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}
.community-highlights[data-v-7e9a0ee1] {
    grid-template-columns: 1fr;
    gap: 1rem;
}
}

/* Community Animations */
.animate-slide-in[data-v-7e9a0ee1] {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft-7e9a0ee1 0.6s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s) forwards;
}
.pulse-icon[data-v-7e9a0ee1] {
  transition: transform 0.3s ease;
}
.social-link:hover .pulse-icon[data-v-7e9a0ee1] {
  animation: pulseScale-7e9a0ee1 0.6s ease-in-out;
}
@keyframes slideInLeft-7e9a0ee1 {
0% {
    opacity: 0;
    transform: translateX(-30px);
}
100% {
    opacity: 1;
    transform: translateX(0);
}
}
@keyframes pulseScale-7e9a0ee1 {
0%, 100% { transform: scale(1);
}
50% { transform: scale(1.1);
}
}

.adopt[data-v-cdfa56a5] {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 50%, #f0f9f7 100%);
  position: relative;
  overflow: hidden;
}
.adopt[data-v-cdfa56a5]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle fill="rgba(51,164,156,0.03)" cx="10" cy="10" r="2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}
.container[data-v-cdfa56a5] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
h2[data-v-cdfa56a5] {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--ink-dark);
  font-family: 'Cubao Free', sans-serif;
}
.animate-title[data-v-cdfa56a5] {
  opacity: 0;
  transform: translateY(30px);
  animation: titleFadeUp-cdfa56a5 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.adopt-content[data-v-cdfa56a5] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.product-preview[data-v-cdfa56a5] {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(18, 100, 88, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: white;
}
.animate-slide-right[data-v-cdfa56a5] {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInRight-cdfa56a5 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.animate-slide-left[data-v-cdfa56a5] {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInLeft-cdfa56a5 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}
.image-container[data-v-cdfa56a5] {
  position: relative;
  overflow: hidden;
}
.product-image[data-v-cdfa56a5] {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.image-glow[data-v-cdfa56a5] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, 
    rgba(51, 164, 156, 0.1) 0%, 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.product-preview[data-v-cdfa56a5]:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(18, 100, 88, 0.2);
}
.product-preview:hover .product-image[data-v-cdfa56a5] {
  transform: scale(1.05);
}
.product-preview:hover .image-glow[data-v-cdfa56a5] {
  opacity: 1;
}
.product-badge[data-v-cdfa56a5] {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: badgePulse-cdfa56a5 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}
.product-info[data-v-cdfa56a5] {
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(18, 100, 88, 0.1);
  border: 1px solid rgba(51, 164, 156, 0.1);
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.product-info[data-v-cdfa56a5]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(51, 164, 156, 0.03) 50%, 
    transparent 100%);
  animation: infoShimmer-cdfa56a5 4s infinite;
}
.package-title[data-v-cdfa56a5] {
  font-family: 'Cubao Free', sans-serif;
  color: var(--ink-dark);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}
.features-list[data-v-cdfa56a5] {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.feature-item[data-v-cdfa56a5] {
  padding: 16px 0;
  border-bottom: 1px solid rgba(51,164,156,0.1);
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateX(-20px);
  animation: featureSlideIn-cdfa56a5 0.6s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s) forwards;
  transition: all 0.3s ease;
}
.feature-item[data-v-cdfa56a5]:last-child {
  border-bottom: none;
}
.feature-item[data-v-cdfa56a5]:hover {
  background: rgba(51, 164, 156, 0.05);
  padding-left: 10px;
  border-radius: 10px;
}
.feature-icon[data-v-cdfa56a5] {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s ease;
}
.feature-item:hover .feature-icon[data-v-cdfa56a5] {
  transform: scale(1.2) rotate(5deg);
}
.feature-text[data-v-cdfa56a5] {
  line-height: 1.5;
}

/* Adoption CTA Section - Now in grid */
.adoption-cta[data-v-cdfa56a5] {
  width: 100%;
  display: flex;
  align-items: center;
}
.animate-fade-up[data-v-cdfa56a5] {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp-cdfa56a5 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}
.cta-content[data-v-cdfa56a5] {
  background: linear-gradient(135deg, 
    rgba(51,164,156,0.08) 0%, 
    rgba(51,164,156,0.03) 50%, 
    rgba(51,164,156,0.08) 100%);
  padding: 2.5rem 2rem;
  border-radius: 25px;
  border: 2px solid rgba(51,164,156,0.2);
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(18, 100, 88, 0.1);
}
.cta-content[data-v-cdfa56a5]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    transparent 100%);
  animation: ctaShimmer 3s infinite;
}
.cta-title[data-v-cdfa56a5] {
  font-family: 'Cubao Free', sans-serif;
  color: var(--ink-dark);
  margin-bottom: 1rem;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}
.cta-description[data-v-cdfa56a5] {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.adopt-button[data-v-cdfa56a5] {
  display: inline-block;
  background: linear-gradient(135deg, var(--ink-dark) 0%, #0f5f54 100%);
  color: white;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 30px rgba(18, 100, 88, 0.3);
  margin-bottom: 2rem;
  z-index: 1;
}
.adopt-button[data-v-cdfa56a5]:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(18, 100, 88, 0.4);
}
.button-text[data-v-cdfa56a5] {
  display: block;
  margin-bottom: 0.3rem;
}
.button-subtext[data-v-cdfa56a5] {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
}
.button-ripple[data-v-cdfa56a5] {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    transparent 100%);
  animation: buttonRipple-cdfa56a5 2s infinite;
}
.trust-badges[data-v-cdfa56a5] {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.trust-item[data-v-cdfa56a5] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-dark);
}
.trust-icon[data-v-cdfa56a5] {
  font-size: 1.5rem;
}
.payment-note[data-v-cdfa56a5] {
  color: var(--muted);
  margin: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
.adopt-content[data-v-cdfa56a5] {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.product-info[data-v-cdfa56a5] {
    padding: 1.5rem;
    margin-top: 2rem;
}
.cta-content[data-v-cdfa56a5] {
    padding: 2rem 1.5rem;
}
.trust-badges[data-v-cdfa56a5] {
    flex-direction: column;
    gap: 1rem;
}
.adopt-button[data-v-cdfa56a5] {
    padding: 16px 32px;
    font-size: 1.1rem;
}
.cta-title[data-v-cdfa56a5] {
    font-size: 1.5rem;
}
}

/* Adopt Animations */
@keyframes titleFadeUp-cdfa56a5 {
0% {
    opacity: 0;
    transform: translateY(30px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes slideInRight-cdfa56a5 {
0% {
    opacity: 0;
    transform: translateX(-50px);
}
100% {
    opacity: 1;
    transform: translateX(0);
}
}
@keyframes slideInLeft-cdfa56a5 {
0% {
    opacity: 0;
    transform: translateX(50px);
}
100% {
    opacity: 1;
    transform: translateX(0);
}
}
@keyframes fadeUp-cdfa56a5 {
0% {
    opacity: 0;
    transform: translateY(40px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes featureSlideIn-cdfa56a5 {
0% {
    opacity: 0;
    transform: translateX(-20px);
}
100% {
    opacity: 1;
    transform: translateX(0);
}
}
@keyframes badgePulse-cdfa56a5 {
0%, 100% { transform: scale(1);
}
50% { transform: scale(1.05);
}
}
@keyframes infoShimmer-cdfa56a5 {
0% { left: -100%;
}
100% { left: 100%;
}
}
@keyframes waitlistShimmer-cdfa56a5 {
0% { left: -100%;
}
100% { left: 100%;
}
}
@keyframes buttonRipple-cdfa56a5 {
0% { left: -100%;
}
100% { left: 100%;
}
}

.newsletter[data-v-5089a90d] {
  padding: 4rem 0;
  background: linear-gradient(135deg, #e8f5f3 0%, #f0f9f7 50%, #f8fffe 100%);
  position: relative;
  overflow: hidden;
}
.newsletter[data-v-5089a90d]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle fill="rgba(51,164,156,0.03)" cx="10" cy="10" r="2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}
.container[data-v-5089a90d] {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.animate-fade-up[data-v-5089a90d] {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp-5089a90d 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.newsletter-content[data-v-5089a90d] {
  background: linear-gradient(135deg, 
    rgba(51,164,156,0.08) 0%, 
    rgba(51,164,156,0.03) 50%, 
    rgba(51,164,156,0.08) 100%);
  padding: 3rem 2rem;
  border-radius: 25px;
  border: 2px solid rgba(51,164,156,0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(18, 100, 88, 0.1);
}
.newsletter-content[data-v-5089a90d]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    transparent 100%);
  animation: shimmer-5089a90d 3s infinite;
}
.newsletter-title[data-v-5089a90d] {
  font-family: 'Cubao Free', sans-serif;
  color: var(--ink-dark);
  margin-bottom: 1rem;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}
.newsletter-description[data-v-5089a90d] {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.notify-form[data-v-5089a90d] {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.input-container[data-v-5089a90d] {
  flex: 1;
  position: relative;
}
.email-input[data-v-5089a90d] {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(51,164,156,0.2);
  border-radius: 15px;
  font-size: 1rem;
  background: white;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}
.email-input[data-v-5089a90d]:focus {
  outline: none;
  border-color: var(--ink-teal);
  box-shadow: 0 0 0 4px rgba(51, 164, 156, 0.1);
  transform: translateY(-2px);
}
.input-glow[data-v-5089a90d] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(51, 164, 156, 0.1) 0%, 
    transparent 100%);
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.email-input:focus + .input-glow[data-v-5089a90d] {
  opacity: 1;
}
.submit-button[data-v-5089a90d] {
  background: linear-gradient(135deg, var(--ink-dark) 0%, #0f5f54 100%);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(18, 100, 88, 0.2);
}
.submit-button[data-v-5089a90d]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}
.submit-button[data-v-5089a90d]:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(18, 100, 88, 0.3);
}
.button-text[data-v-5089a90d] {
  transition: transform 0.3s ease;
}
.button-arrow[data-v-5089a90d] {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}
.submit-button:hover:not(:disabled) .button-text[data-v-5089a90d] {
  transform: translateX(-4px);
}
.submit-button:hover:not(:disabled) .button-arrow[data-v-5089a90d] {
  transform: translateX(4px);
}
.button-ripple[data-v-5089a90d] {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    transparent 100%);
  animation: buttonRipple-5089a90d 2s infinite;
}
.newsletter-note[data-v-5089a90d] {
  color: var(--muted);
  margin: 0;
  position: relative;
  z-index: 1;
}
.success-message[data-v-5089a90d] {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 2px solid #a3cfbb;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: slideDown-5089a90d 0.5s ease-out;
}
.success-icon[data-v-5089a90d] {
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: bounceIn-5089a90d 0.6s ease-out;
}
.success-message h4[data-v-5089a90d] {
  color: #155724;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.success-message p[data-v-5089a90d] {
  color: #155724;
  margin: 0;
  opacity: 0.8;
}
.validation-message[data-v-5089a90d] {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border: 2px solid #ffeaa7;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  color: #856404;
  text-align: center;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  animation: slideDown-5089a90d 0.3s ease-out;
}
.validation-icon[data-v-5089a90d] {
  font-size: 1.2rem;
}
.error-message[data-v-5089a90d] {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  border: 2px solid #f1aeb5;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  color: #721c24;
  text-align: center;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  animation: shake-5089a90d 0.5s ease-out;
}
.error-icon[data-v-5089a90d] {
  font-size: 1.2rem;
}
.email-input.error[data-v-5089a90d] {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}
@keyframes slideDown-5089a90d {
0% {
    opacity: 0;
    transform: translateY(-20px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes bounceIn-5089a90d {
0% {
    opacity: 0;
    transform: scale(0.3);
}
50% {
    opacity: 1;
    transform: scale(1.05);
}
70% {
    transform: scale(0.9);
}
100% {
    opacity: 1;
    transform: scale(1);
}
}
@keyframes shake-5089a90d {
0%, 100% {
    transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
}
20%, 40%, 60%, 80% {
    transform: translateX(5px);
}
}
@media (max-width: 768px) {
.newsletter-content[data-v-5089a90d] {
    padding: 2rem 1.5rem;
}
.notify-form[data-v-5089a90d] {
    flex-direction: column;
}
.submit-button[data-v-5089a90d] {
    padding: 14px 24px;
}
.newsletter-title[data-v-5089a90d] {
    font-size: 1.5rem;
}
.newsletter-description[data-v-5089a90d] {
    font-size: 1rem;
}
}
@keyframes fadeUp-5089a90d {
0% {
    opacity: 0;
    transform: translateY(40px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes shimmer-5089a90d {
0% { left: -100%;
}
100% { left: 100%;
}
}
@keyframes buttonRipple-5089a90d {
0% { left: -100%;
}
100% { left: 100%;
}
}

.home[data-v-f52dc3a6] {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.not-found[data-v-03e844aa] {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 50%, #f0f9f7 100%);
}
.container[data-v-03e844aa] {
  max-width: 600px;
  text-align: center;
}
.error-visual[data-v-03e844aa] {
  position: relative;
  margin-bottom: 2rem;
}
.octopus-sad[data-v-03e844aa] {
  font-size: 6rem;
  animation: float-03e844aa 3s ease-in-out infinite;
}
h1[data-v-03e844aa] {
  font-family: 'Cubao Free', sans-serif;
  font-size: 3rem;
  color: var(--ink-dark);
  margin-bottom: 1rem;
}
.error-message[data-v-03e844aa] {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.error-actions[data-v-03e844aa] {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.btn[data-v-03e844aa] {
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary[data-v-03e844aa] {
  background: var(--ink-dark);
  color: white;
}
.btn-primary[data-v-03e844aa]:hover {
  background: var(--ink-teal);
  transform: translateY(-2px);
}
.btn-secondary[data-v-03e844aa] {
  background: transparent;
  color: var(--ink-dark);
  border: 2px solid var(--ink-teal);
}
.btn-secondary[data-v-03e844aa]:hover {
  background: var(--ink-teal);
  color: white;
  transform: translateY(-2px);
}
.helpful-links[data-v-03e844aa] {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}
.helpful-links h3[data-v-03e844aa] {
  font-family: 'Cubao Free', sans-serif;
  color: var(--ink-dark);
  margin-bottom: 1rem;
}
.helpful-links ul[data-v-03e844aa] {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.helpful-links a[data-v-03e844aa] {
  color: var(--ink-teal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.helpful-links a[data-v-03e844aa]:hover {
  color: var(--ink-dark);
}
@keyframes float-03e844aa {
0%, 100% { transform: translateY(0px);
}
50% { transform: translateY(-20px);
}
}
@media (max-width: 768px) {
.octopus-sad[data-v-03e844aa] {
    font-size: 4rem;
}
h1[data-v-03e844aa] {
    font-size: 2rem;
}
.error-actions[data-v-03e844aa] {
    flex-direction: column;
    align-items: center;
}
.helpful-links ul[data-v-03e844aa] {
    flex-direction: column;
    gap: 1rem;
}
}

.success-page[data-v-a2956a8b] {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 50%, #f0f9f7 100%);
  padding: 6rem 2rem 2rem;
  position: relative;
  overflow-x: hidden;
}
.success-page[data-v-a2956a8b]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle fill="rgba(51,164,156,0.03)" cx="10" cy="10" r="2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}
.container[data-v-a2956a8b] {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.success-content[data-v-a2956a8b] {
  background: white;
  border-radius: 25px;
  padding: 3rem 2rem;
  box-shadow: 0 20px 60px rgba(18, 100, 88, 0.15);
  border: 1px solid rgba(51, 164, 156, 0.1);
  text-align: center;
  animation: slideUp-a2956a8b 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.success-animation[data-v-a2956a8b] {
  position: relative;
  margin-bottom: 2rem;
}
.success-icon[data-v-a2956a8b] {
  font-size: 4rem;
  animation: bounce-a2956a8b 2s ease-in-out infinite;
  display: inline-block;
}
.success-title[data-v-a2956a8b] {
  font-family: 'Cubao Free', sans-serif;
  font-size: 2.5rem;
  color: var(--ink-dark);
  margin-bottom: 1rem;
  animation: slideUp-a2956a8b 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.success-message[data-v-a2956a8b] {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 3rem;
  line-height: 1.6;
  animation: slideUp-a2956a8b 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.order-details[data-v-a2956a8b] {
  margin-bottom: 3rem;
  text-align: left;
  animation: slideUp-a2956a8b 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}
.order-details h3[data-v-a2956a8b] {
  font-family: 'Cubao Free', sans-serif;
  color: var(--ink-dark);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.timeline[data-v-a2956a8b] {
  position: relative;
}
.timeline[data-v-a2956a8b]::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--ink-teal), rgba(51, 164, 156, 0.3));
}
.timeline-item[data-v-a2956a8b] {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.timeline-icon[data-v-a2956a8b] {
  background: white;
  border: 3px solid var(--ink-teal);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(51, 164, 156, 0.2);
}
.timeline-content h4[data-v-a2956a8b] {
  color: var(--ink-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.timeline-content p[data-v-a2956a8b] {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.care-preview[data-v-a2956a8b] {
  background: linear-gradient(135deg, rgba(51,164,156,0.05), rgba(51,164,156,0.1));
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  text-align: left;
  animation: slideUp-a2956a8b 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}
.care-preview h3[data-v-a2956a8b] {
  font-family: 'Cubao Free', sans-serif;
  color: var(--ink-dark);
  margin-bottom: 1rem;
  text-align: center;
}
.care-preview p[data-v-a2956a8b] {
  color: var(--muted);
  margin-bottom: 1rem;
  text-align: center;
}
.care-tips[data-v-a2956a8b] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.care-tips li[data-v-a2956a8b] {
  padding: 0.5rem 0;
  color: var(--text-primary);
  font-size: 1rem;
}
.success-actions[data-v-a2956a8b] {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  animation: slideUp-a2956a8b 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}
.btn-primary[data-v-a2956a8b],
.btn-secondary[data-v-a2956a8b] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary[data-v-a2956a8b] {
  background: var(--ink-dark);
  color: white;
  box-shadow: 0 4px 15px rgba(18, 100, 88, 0.2);
}
.btn-primary[data-v-a2956a8b]:hover {
  background: var(--ink-teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18, 100, 88, 0.3);
}
.btn-secondary[data-v-a2956a8b] {
  background: transparent;
  color: var(--ink-dark);
  border: 2px solid var(--ink-teal);
}
.btn-secondary[data-v-a2956a8b]:hover {
  background: var(--ink-teal);
  color: white;
  transform: translateY(-2px);
}
.btn-icon[data-v-a2956a8b] {
  font-size: 1rem;
}
.contact-info[data-v-a2956a8b] {
  padding-top: 2rem;
  border-top: 1px solid rgba(51, 164, 156, 0.1);
  color: var(--muted);
  animation: slideUp-a2956a8b 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
}
.contact-info a[data-v-a2956a8b] {
  color: var(--ink-teal);
  text-decoration: none;
}
.contact-info a[data-v-a2956a8b]:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
.success-page[data-v-a2956a8b] {
    padding: 4rem 1rem 2rem;
}
.success-content[data-v-a2956a8b] {
    padding: 2rem 1.5rem;
}
.success-title[data-v-a2956a8b] {
    font-size: 2rem;
}
.success-message[data-v-a2956a8b] {
    font-size: 1.1rem;
}
.success-actions[data-v-a2956a8b] {
    flex-direction: column;
    align-items: center;
}
.timeline[data-v-a2956a8b]::before {
    left: 15px;
}
.timeline-icon[data-v-a2956a8b] {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
}
.care-preview[data-v-a2956a8b] {
    padding: 1.5rem;
}
}
@keyframes slideUp-a2956a8b {
0% {
    opacity: 0;
    transform: translateY(30px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes bounce-a2956a8b {
0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
}
40% {
    transform: translateY(-20px);
}
60% {
    transform: translateY(-10px);
}
}



.newsletter-form[data-v-bfea90ad] {
  width: 100%;
}
.newsletter-content[data-v-bfea90ad] {
  background: linear-gradient(135deg, 
    rgba(51,164,156,0.08) 0%, 
    rgba(51,164,156,0.03) 50%, 
    rgba(51,164,156,0.08) 100%);
  padding: 3rem 2rem;
  border-radius: 25px;
  border: 2px solid rgba(51,164,156,0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(18, 100, 88, 0.1);
}
.newsletter-content[data-v-bfea90ad]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    transparent 100%);
  animation: shimmer-bfea90ad 3s infinite;
}
.newsletter-title[data-v-bfea90ad] {
  font-family: 'Cubao Free', sans-serif;
  color: var(--ink-dark);
  margin-bottom: 1rem;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}
.newsletter-description[data-v-bfea90ad] {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.benefits-list[data-v-bfea90ad] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.benefit-item[data-v-bfea90ad] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(51, 164, 156, 0.2);
  transition: all 0.3s ease;
}
.benefit-item[data-v-bfea90ad]:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(18, 100, 88, 0.15);
}
.benefit-icon[data-v-bfea90ad] {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.benefit-text[data-v-bfea90ad] {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-dark);
}
.notify-form[data-v-bfea90ad] {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.input-container[data-v-bfea90ad] {
  flex: 1;
  position: relative;
}
.email-input[data-v-bfea90ad] {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(51,164,156,0.2);
  border-radius: 15px;
  font-size: 1rem;
  background: white;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}
.email-input[data-v-bfea90ad]:focus {
  outline: none;
  border-color: var(--ink-teal);
  box-shadow: 0 0 0 4px rgba(51, 164, 156, 0.1);
  transform: translateY(-2px);
}
.input-glow[data-v-bfea90ad] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(51, 164, 156, 0.1) 0%, 
    transparent 100%);
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.email-input:focus + .input-glow[data-v-bfea90ad] {
  opacity: 1;
}
.submit-button[data-v-bfea90ad] {
  background: linear-gradient(135deg, var(--ink-dark) 0%, #0f5f54 100%);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(18, 100, 88, 0.2);
}
.submit-button[data-v-bfea90ad]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}
.submit-button[data-v-bfea90ad]:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(18, 100, 88, 0.3);
}
.button-text[data-v-bfea90ad] {
  transition: transform 0.3s ease;
}
.button-arrow[data-v-bfea90ad] {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}
.submit-button:hover:not(:disabled) .button-text[data-v-bfea90ad] {
  transform: translateX(-4px);
}
.submit-button:hover:not(:disabled) .button-arrow[data-v-bfea90ad] {
  transform: translateX(4px);
}
.button-ripple[data-v-bfea90ad] {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    transparent 100%);
  animation: buttonRipple-bfea90ad 2s infinite;
}
.newsletter-note[data-v-bfea90ad] {
  color: var(--muted);
  margin: 0;
  position: relative;
  z-index: 1;
}
.success-message[data-v-bfea90ad] {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 2px solid #a3cfbb;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: slideDown-bfea90ad 0.5s ease-out;
}
.success-icon[data-v-bfea90ad] {
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: bounceIn-bfea90ad 0.6s ease-out;
}
.success-message h4[data-v-bfea90ad] {
  color: #155724;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.success-message p[data-v-bfea90ad] {
  color: #155724;
  margin: 0;
  opacity: 0.8;
}
.validation-message[data-v-bfea90ad] {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border: 2px solid #ffeaa7;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  color: #856404;
  text-align: center;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  animation: slideDown-bfea90ad 0.3s ease-out;
}
.validation-icon[data-v-bfea90ad] {
  font-size: 1.2rem;
}
.error-message[data-v-bfea90ad] {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  border: 2px solid #f1aeb5;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  color: #721c24;
  text-align: center;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  animation: shake-bfea90ad 0.5s ease-out;
}
.error-icon[data-v-bfea90ad] {
  font-size: 1.2rem;
}
.email-input.error[data-v-bfea90ad] {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}
@keyframes slideDown-bfea90ad {
0% {
    opacity: 0;
    transform: translateY(-20px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes bounceIn-bfea90ad {
0% {
    opacity: 0;
    transform: scale(0.3);
}
50% {
    opacity: 1;
    transform: scale(1.05);
}
70% {
    transform: scale(0.9);
}
100% {
    opacity: 1;
    transform: scale(1);
}
}
@keyframes shake-bfea90ad {
0%, 100% {
    transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
}
20%, 40%, 60%, 80% {
    transform: translateX(5px);
}
}
@keyframes shimmer-bfea90ad {
0% { left: -100%;
}
100% { left: 100%;
}
}
@keyframes buttonRipple-bfea90ad {
0% { left: -100%;
}
100% { left: 100%;
}
}
@keyframes fadeUp-bfea90ad {
0% {
    opacity: 0;
    transform: translateY(40px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}
.animate-fade-up[data-v-bfea90ad] {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp-bfea90ad 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
@media (max-width: 768px) {
.newsletter-content[data-v-bfea90ad] {
    padding: 2rem 1.5rem;
}
.notify-form[data-v-bfea90ad] {
    flex-direction: column;
}
.submit-button[data-v-bfea90ad] {
    padding: 14px 24px;
}
.newsletter-title[data-v-bfea90ad] {
    font-size: 1.5rem;
}
.newsletter-description[data-v-bfea90ad] {
    font-size: 1rem;
}
.benefits-list[data-v-bfea90ad] {
    grid-template-columns: 1fr;
}
.benefit-item[data-v-bfea90ad] {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
}
}

.subscribe-page[data-v-bf286991] {
  min-height: 100vh;
  background: linear-gradient(135deg, #e8f5f3 0%, #f0f9f7 50%, #f8fffe 100%);
  position: relative;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section[data-v-bf286991] {
  padding: 4rem 0 2rem;
  position: relative;
  text-align: center;
}
.hero-content[data-v-bf286991] {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo-container[data-v-bf286991] {
  margin-bottom: 2rem;
}
.hero-logo[data-v-bf286991] {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(18, 100, 88, 0.15));
}
.hero-title[data-v-bf286991] {
  font-family: 'Cubao Free', sans-serif;
  font-size: 3rem;
  color: var(--ink-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero-subtitle[data-v-bf286991] {
  font-size: 1.3rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Newsletter Section */
.newsletter-section[data-v-bf286991] {
  padding: 1rem 0 2rem;
}
.newsletter-wrapper[data-v-bf286991] {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Social Proof Section */
.social-proof-section[data-v-bf286991] {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.5);
}
.social-proof-content[data-v-bf286991] {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.social-proof-title[data-v-bf286991] {
  font-family: 'Cubao Free', sans-serif;
  font-size: 2rem;
  color: var(--ink-dark);
  margin-bottom: 3rem;
}
.stats-grid[data-v-bf286991] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.stat-item[data-v-bf286991] {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(18, 100, 88, 0.1);
  transition: transform 0.3s ease;
}
.stat-item[data-v-bf286991]:hover {
  transform: translateY(-5px);
}
.stat-number[data-v-bf286991] {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--ink-teal);
  margin-bottom: 0.5rem;
  font-family: 'Cubao Free', sans-serif;
}
.stat-label[data-v-bf286991] {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}
.testimonial[data-v-bf286991] {
  background: linear-gradient(135deg, rgba(51, 164, 156, 0.08), rgba(51, 164, 156, 0.03));
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(51, 164, 156, 0.2);
  max-width: 600px;
  margin: 0 auto;
}
.testimonial-text[data-v-bf286991] {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink-dark);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.testimonial-author[data-v-bf286991] {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

/* Footer Actions */
.footer-actions[data-v-bf286991] {
  padding: 4rem 0;
  background: rgba(18, 100, 88, 0.03);
}
.footer-content[data-v-bf286991] {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.footer-text[data-v-bf286991] {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.action-buttons[data-v-bf286991] {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.action-button[data-v-bf286991] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.action-button.primary[data-v-bf286991] {
  background: linear-gradient(135deg, var(--ink-dark), #0f5f54);
  color: white;
  box-shadow: 0 4px 15px rgba(18, 100, 88, 0.3);
}
.action-button.primary[data-v-bf286991]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(18, 100, 88, 0.4);
}
.action-button.secondary[data-v-bf286991] {
  background: white;
  color: var(--ink-dark);
  border-color: rgba(51, 164, 156, 0.3);
  box-shadow: 0 4px 15px rgba(18, 100, 88, 0.1);
}
.action-button.secondary[data-v-bf286991]:hover {
  transform: translateY(-3px);
  border-color: var(--ink-teal);
  box-shadow: 0 8px 25px rgba(18, 100, 88, 0.2);
}
.privacy-note[data-v-bf286991] {
  color: var(--muted);
  margin: 0;
}
.privacy-link[data-v-bf286991] {
  color: var(--ink-teal);
  text-decoration: underline;
}
.privacy-link[data-v-bf286991]:hover {
  color: var(--ink-dark);
}

/* Animations */
.animate-fade-up[data-v-bf286991] {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp-bf286991 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fadeUp-bf286991 {
0% {
    opacity: 0;
    transform: translateY(40px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}

/* Mobile Responsive */
@media (max-width: 768px) {
.hero-title[data-v-bf286991] {
    font-size: 2.2rem;
}
.hero-subtitle[data-v-bf286991] {
    font-size: 1.1rem;
}
.hero-logo[data-v-bf286991] {
    height: 80px;
}
.stats-grid[data-v-bf286991] {
    grid-template-columns: 1fr;
    gap: 1rem;
}
.stat-number[data-v-bf286991] {
    font-size: 2rem;
}
.action-buttons[data-v-bf286991] {
    flex-direction: column;
    align-items: center;
}
.action-button[data-v-bf286991] {
    width: 100%;
    max-width: 250px;
    justify-content: center;
}
.testimonial[data-v-bf286991] {
    padding: 1.5rem;
}
.testimonial-text[data-v-bf286991] {
    font-size: 1rem;
}
}
@media (max-width: 480px) {
.hero-content[data-v-bf286991] {
    padding: 0 1rem;
}
.newsletter-wrapper[data-v-bf286991] {
    padding: 0 1rem;
}
.social-proof-content[data-v-bf286991] {
    padding: 0 1rem;
}
.footer-content[data-v-bf286991] {
    padding: 0 1rem;
}
.hero-title[data-v-bf286991] {
    font-size: 1.8rem;
}
.social-proof-title[data-v-bf286991] {
    font-size: 1.6rem;
}
}

.redirect-page[data-v-9cde4c4d] {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(135deg, #e8f5f3 0%, #f0f9f7 50%, #f8fffe 100%);
  padding-top: 15vh; /* Move content closer to top but not at the very top */
}
.container[data-v-9cde4c4d] {
  max-width: 500px;
  margin: 0 auto;
  padding: 1rem;
}
.redirect-content[data-v-9cde4c4d] {
  text-align: center;
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(18, 100, 88, 0.1);
}
.loader[data-v-9cde4c4d] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.octopus-loader[data-v-9cde4c4d] {
  font-size: 4rem;
  animation: bounce-9cde4c4d 1s infinite;
}
@keyframes bounce-9cde4c4d {
0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
}
40% {
    transform: translateY(-20px);
}
60% {
    transform: translateY(-10px);
}
}
p[data-v-9cde4c4d] {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
.redirect-page[data-v-9cde4c4d] {
    padding-top: 10vh; /* Less top padding on mobile */
}
.container[data-v-9cde4c4d] {
    padding: 0.5rem;
}
.redirect-content[data-v-9cde4c4d] {
    padding: 1.5rem 1rem;
}
.octopus-loader[data-v-9cde4c4d] {
    font-size: 3rem;
}
p[data-v-9cde4c4d] {
    font-size: 1rem;
}
}

.policy-page[data-v-8fce20ce] {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 50%, #f0f9f7 100%);
  padding: 6rem 0 2rem;
}
.container[data-v-8fce20ce] {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.policy-header[data-v-8fce20ce] {
  text-align: center;
  margin-bottom: 3rem;
}
.policy-header h1[data-v-8fce20ce] {
  font-family: 'Cubao Free', sans-serif;
  font-size: 3rem;
  color: var(--ink-dark);
  margin-bottom: 0.5rem;
}
.last-updated[data-v-8fce20ce] {
  color: var(--muted);
  font-style: italic;
}
.policy-content[data-v-8fce20ce] {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.policy-content section[data-v-8fce20ce] {
  margin-bottom: 2.5rem;
}
.policy-content section[data-v-8fce20ce]:last-child {
  margin-bottom: 0;
}
.policy-content h2[data-v-8fce20ce] {
  font-family: 'Cubao Free', sans-serif;
  color: var(--ink-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--ink-teal);
  padding-bottom: 0.5rem;
}
.policy-content p[data-v-8fce20ce] {
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.policy-content ul[data-v-8fce20ce] {
  color: var(--text-primary);
  padding-left: 1.5rem;
  line-height: 1.7;
}
.policy-content li[data-v-8fce20ce] {
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
.policy-page[data-v-8fce20ce] {
    padding: 4rem 0 2rem;
}
.policy-header h1[data-v-8fce20ce] {
    font-size: 2rem;
}
.policy-content[data-v-8fce20ce] {
    padding: 2rem;
}
.container[data-v-8fce20ce] {
    padding: 0 1rem;
}
}

.policy-page[data-v-bb04f144] {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 50%, #f0f9f7 100%);
  padding: 6rem 0 2rem;
}
.container[data-v-bb04f144] {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.policy-header[data-v-bb04f144] {
  text-align: center;
  margin-bottom: 3rem;
}
.policy-header h1[data-v-bb04f144] {
  font-family: 'Cubao Free', sans-serif;
  font-size: 3rem;
  color: var(--ink-dark);
  margin-bottom: 0.5rem;
}
.last-updated[data-v-bb04f144] {
  color: var(--muted);
  font-style: italic;
}
.policy-content[data-v-bb04f144] {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.policy-content section[data-v-bb04f144] {
  margin-bottom: 2.5rem;
}
.policy-content section[data-v-bb04f144]:last-child {
  margin-bottom: 0;
}
.policy-content h2[data-v-bb04f144] {
  font-family: 'Cubao Free', sans-serif;
  color: var(--ink-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--ink-teal);
  padding-bottom: 0.5rem;
}
.policy-content p[data-v-bb04f144] {
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.policy-content ul[data-v-bb04f144] {
  color: var(--text-primary);
  padding-left: 1.5rem;
  line-height: 1.7;
}
.policy-content li[data-v-bb04f144] {
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
.policy-page[data-v-bb04f144] {
    padding: 4rem 0 2rem;
}
.policy-header h1[data-v-bb04f144] {
    font-size: 2rem;
}
.policy-content[data-v-bb04f144] {
    padding: 2rem;
}
.container[data-v-bb04f144] {
    padding: 0 1rem;
}
}

.policy-page[data-v-37da7458] {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 50%, #f0f9f7 100%);
  padding: 6rem 0 2rem;
}
.container[data-v-37da7458] {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.policy-header[data-v-37da7458] {
  text-align: center;
  margin-bottom: 3rem;
}
.policy-header h1[data-v-37da7458] {
  font-family: 'Cubao Free', sans-serif;
  font-size: 3rem;
  color: var(--ink-dark);
  margin-bottom: 0.5rem;
}
.last-updated[data-v-37da7458] {
  color: var(--muted);
  font-style: italic;
}
.policy-content[data-v-37da7458] {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.policy-content section[data-v-37da7458] {
  margin-bottom: 2.5rem;
}
.policy-content section[data-v-37da7458]:last-child {
  margin-bottom: 0;
}
.policy-content h2[data-v-37da7458] {
  font-family: 'Cubao Free', sans-serif;
  color: var(--ink-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--ink-teal);
  padding-bottom: 0.5rem;
}
.policy-content h3[data-v-37da7458] {
  font-family: 'Cubao Free', sans-serif;
  color: var(--ink-dark);
  font-size: 1.2rem;
  margin: 1.5rem 0 0.75rem 0;
}
.policy-content p[data-v-37da7458] {
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.policy-content ul[data-v-37da7458] {
  color: var(--text-primary);
  padding-left: 1.5rem;
  line-height: 1.7;
}
.policy-content li[data-v-37da7458] {
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
.policy-page[data-v-37da7458] {
    padding: 4rem 0 2rem;
}
.policy-header h1[data-v-37da7458] {
    font-size: 2rem;
}
.policy-content[data-v-37da7458] {
    padding: 2rem;
}
.container[data-v-37da7458] {
    padding: 0 1rem;
}
}

.policy-page[data-v-9a59d1ed] {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 50%, #f0f9f7 100%);
  padding: 6rem 0 2rem;
}
.container[data-v-9a59d1ed] {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.policy-header[data-v-9a59d1ed] {
  text-align: center;
  margin-bottom: 3rem;
}
.policy-header h1[data-v-9a59d1ed] {
  font-family: 'Cubao Free', sans-serif;
  font-size: 3rem;
  color: var(--ink-dark);
  margin-bottom: 0.5rem;
}
.last-updated[data-v-9a59d1ed] {
  color: var(--muted);
  font-style: italic;
}
.policy-content[data-v-9a59d1ed] {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.policy-content section[data-v-9a59d1ed] {
  margin-bottom: 2.5rem;
}
.policy-content section[data-v-9a59d1ed]:last-child {
  margin-bottom: 0;
}
.policy-content h2[data-v-9a59d1ed] {
  font-family: 'Cubao Free', sans-serif;
  color: var(--ink-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--ink-teal);
  padding-bottom: 0.5rem;
}
.policy-content h3[data-v-9a59d1ed] {
  font-family: 'Cubao Free', sans-serif;
  color: var(--ink-dark);
  font-size: 1.2rem;
  margin: 1.5rem 0 0.75rem 0;
}
.policy-content p[data-v-9a59d1ed] {
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.policy-content ul[data-v-9a59d1ed], .policy-content ol[data-v-9a59d1ed] {
  color: var(--text-primary);
  padding-left: 1.5rem;
  line-height: 1.7;
}
.policy-content li[data-v-9a59d1ed] {
  margin-bottom: 0.5rem;
}
.policy-content ol li[data-v-9a59d1ed] {
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
.policy-page[data-v-9a59d1ed] {
    padding: 4rem 0 2rem;
}
.policy-header h1[data-v-9a59d1ed] {
    font-size: 2rem;
}
.policy-content[data-v-9a59d1ed] {
    padding: 2rem;
}
.container[data-v-9a59d1ed] {
    padding: 0 1rem;
}
}
