@import url('https://fonts.bunny.net/css?family=poppins:400,500,600,700|montserrat:400,500,600,700');
.layout[data-v-7d3e0b9f] {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow-x: hidden;
}
.header[data-v-7d3e0b9f] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding-top: env(safe-area-inset-top, 0);
  transition: box-shadow 0.2s ease;
}
.header.header-scrolled[data-v-7d3e0b9f] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.header-inner[data-v-7d3e0b9f] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
@media (max-width: 900px) {
.header-inner[data-v-7d3e0b9f] {
    height: 56px;
}
}
.logo-wrap[data-v-7d3e0b9f] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  min-width: 0;
}
.logo-img[data-v-7d3e0b9f] {
  height: 36px;
  width: auto;
  max-width: 140px;
  display: block;
}
@media (max-width: 768px) {
.logo-img[data-v-7d3e0b9f] {
    height: 32px;
}
}
.nav[data-v-7d3e0b9f] {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link[data-v-7d3e0b9f] {
  font-weight: 500;
  color: #64748b;
  transition: color 0.2s;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.25rem;
}
.nav-link[data-v-7d3e0b9f]:hover {
  color: #1e293b;
}
.nav-link.router-link-active[data-v-7d3e0b9f] {
  color: #25d366;
}
.nav-link.router-link-active[data-v-7d3e0b9f]::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #25d366;
  border-radius: 1px;
}
.btn-demo[data-v-7d3e0b9f] {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(90deg, #20c997 0%, #25d366 50%, #1a9e50 100%);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-demo[data-v-7d3e0b9f]:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

/* Mobile: hide desktop nav and button, show hamburger */
@media (max-width: 900px) {
.nav-desktop[data-v-7d3e0b9f],
  .btn-demo-desktop[data-v-7d3e0b9f] {
    display: none !important;
}
}
.hamburger[data-v-7d3e0b9f] {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.hamburger[data-v-7d3e0b9f]:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}
.hamburger-bar[data-v-7d3e0b9f] {
  display: block;
  width: 22px;
  height: 2px;
  background: #475569;
  border-radius: 1px;
}
@media (max-width: 900px) {
.hamburger[data-v-7d3e0b9f] {
    display: flex;
}
}
.nav-mobile[data-v-7d3e0b9f] {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.nav-mobile-inner[data-v-7d3e0b9f] {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
}
@media (max-width: 480px) {
.nav-mobile-inner[data-v-7d3e0b9f] {
    padding: 1rem 1rem 1.25rem;
}
}
.nav-mobile-link[data-v-7d3e0b9f] {
  display: block;
  padding: 0.75rem 0.5rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav-mobile-link[data-v-7d3e0b9f]:hover {
  background: #f1f5f9;
  color: #1e293b;
}
.nav-mobile-link.router-link-active[data-v-7d3e0b9f] {
  color: #25d366;
  background: rgba(37, 211, 102, 0.08);
}
.btn-demo-mobile[data-v-7d3e0b9f] {
  margin-top: 0.5rem;
  text-align: center;
  padding: 0.75rem 1rem;
}
.nav-overlay[data-v-7d3e0b9f] {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99;
}
.mobile-menu-enter-active[data-v-7d3e0b9f],
.mobile-menu-leave-active[data-v-7d3e0b9f] {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mobile-menu-enter-from[data-v-7d3e0b9f],
.mobile-menu-leave-to[data-v-7d3e0b9f] {
  opacity: 0;
  transform: translateY(-8px);
}
.main[data-v-7d3e0b9f] {
  flex: 1;
}
.footer[data-v-7d3e0b9f] {
  background: #f1f5f9;
  color: #1e293b;
  padding: 0 0 0;
  border-top: none;
  position: relative;
}
.footer-accent[data-v-7d3e0b9f] {
  height: 4px;
  background: linear-gradient(90deg, #20c997 0%, #25d366 50%, #1a9e50 100%);
  width: 100%;
}
@media (max-width: 900px) {
.footer[data-v-7d3e0b9f] {
    padding-top: 1.25rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 60px;
}
}
.footer-inner[data-v-7d3e0b9f] {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 0 0;
}
.footer-grid[data-v-7d3e0b9f] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 767px) {
.footer-inner[data-v-7d3e0b9f]{
    gap:0;
}
.footer-grid[data-v-7d3e0b9f] {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 0 1rem;
}
.footer-links[data-v-7d3e0b9f],
  .footer-contact[data-v-7d3e0b9f] {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e2e8f0;
}
.footer-links[data-v-7d3e0b9f]:last-of-type,
  .footer-contact[data-v-7d3e0b9f] {
    border-bottom: none;
}
}
@media (min-width: 768px) {
.footer-grid[data-v-7d3e0b9f] {
    grid-template-columns: 2fr 1fr 1fr 1fr;
}
}
.footer-brand .footer-logo[data-v-7d3e0b9f] {
  display: block;
  margin-bottom: 0.75rem;
  height: 28px;
  width: auto;
}
.footer-logo-link[data-v-7d3e0b9f] {
  display: inline-block;
  text-decoration: none;
}
.footer-tagline[data-v-7d3e0b9f] {
  font-size: 0.9rem;
  color: #64748b;
  max-width: 320px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
.footer-tagline[data-v-7d3e0b9f] {
    max-width: 100%;
    margin-bottom: 1rem;
}
}
.footer-social-icons[data-v-7d3e0b9f] {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-social-icon[data-v-7d3e0b9f] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #25d366;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.footer-social-icon svg[data-v-7d3e0b9f] {
  width: 18px;
  height: 18px;
}
.footer-social-icon[data-v-7d3e0b9f]:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.footer-heading[data-v-7d3e0b9f] {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f172a;
  margin-bottom: 1rem;
}
.footer-links a[data-v-7d3e0b9f],
.footer-contact a[data-v-7d3e0b9f] {
  display: block;
  color: #475569;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a[data-v-7d3e0b9f]:hover,
.footer-contact a[data-v-7d3e0b9f]:hover {
  color: #0f172a;
}
.footer-links a.router-link-active[data-v-7d3e0b9f] {
  color: #25d366;
  font-weight: 500;
}
.footer-contact-list[data-v-7d3e0b9f] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li[data-v-7d3e0b9f] {
  margin-bottom: 0.5rem;
}
.footer-contact-list a[data-v-7d3e0b9f] {
  display: inline;
  margin-bottom: 0;
}
.footer-whatsapp[data-v-7d3e0b9f] {
  color: #25d366 !important;
}
.footer-whatsapp[data-v-7d3e0b9f]:hover {
  color: #3ee878 !important;
}
.footer-address[data-v-7d3e0b9f] {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.55;
  margin-top: 0.25rem;
  display: block;
}
.footer-whatsapp-float[data-v-7d3e0b9f] {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 40;
  transition: transform 0.2s, box-shadow 0.2s;
}
@media (max-width: 900px) {
.footer-whatsapp-float[data-v-7d3e0b9f] {
    bottom: calc(var(--bottom-nav-height, 56px) + var(--safe-area-bottom, 0px) + 20px);
    right: 1rem;
}
}
@media (max-width: 480px) {
.footer-whatsapp-float[data-v-7d3e0b9f] {
    width: 52px;
    height: 52px;
    right: 0.875rem;
    bottom: calc(var(--bottom-nav-height, 56px) + var(--safe-area-bottom, 0px) + 16px);
}
}
.footer-whatsapp-float[data-v-7d3e0b9f]:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #fff;
}
.footer-bottom[data-v-7d3e0b9f] {
  margin-top: 0;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.8rem;
  color: #64748b;
  background: #0f172a;
  color: rgba(255, 255, 255, 0.85);
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  border-top: none;
}
@media (max-width: 480px) {
.footer-bottom[data-v-7d3e0b9f] {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
}

/* Mobile bottom tab bar (app-like) */
.bottom-nav[data-v-7d3e0b9f] {
  display: none;
}
@media (max-width: 900px) {
.bottom-nav[data-v-7d3e0b9f] {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(var(--bottom-nav-height, 56px) + var(--safe-area-bottom, 0px));
    padding-bottom: var(--safe-area-bottom, 0px);
    background: #fff;
    border-top: 1px solid #e2e8f0;
    z-index: 45;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
}
.bottom-nav-item[data-v-7d3e0b9f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 8px;
    min-height: 44px;
    color: #64748b;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    flex: 1;
    max-width: 80px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.bottom-nav-item[data-v-7d3e0b9f]:hover {
    color: #1e293b;
    background: #f8fafc;
}
.bottom-nav-item.router-link-active[data-v-7d3e0b9f],
  .bottom-nav-item.router-link-exact-active[data-v-7d3e0b9f] {
    color: #25d366;
}
.bottom-nav-item.router-link-active .bottom-nav-icon[data-v-7d3e0b9f],
  .bottom-nav-item.router-link-exact-active .bottom-nav-icon[data-v-7d3e0b9f] {
    stroke: #25d366;
}
.bottom-nav-icon[data-v-7d3e0b9f] {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    stroke: currentColor;
}
.bottom-nav-label[data-v-7d3e0b9f] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
}

/**
 * Common / shared styles used across the app.
 * Imported by resources/css/app.css.
 */
/* --- Layout --- */
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}
/* Narrow content (e.g. thank-you, narrow prose) */
.container--narrow {
  max-width: 560px;
  text-align: center;
}
/* --- Sections --- */
.section {
  padding: 4rem 0;
}
@media (max-width: 900px) {
  .section {
    padding: 2.5rem 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 2rem 0;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 1.5rem 0;
  }
}
/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-primary {
  background: var(--mc-primary-light, #14a060);
  color: #fff;
  border: none;
}
.btn-primary:hover {
  background: var(--mc-primary, #0e785f);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  border-color: var(--mc-primary-light, #14a060);
  color: var(--mc-primary-light, #14a060);
}
.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1.05rem;
}
/* --- Section typography (hero/section titles) --- */
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}
.section-text {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: #94a3b8;
}
:root {
  --mc-primary: #0e785f;
  --mc-primary-light: #14a060;
  --mc-primary-teal: #14a89e;
  --mc-dark: #0f172a;
  --mc-text: #334155;
  --mc-muted: #64748b;
  --font-sans: 'Poppins', 'Montserrat', system-ui, sans-serif;
  /* App-like mobile: bottom nav height + safe area */
  --bottom-nav-height: 56px;
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
  --safe-area-top: env(safe-area-inset-top, 0px);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  color: var(--mc-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(37, 211, 102, 0.2);
  background: #0d1117;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}
/* Touch targets: comfortable tap height on mobile */
@media (max-width: 900px) {
  button {
    min-height: 44px;
  }
  .touch-target {
    min-height: 44px;
    min-width: 44px;
  }
}
#app {
  min-height: 100vh;
  min-height: 100dvh;
}
