@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: #FF48AB #f5f5f5;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: white;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: #FF48AB #f5f5f5;
}
body::-webkit-scrollbar {
  width: 12px;
}
body::-webkit-scrollbar-track {
  background: #f5f5f5;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #FF48AB 0%, #ff6bc4 100%);
  border-radius: 6px;
  border: 2px solid #f5f5f5;
}
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ff6bc4 0%, #FF48AB 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

.header {
  background: #ffffff;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.875rem 0;
}
.header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.header .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
.header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.header .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 10;
}
.header .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header .logo .logo-icon {
  height: 2rem;
  width: auto;
  display: block;
  object-fit: contain;
}
.header .header-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}
@media (max-width: 1024px) {
  .header .header-nav {
    display: none;
  }
}
.header .header-nav .header-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.header .header-nav .nav-link,
.header .header-nav .drauau-nav-link {
  color: #333333;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}
.header .header-nav .nav-link:hover,
.header .header-nav .drauau-nav-link:hover {
  color: #FF48AB;
}
.header .header-nav .nav-link:active,
.header .header-nav .drauau-nav-link:active {
  color: #FF48AB;
}
.header .header-nav .nav-link.nav-link-download, .header .header-nav .nav-link.drauau-nav-link--download,
.header .header-nav .drauau-nav-link.nav-link-download,
.header .header-nav .drauau-nav-link.drauau-nav-link--download {
  cursor: pointer;
}
.header .header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .header .header-actions {
    display: none;
  }
}
.header .header-actions .header-link-evets {
  color: #333333;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.header .header-actions .header-link-evets:hover {
  color: #FF48AB;
}
.header .header-actions .btn-header-agende {
  background: linear-gradient(90deg, #ff6bc4 0%, #FF48AB 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 72, 168, 0.3);
}
.header .header-actions .btn-header-agende:hover {
  background: linear-gradient(90deg, #FF48AB 0%, #ff6bc4 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 72, 168, 0.4);
}
.header .header-actions .btn-header-agende:active {
  transform: translateY(0);
}
.header .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .header .menu-toggle {
    display: flex;
  }
}
.header .menu-toggle span {
  width: 100%;
  height: 2px;
  background: #333333;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header .menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header .menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
.header .mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 135%;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2rem;
  gap: 1rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 1024px) {
  .header .mobile-nav {
    display: flex;
  }
}
.header .mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.header .mobile-nav .mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.header .mobile-nav .mobile-nav-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.header .mobile-nav .mobile-nav-list .drauau-nav-link {
  color: #333333;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  padding: 0.75rem 0;
  display: block;
  transition: color 0.3s ease;
}
.header .mobile-nav .mobile-nav-list .drauau-nav-link:hover {
  color: #FF48AB;
}
.header .mobile-nav .mobile-nav-list .drauau-nav-link.drauau-nav-link--download {
  cursor: pointer;
}
.header .mobile-nav .mobile-nav-link {
  color: #333333;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: color 0.3s ease;
}
.header .mobile-nav .mobile-nav-link:hover {
  color: #FF48AB;
}
.header .mobile-nav .mobile-nav-link.mobile-nav-link-download {
  cursor: pointer;
}
.header .mobile-nav .btn-mobile-agende {
  background: linear-gradient(90deg, #ff6bc4 0%, #FF48AB 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin-top: 0.5rem;
  box-shadow: 0 2px 8px rgba(255, 72, 168, 0.3);
  transition: all 0.3s ease;
  border-bottom: none;
}
.header .mobile-nav .btn-mobile-agende:hover {
  background: linear-gradient(90deg, #FF48AB 0%, #ff6bc4 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 72, 168, 0.4);
}

body.motion-scroll-active .header {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .header {
    padding: 0.875rem 0;
  }
  .header.scrolled {
    padding: 0.75rem 0;
  }
  .header .container {
    padding: 0 1.5rem;
  }
  .header .logo .logo-icon {
    height: 1.75rem;
  }
}
.ch-hero-landing {
  position: relative;
  width: 100%;
  overflow: visible;
}

.ch-hero-landing__backdrop {
  --color-foreground: #fdfcff;
  --ch-navy: #001f3f;
  --ch-pink: #ff48ab;
  --ch-pink-bright: #ff6bc4;
  --ch-pink-soft: rgba(255, 72, 171, 0.42);
  --ch-lilac: #f5f0ff;
  position: relative;
  width: 100%;
  overflow: visible;
  display: block;
  background: radial-gradient(ellipse 100% 80% at 50% -20%, rgba(255, 255, 255, 0.08) 0%, transparent 55%), radial-gradient(120% 90% at 80% 20%, rgba(255, 72, 171, 0.14) 0%, transparent 45%), radial-gradient(100% 70% at 10% 60%, rgba(255, 107, 196, 0.08) 0%, transparent 50%), linear-gradient(165deg, #08102a 0%, #0b1d47 36%, #11295e 100%);
  background-size: cover, cover, cover, cover;
  color: var(--ch-navy);
  font-family: "Poppins", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  perspective: 1500px;
  padding-top: 4.5rem;
  box-sizing: border-box;
}
@media (max-width: 968px) {
  .ch-hero-landing__backdrop {
    padding-top: 4rem;
  }
}
.ch-hero-landing__backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../img/banners/1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.42;
  filter: saturate(0.95) contrast(1.05);
  animation: ch-hero-banner-cycle 18s ease-in-out infinite;
}
.ch-hero-landing__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse 110% 85% at 50% -10%, rgba(253, 252, 255, 0.98) 0%, rgba(255, 255, 255, 0.55) 42%, rgba(248, 250, 252, 0.35) 100%), radial-gradient(ellipse 90% 70% at 50% 55%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 248, 252, 0.65) 50%, rgba(241, 245, 249, 0.45) 100%), linear-gradient(155deg, rgba(255, 255, 255, 0.75) 0%, rgba(253, 242, 248, 0.35) 45%, rgba(241, 245, 249, 0.25) 100%);
}
.ch-hero-landing__backdrop .ch-hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
  mix-blend-mode: soft-light;
  background: radial-gradient(ellipse 90% 60% at 15% 25%, rgba(255, 72, 171, 0.22) 0%, transparent 52%), radial-gradient(ellipse 70% 50% at 88% 78%, rgba(139, 92, 246, 0.18) 0%, transparent 48%), linear-gradient(118deg, rgba(8, 16, 42, 0.55) 0%, transparent 48%);
}
.ch-hero-landing__backdrop .ch-hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.ch-hero-landing__backdrop .ch-hero-blobs::before, .ch-hero-landing__backdrop .ch-hero-blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.42;
}
.ch-hero-landing__backdrop .ch-hero-blobs::before {
  width: min(75vw, 560px);
  height: min(75vw, 560px);
  background: #ff48ab;
  top: -18%;
  right: -12%;
}
.ch-hero-landing__backdrop .ch-hero-blobs::after {
  width: min(60vw, 420px);
  height: min(60vw, 420px);
  background: #6366f1;
  bottom: 0;
  left: -14%;
}
.ch-hero-landing__backdrop .ch-film-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
  opacity: 0.04;
  mix-blend-mode: soft-light;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
}
.ch-hero-landing__backdrop .ch-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background-size: 60px 60px;
  background-image: linear-gradient(to right, color-mix(in srgb, var(--ch-pink) 12%, transparent) 1px, transparent 1px), linear-gradient(to bottom, color-mix(in srgb, var(--ch-pink) 10%, transparent) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
}
.ch-hero-landing__backdrop .ch-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.65;
  mix-blend-mode: soft-light;
}
.ch-hero-landing__backdrop .ch-particles::before {
  content: "";
  position: absolute;
  inset: -15% -10% -25% -10%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cg fill='%23ffffff' opacity='0.55'%3E%3Ccircle cx='24' cy='18' r='1.1'/%3E%3Ccircle cx='88' cy='42' r='0.7'/%3E%3Ccircle cx='156' cy='12' r='0.9'/%3E%3Ccircle cx='210' cy='68' r='0.65'/%3E%3Ccircle cx='278' cy='36' r='1'/%3E%3Ccircle cx='48' cy='96' r='0.75'/%3E%3Ccircle cx='120' cy='118' r='0.55'/%3E%3Ccircle cx='190' cy='88' r='0.85'/%3E%3Ccircle cx='260' cy='112' r='0.6'/%3E%3Ccircle cx='32' cy='152' r='0.9'/%3E%3Ccircle cx='98' cy='178' r='0.65'/%3E%3Ccircle cx='168' cy='156' r='0.7'/%3E%3Ccircle cx='238' cy='192' r='0.8'/%3E%3Ccircle cx='304' cy='164' r='0.55'/%3E%3Ccircle cx='58' cy='224' r='0.75'/%3E%3Ccircle cx='132' cy='252' r='0.6'/%3E%3Ccircle cx='202' cy='228' r='1'/%3E%3Ccircle cx='272' cy='256' r='0.65'/%3E%3Ccircle cx='14' cy='268' r='0.7'/%3E%3Ccircle cx='84' cy='296' r='0.5'/%3E%3Ccircle cx='148' cy='274' r='0.85'/%3E%3Ccircle cx='218' cy='302' r='0.55'/%3E%3Ccircle cx='292' cy='288' r='0.75'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 320px 320px;
  background-repeat: repeat;
  animation: ch-particles-drift 90s linear infinite;
}
.ch-hero-landing__backdrop .ch-particles::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cg fill='%23ffffff' opacity='0.4'%3E%3Ccircle cx='40' cy='22' r='0.6'/%3E%3Ccircle cx='112' cy='58' r='0.85'/%3E%3Ccircle cx='180' cy='28' r='0.55'/%3E%3Ccircle cx='248' cy='72' r='0.7'/%3E%3Ccircle cx='72' cy='132' r='0.5'/%3E%3Ccircle cx='144' cy='98' r='0.95'/%3E%3Ccircle cx='216' cy='138' r='0.6'/%3E%3Ccircle cx='28' cy='188' r='0.75'/%3E%3Ccircle cx='100' cy='212' r='0.55'/%3E%3Ccircle cx='172' cy='176' r='0.65'/%3E%3Ccircle cx='244' cy='204' r='0.8'/%3E%3Ccircle cx='56' cy='248' r='0.5'/%3E%3Ccircle cx='128' cy='264' r='0.7'/%3E%3Ccircle cx='200' cy='240' r='0.6'/%3E%3Ccircle cx='260' cy='252' r='0.55'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 280px 280px;
  background-position: 140px 80px;
  background-repeat: repeat;
  opacity: 0.85;
  animation: ch-particles-drift-reverse 120s linear infinite;
}
.ch-hero-landing__backdrop .ch-ambient-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 55%;
  min-height: 280px;
  background: radial-gradient(ellipse 80% 70% at 50% 0%, var(--ch-pink-soft) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.ch-hero-landing__backdrop .ch-text-3d {
  color: var(--ch-navy);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.9), 0 12px 40px color-mix(in srgb, var(--ch-pink) 25%, transparent), 0 2px 6px rgba(0, 31, 63, 0.12);
}
.ch-hero-landing__backdrop .ch-text-pink-hero {
  background: linear-gradient(125deg, #ff48ab 0%, #ff6bc4 38%, #ff8fd8 55%, #ff48ab 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateZ(0);
  filter: drop-shadow(0 8px 24px rgba(255, 72, 171, 0.35)) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.8));
  animation: ch-pink-shimmer 8s ease-in-out infinite;
}
.ch-hero-landing__backdrop .ch-hero-breadcrumb {
  position: relative;
  z-index: 11;
  pointer-events: auto;
  width: 100%;
  max-width: min(92vw, 38rem);
  margin: 0 auto clamp(0.75rem, 2.2vh, 1.35rem);
  display: flex;
  justify-content: center;
}
.ch-hero-landing__backdrop .ch-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0.45rem 1rem;
  font-size: clamp(0.65rem, 1.05vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.98);
  border-radius: 999px;
  box-shadow: 0 4px 28px rgba(15, 23, 42, 0.09), 0 0 0 1px rgba(255, 72, 171, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.ch-hero-landing__backdrop .ch-breadcrumb-list a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ch-hero-landing__backdrop .ch-breadcrumb-list a:hover {
  color: #ff48ab;
}
.ch-hero-landing__backdrop .ch-breadcrumb-list a:focus-visible {
  outline: 2px solid #ff48ab;
  outline-offset: 3px;
  border-radius: 0.2rem;
}
.ch-hero-landing__backdrop .ch-breadcrumb-list li[aria-current=page] {
  color: #db2777;
  font-weight: 800;
}
.ch-hero-landing__backdrop .ch-breadcrumb-sep {
  color: #cbd5e1;
  user-select: none;
  font-weight: 500;
}
.ch-hero-landing__backdrop .ch-intro {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 100vw;
  min-height: calc(100vh - 4.5rem);
  min-height: calc(100svh - 4.5rem);
  padding: 0 1rem clamp(2rem, 6vh, 4rem);
  will-change: transform;
  transform-style: preserve-3d;
  pointer-events: none;
}
.ch-hero-landing__backdrop .ch-intro-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-clamp(0.25rem, 2.5vh, 2rem));
}
.ch-hero-landing__backdrop .ch-scroll-hint {
  margin-top: clamp(1rem, 2.8vh, 1.75rem);
  color: color-mix(in srgb, var(--ch-pink) 88%, var(--ch-navy));
  filter: drop-shadow(0 2px 12px rgba(255, 72, 171, 0.25));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: ch-hero-scroll-hint-reveal 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.72s forwards;
}
.ch-hero-landing__backdrop .ch-scroll-hint-icon {
  display: block;
  width: clamp(26px, 5vw, 32px);
  height: auto;
  animation: ch-hero-scroll-hint-bob 2.35s ease-in-out 1.55s infinite;
}
.ch-hero-landing__backdrop .ch-intro .ch-text-track {
  font-size: clamp(2rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}
.ch-hero-landing__backdrop .ch-intro .ch-text-days {
  font-size: clamp(2rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}
.ch-hero-landing__backdrop .ch-intro-copy .gsap-reveal {
  visibility: visible;
  opacity: 0;
  transform: translate3d(0, clamp(16px, 3vh, 32px), 0) rotateX(10deg);
  transform-origin: 50% 100%;
  filter: blur(10px);
  animation: ch-hero-title-reveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: opacity, transform, filter;
}
.ch-hero-landing__backdrop .ch-intro-copy .ch-text-track.gsap-reveal {
  animation-delay: 0.12s;
}
.ch-hero-landing__backdrop .ch-intro-copy .ch-text-days.gsap-reveal {
  animation-delay: 0.3s;
}
@keyframes ch-hero-title-reveal {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0deg);
    filter: blur(0);
  }
}
@keyframes ch-hero-scroll-hint-reveal {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes ch-hero-scroll-hint-bob {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 8px, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ch-hero-landing__backdrop .ch-intro-copy .gsap-reveal,
  .ch-hero-landing__backdrop .ch-scroll-hint,
  .ch-hero-landing__backdrop .ch-scroll-hint-icon {
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
  }
}
@keyframes ch-pink-shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.ch-hero-landing > .story-split:first-of-type {
  margin-top: clamp(-1rem, -2vh, 0rem);
}

.cinematic-hero {
  --color-foreground: #fdfcff;
  --ch-navy: #001f3f;
  --ch-pink: #ff48ab;
  --ch-pink-bright: #ff6bc4;
  --ch-pink-soft: rgba(255, 72, 171, 0.42);
  --ch-lilac: #f5f0ff;
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 100% 80% at 50% -20%, rgba(255, 255, 255, 0.08) 0%, transparent 55%), radial-gradient(120% 90% at 80% 20%, rgba(255, 72, 171, 0.14) 0%, transparent 45%), radial-gradient(100% 70% at 10% 60%, rgba(255, 107, 196, 0.08) 0%, transparent 50%), linear-gradient(165deg, #08102a 0%, #0b1d47 36%, #11295e 100%);
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-blend-mode: normal, normal, normal, normal;
  color: var(--ch-navy);
  font-family: "Poppins", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  perspective: 1500px;
  padding-top: 4.5rem;
  box-sizing: border-box;
  /* CTA 3 colunas — dentro da moldura com borda animada (sobre o fundo azul do showcase) */
}
@media (max-width: 968px) {
  .cinematic-hero {
    padding-top: 4rem;
  }
}
.cinematic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../img/banners/1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.42;
  filter: saturate(0.95) contrast(1.05);
  animation: ch-hero-banner-cycle 18s ease-in-out infinite;
}
.cinematic-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 65% at 50% 45%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 55%, rgba(255, 255, 255, 0.72) 100%), linear-gradient(118deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.86) 42%, rgba(255, 255, 255, 0.78) 100%);
}
@keyframes ch-hero-banner-cycle {
  0%, 30% {
    background-image: url("../img/banners/1.png");
  }
  33%, 63% {
    background-image: url("../img/banners/2.png");
  }
  66%, 100% {
    background-image: url("../img/banners/3.png");
  }
}
.cinematic-hero .ch-film-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
  opacity: 0.04;
  mix-blend-mode: soft-light;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
}
.cinematic-hero .ch-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background-size: 60px 60px;
  background-image: linear-gradient(to right, color-mix(in srgb, var(--ch-pink) 12%, transparent) 1px, transparent 1px), linear-gradient(to bottom, color-mix(in srgb, var(--ch-pink) 10%, transparent) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
}
.cinematic-hero .ch-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.65;
  mix-blend-mode: soft-light;
}
.cinematic-hero .ch-particles::before {
  content: "";
  position: absolute;
  inset: -15% -10% -25% -10%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cg fill='%23ffffff' opacity='0.55'%3E%3Ccircle cx='24' cy='18' r='1.1'/%3E%3Ccircle cx='88' cy='42' r='0.7'/%3E%3Ccircle cx='156' cy='12' r='0.9'/%3E%3Ccircle cx='210' cy='68' r='0.65'/%3E%3Ccircle cx='278' cy='36' r='1'/%3E%3Ccircle cx='48' cy='96' r='0.75'/%3E%3Ccircle cx='120' cy='118' r='0.55'/%3E%3Ccircle cx='190' cy='88' r='0.85'/%3E%3Ccircle cx='260' cy='112' r='0.6'/%3E%3Ccircle cx='32' cy='152' r='0.9'/%3E%3Ccircle cx='98' cy='178' r='0.65'/%3E%3Ccircle cx='168' cy='156' r='0.7'/%3E%3Ccircle cx='238' cy='192' r='0.8'/%3E%3Ccircle cx='304' cy='164' r='0.55'/%3E%3Ccircle cx='58' cy='224' r='0.75'/%3E%3Ccircle cx='132' cy='252' r='0.6'/%3E%3Ccircle cx='202' cy='228' r='1'/%3E%3Ccircle cx='272' cy='256' r='0.65'/%3E%3Ccircle cx='14' cy='268' r='0.7'/%3E%3Ccircle cx='84' cy='296' r='0.5'/%3E%3Ccircle cx='148' cy='274' r='0.85'/%3E%3Ccircle cx='218' cy='302' r='0.55'/%3E%3Ccircle cx='292' cy='288' r='0.75'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 320px 320px;
  background-repeat: repeat;
  animation: ch-particles-drift 90s linear infinite;
}
.cinematic-hero .ch-particles::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cg fill='%23ffffff' opacity='0.4'%3E%3Ccircle cx='40' cy='22' r='0.6'/%3E%3Ccircle cx='112' cy='58' r='0.85'/%3E%3Ccircle cx='180' cy='28' r='0.55'/%3E%3Ccircle cx='248' cy='72' r='0.7'/%3E%3Ccircle cx='72' cy='132' r='0.5'/%3E%3Ccircle cx='144' cy='98' r='0.95'/%3E%3Ccircle cx='216' cy='138' r='0.6'/%3E%3Ccircle cx='28' cy='188' r='0.75'/%3E%3Ccircle cx='100' cy='212' r='0.55'/%3E%3Ccircle cx='172' cy='176' r='0.65'/%3E%3Ccircle cx='244' cy='204' r='0.8'/%3E%3Ccircle cx='56' cy='248' r='0.5'/%3E%3Ccircle cx='128' cy='264' r='0.7'/%3E%3Ccircle cx='200' cy='240' r='0.6'/%3E%3Ccircle cx='260' cy='252' r='0.55'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 280px 280px;
  background-position: 140px 80px;
  background-repeat: repeat;
  opacity: 0.85;
  animation: ch-particles-drift-reverse 120s linear infinite;
}
@keyframes ch-particles-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-80px, -60px, 0);
  }
}
@keyframes ch-particles-drift-reverse {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(60px, 40px, 0);
  }
}
.cinematic-hero .ch-ambient-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 55%;
  min-height: 280px;
  background: radial-gradient(ellipse 80% 70% at 50% 0%, var(--ch-pink-soft) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.cinematic-hero .gsap-reveal {
  visibility: hidden;
}
.cinematic-hero .ch-text-silver {
  background: linear-gradient(180deg, var(--ch-navy) 0%, color-mix(in srgb, var(--ch-navy) 55%, #ff48ab) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateZ(0);
  filter: drop-shadow(0 6px 20px rgba(255, 72, 171, 0.2)) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.6));
}
.cinematic-hero .ch-text-card-silver {
  background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateZ(0);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.85)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.65));
}
.cinematic-hero .ch-premium-card {
  background: linear-gradient(145deg, #1a2f6e 0%, #0d1833 38%, #12081c 100%);
  box-shadow: 0 40px 100px -20px rgba(255, 72, 171, 0.22), 0 40px 100px -20px rgba(0, 0, 0, 0.55), 0 20px 50px -15px rgba(255, 107, 196, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.18), inset 0 -2px 4px rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 72, 171, 0.12);
  position: relative;
}
.cinematic-hero .ch-card-sheen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 50;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.12) 0%, rgba(255, 72, 171, 0.08) 35%, transparent 45%);
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}
.cinematic-hero .ch-iphone-bezel {
  background-color: #111;
  box-shadow: inset 0 0 0 2px #52525b, inset 0 0 0 7px #000, 0 40px 80px -15px rgba(0, 0, 0, 0.9), 0 15px 25px -5px rgba(0, 0, 0, 0.7);
  transform-style: preserve-3d;
}
.cinematic-hero .ch-hardware-btn {
  background: linear-gradient(90deg, #404040 0%, #171717 100%);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.8), inset -1px 0 1px rgba(255, 255, 255, 0.15), inset 1px 0 2px rgba(0, 0, 0, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}
.cinematic-hero .ch-screen-glare {
  position: absolute;
  inset: 0;
  z-index: 35;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 182, 218, 0.06) 35%, rgba(255, 255, 255, 0) 50%);
}
.cinematic-hero .ch-phone-screen-inner {
  position: absolute;
  inset: 7px;
  border-radius: 2.5rem;
  overflow: hidden;
  z-index: 10;
  background: linear-gradient(165deg, #faf5ff 0%, #f0e8f8 45%, #e8e0f2 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 72, 171, 0.28), inset 0 0 50px rgba(255, 182, 218, 0.12), inset 0 0 18px rgba(0, 0, 0, 0.28);
}
.cinematic-hero .ch-phone-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.cinematic-hero .ch-phone-carousel-track {
  display: flex;
  flex-direction: row;
  flex: 1;
  min-height: 0;
  width: 400%;
  will-change: transform;
}
.cinematic-hero .ch-phone-carousel-slide {
  width: 25%;
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: var(--ch-lilac);
}
.cinematic-hero .ch-phone-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.cinematic-hero .ch-phone-feature-label {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.75);
  z-index: 36;
  pointer-events: none;
  letter-spacing: 0.02em;
  line-height: 1.25;
}
.cinematic-hero .ch-phone-carousel-dots {
  position: absolute;
  bottom: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  align-items: center;
  z-index: 38;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 31, 63, 0.12);
  pointer-events: none;
}
.cinematic-hero .ch-phone-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--ch-pink);
  background: transparent;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cinematic-hero .ch-phone-dot.active {
  background: var(--ch-pink);
  transform: scale(1.12);
}
.cinematic-hero .ch-widget-depth {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.05), inset 0 -1px 1px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.cinematic-hero .ch-floating-badge {
  background: linear-gradient(135deg, rgba(255, 221, 240, 0.36) 0%, rgba(255, 72, 171, 0.18) 45%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 0 1px rgba(255, 182, 218, 0.45), 0 25px 50px -12px rgba(255, 72, 171, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.45), inset 0 -1px 1px rgba(0, 31, 63, 0.28);
}
.cinematic-hero .btn-ch-light,
.cinematic-hero .btn-ch-dark,
.cinematic-hero .btn-ch-pink {
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
  border-radius: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-weight: 700;
  font-family: inherit;
}
.cinematic-hero .btn-ch-light:focus-visible {
  outline: 2px solid var(--ch-pink);
  outline-offset: 3px;
}
.cinematic-hero .btn-ch-dark:focus-visible {
  outline: 2px solid var(--ch-pink-bright);
  outline-offset: 3px;
}
.cinematic-hero .btn-ch-pink:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
.cinematic-hero .ch-cta-btn-text {
  text-align: left;
}
.cinematic-hero .btn-ch-light {
  background: linear-gradient(180deg, #ffffff 0%, #fff5fb 100%);
  color: var(--ch-navy);
  box-shadow: 0 0 0 1px rgba(255, 72, 171, 0.12), 0 2px 4px rgba(0, 0, 0, 0.1), 0 12px 24px -4px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgb(255, 255, 255), inset 0 -3px 6px rgba(0, 0, 0, 0.06);
}
.cinematic-hero .btn-ch-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 6px 12px -2px rgba(0, 0, 0, 0.15), 0 20px 32px -6px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgb(255, 255, 255), inset 0 -3px 6px rgba(0, 0, 0, 0.06);
}
.cinematic-hero .btn-ch-light:active {
  transform: translateY(1px);
}
.cinematic-hero .btn-ch-dark {
  background: linear-gradient(180deg, #27272a 0%, #18181b 100%);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 2px 4px rgba(0, 0, 0, 0.6), 0 12px 24px -4px rgba(0, 0, 0, 0.9), inset 0 1px 1px rgba(255, 255, 255, 0.15), inset 0 -3px 6px rgba(0, 0, 0, 0.8);
}
.cinematic-hero .btn-ch-dark:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, #3f3f46 0%, #27272a 100%);
}
.cinematic-hero .btn-ch-dark:active {
  transform: translateY(1px);
}
.cinematic-hero .btn-ch-pink {
  background: linear-gradient(180deg, var(--ch-pink-bright) 0%, var(--ch-pink) 100%);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28), 0 2px 4px rgba(0, 31, 63, 0.12), 0 12px 28px -4px rgba(255, 72, 171, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.35), inset 0 -2px 6px rgba(157, 23, 77, 0.25);
}
.cinematic-hero .btn-ch-pink:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 6px 14px -2px rgba(255, 72, 171, 0.45), 0 22px 40px -8px rgba(255, 72, 171, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.45), inset 0 -2px 6px rgba(157, 23, 77, 0.2);
}
.cinematic-hero .btn-ch-pink:active {
  transform: translateY(1px);
}
.cinematic-hero .ch-enter-cue {
  position: absolute;
  z-index: 12;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  user-select: none;
  text-align: center;
  color: color-mix(in srgb, var(--ch-pink-bright) 92%, #ffffff);
}
.cinematic-hero .ch-enter-cue__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.65rem, 1.8vw, 1rem);
  margin-top: clamp(2rem, 7vh, 5rem);
  max-width: min(96vw, 26rem);
}
.cinematic-hero .ch-enter-cue__label {
  font-size: clamp(0.82rem, 1.35vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.42);
  line-height: 1.35;
}
.cinematic-hero .ch-enter-cue__icon {
  display: block;
  width: clamp(34px, 6.5vw, 46px);
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(255, 72, 171, 0.5));
  animation: ch-enter-cue-nudge 1.35s ease-in-out infinite;
}
.cinematic-hero .ch-cta {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
  will-change: transform;
  pointer-events: auto;
  visibility: hidden;
}
.cinematic-hero .ch-cta h2 {
  font-size: clamp(1.75rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.cinematic-hero .ch-cta p {
  color: rgba(0, 31, 63, 0.78);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.65;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}
.cinematic-hero .ch-cta .ch-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}
.cinematic-hero .ch-cta .ch-cta-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 640px) {
  .cinematic-hero .ch-cta .ch-cta-row {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}
.cinematic-hero .ch-cta .ch-cta-row--vet {
  width: 100%;
  justify-content: center;
}
.cinematic-hero .ch-cta .btn-ch-light,
.cinematic-hero .ch-cta .btn-ch-dark,
.cinematic-hero .ch-cta .btn-ch-pink {
  min-width: 0;
}
.cinematic-hero .ch-cta .btn-ch-pink .ch-cta-btn-label {
  color: rgba(255, 255, 255, 0.82);
}
.cinematic-hero .ch-cta .btn-ch-pink .ch-cta-btn-title {
  color: #ffffff;
}
.cinematic-hero .ch-cta .ch-store-icon {
  flex-shrink: 0;
}
.cinematic-hero .ch-cta .ch-cta-btn-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 2px;
  line-height: 1.1;
}
.cinematic-hero .ch-cta .btn-ch-dark .ch-cta-btn-label {
  color: rgba(255, 255, 255, 0.55);
}
.cinematic-hero .ch-cta .ch-cta-btn-title {
  font-size: 1.2rem;
  line-height: 1.1;
}
.cinematic-hero .ch-card-layer {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  perspective: 1500px;
}
.cinematic-hero .ch-main-card {
  pointer-events: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92vw;
  max-width: 1400px;
  height: 92vh;
  border-radius: 32px;
}
@media (min-width: 768px) {
  .cinematic-hero .ch-main-card {
    width: 85vw;
    height: 85vh;
    border-radius: 40px;
  }
}
.cinematic-hero .ch-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  z-index: 10;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .cinematic-hero .ch-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 0 3rem;
  }
}
.cinematic-hero .ch-card-left {
  order: 3;
  text-align: center;
  z-index: 20;
  width: 100%;
}
@media (min-width: 1024px) {
  .cinematic-hero .ch-card-left {
    order: 1;
    text-align: left;
  }
}
.cinematic-hero .ch-card-left .ch-side-visual {
  display: none;
}
.cinematic-hero .ch-card-left .ch-side-text {
  display: block;
}
.cinematic-hero .ch-card-left .ch-side-title {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
  .cinematic-hero .ch-card-left .ch-side-title {
    margin-bottom: 1.25rem;
  }
}
.cinematic-hero .ch-card-left .ch-side-desc {
  display: none;
  color: rgba(191, 219, 254, 0.75);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  max-width: 22rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cinematic-hero .ch-card-left .ch-side-desc {
    display: block;
    margin: 0;
    max-width: none;
  }
}
.cinematic-hero .ch-card-left .ch-highlight {
  color: #fff;
  font-weight: 700;
}
.cinematic-hero .ch-card-right {
  order: 1;
  display: flex;
  justify-content: center;
  z-index: 20;
  width: 100%;
}
@media (min-width: 1024px) {
  .cinematic-hero .ch-card-right {
    order: 3;
    justify-content: flex-end;
  }
}
.cinematic-hero .ch-card-right .ch-side-visual {
  display: grid;
  place-items: center;
}
.cinematic-hero .ch-card-right .ch-side-text {
  display: block;
  text-align: left;
  max-width: 30rem;
}
.cinematic-hero .ch-card-right .ch-side-title {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.cinematic-hero .ch-card-right .ch-side-desc {
  color: rgba(191, 219, 254, 0.75);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}
.cinematic-hero .ch-side-text-left,
.cinematic-hero .ch-side-text-right {
  will-change: opacity, transform;
}
@media (max-width: 767px) {
  .cinematic-hero .ch-card-left,
  .cinematic-hero .ch-card-right {
    display: none !important;
  }
  .cinematic-hero .ch-card-inner {
    justify-content: center;
  }
}
.cinematic-hero .ch-story-stage {
  position: absolute;
  inset: clamp(0.75rem, 2vw, 1.5rem);
  z-index: 30;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
}
.cinematic-hero .ch-story-stage a,
.cinematic-hero .ch-story-stage button {
  pointer-events: auto;
}
.cinematic-hero .ch-story-card {
  position: absolute;
  width: min(88%, 780px);
  padding: clamp(1.5rem, 3.5vw, 3.75rem);
  border-radius: clamp(24px, 3vw, 36px);
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 31, 63, 0.04), 0 24px 48px -12px rgba(255, 72, 171, 0.35), 0 32px 80px -24px rgba(109, 40, 217, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  border: 1px solid rgba(255, 182, 218, 0.45);
  color: var(--ch-navy);
  text-align: left;
  transform: translateY(22px) scale(0.95);
  opacity: 0;
  will-change: transform, opacity;
}
.cinematic-hero .ch-story-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cinematic-hero .ch-story-card .ch-story-title {
  margin: 0.35rem 0 1rem;
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #0f172a;
}
.cinematic-hero .ch-story-card .ch-story-lead {
  margin: 0;
  font-size: clamp(0.95rem, 1.45vw, 1.125rem);
  line-height: 1.6;
  color: #475569;
  font-weight: 400;
}
.cinematic-hero .ch-story-card--trio {
  width: min(96%, 980px);
  padding: clamp(1.1rem, 2.2vw, 1.75rem) clamp(1rem, 2vw, 1.5rem);
  background: transparent;
  border: none;
  box-shadow: none;
}
.cinematic-hero .ch-story-card--trio .ch-story-trio-label {
  margin: 0 0 0.85rem;
  text-align: center;
  font-size: clamp(0.7rem, 1.1vw, 0.8125rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 20px rgba(109, 40, 217, 0.5);
}
.cinematic-hero .ch-story-trio {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: 100%;
}
@media (max-width: 860px) {
  .cinematic-hero .ch-story-trio {
    flex-direction: column;
    align-items: stretch;
  }
}
.cinematic-hero .ch-story-benefit {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
}
.cinematic-hero .ch-story-snake-shell {
  position: relative;
  flex: 1;
  border-radius: clamp(20px, 2.4vw, 32px);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 20px 50px -20px rgba(109, 40, 217, 0.45), 0 12px 28px rgba(255, 72, 171, 0.2);
}
.cinematic-hero .ch-story-snake-orbit {
  position: absolute;
  width: 240%;
  height: 240%;
  top: 50%;
  left: 50%;
  background: conic-gradient(from 0deg, rgba(167, 139, 250, 0) 0deg, rgba(167, 139, 250, 0.15) 40deg, rgba(192, 132, 250, 0.85) 95deg, var(--ch-pink) 155deg, rgba(236, 72, 153, 0.55) 220deg, rgba(167, 139, 250, 0) 300deg, rgba(167, 139, 250, 0) 360deg);
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center center;
  animation: ch-story-snake-spin 5.5s linear infinite;
  z-index: 0;
}
.cinematic-hero .ch-story-snake-orbit--delay {
  animation-delay: -1.85s;
}
.cinematic-hero .ch-story-snake-orbit--delay2 {
  animation-delay: -3.7s;
}
@keyframes ch-story-snake-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cinematic-hero .ch-story-snake-orbit {
    animation: none;
    opacity: 0.65;
  }
}
.cinematic-hero .ch-story-benefit-inner {
  position: relative;
  z-index: 1;
  margin: 2px;
  height: calc(100% - 4px);
  border-radius: clamp(18px, 2.1vw, 29px);
  background: #ffffff;
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.95) inset;
}
.cinematic-hero .ch-story-benefit-title {
  margin: 0;
  font-size: clamp(0.95rem, 1.35vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #0f172a;
}
.cinematic-hero .ch-story-benefit-text {
  margin: 0;
  font-size: clamp(0.78rem, 1.05vw, 0.9rem);
  line-height: 1.55;
  color: #475569;
}
.cinematic-hero .ch-story-benefit-visual {
  margin-top: 0.65rem;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid rgb(226, 232, 240);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 6px 20px rgba(0, 31, 63, 0.06);
  padding: clamp(0.45rem, 1.2vw, 0.65rem);
}
.cinematic-hero .ch-story-benefit-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(32vh, 240px);
  object-fit: contain;
  object-position: center center;
}
.cinematic-hero .ch-story-kicker--soft {
  color: #7c3aed;
  border-color: rgba(167, 139, 250, 0.55);
  background: rgba(255, 255, 255, 0.98);
}
.cinematic-hero .ch-story-trio-bridge {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(0.85rem, 2vw, 1.35rem);
  align-self: stretch;
  padding: 0.25rem 0;
}
@media (max-width: 860px) {
  .cinematic-hero .ch-story-trio-bridge {
    flex-direction: row;
    width: 100%;
    height: clamp(0.85rem, 2vw, 1.1rem);
    padding: 0 0.25rem;
  }
}
.cinematic-hero .ch-story-trio-bridge-line {
  flex: 1 1 auto;
  width: 3px;
  min-height: 6px;
  border-radius: 99px;
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.35), rgba(236, 72, 153, 0.75), rgba(167, 139, 250, 0.35));
  box-shadow: 0 0 12px rgba(192, 132, 250, 0.45);
}
@media (max-width: 860px) {
  .cinematic-hero .ch-story-trio-bridge-line {
    width: auto;
    height: 3px;
    min-height: 3px;
    min-width: 6px;
    flex: 1 1 auto;
    background: linear-gradient(90deg, rgba(167, 139, 250, 0.35), rgba(236, 72, 153, 0.75), rgba(167, 139, 250, 0.35));
  }
}
.cinematic-hero .ch-story-trio-bridge-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fce7f3, var(--ch-pink) 55%, #7c3aed);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 18px rgba(236, 72, 153, 0.65);
}
.cinematic-hero .ch-story-card--timeline {
  width: min(99%, 1120px);
  padding: clamp(1.1rem, 2.1vw, 1.6rem) clamp(0.75rem, 1.5vw, 1.25rem);
  background: transparent;
  border: none;
  box-shadow: none;
}
.cinematic-hero .ch-story-timeline-head {
  text-align: center;
  margin-bottom: clamp(0.65rem, 1.2vw, 0.95rem);
}
.cinematic-hero .ch-story-timeline-head .ch-story-title {
  margin: 0.55rem 0 0;
  color: #f8fbff;
  text-shadow: 0 2px 24px rgba(167, 139, 250, 0.35);
  font-size: clamp(1.1rem, 2.1vw, 1.6rem);
}
.cinematic-hero .ch-story-timeline-lead {
  margin: 0.6rem auto 0;
  max-width: 40rem;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.88);
  font-weight: 500;
}
.cinematic-hero .ch-story-timeline-items {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: clamp(0.65rem, 1.2vw, 1rem);
  padding: 0.35rem 0 0.5rem;
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}
.cinematic-hero .ch-story-timeline-track {
  display: block;
  position: relative;
  width: 100%;
  max-width: min(920px, 94%);
  height: 7px;
  margin: 0.5rem auto clamp(0.75rem, 1.6vw, 1.15rem);
  border-radius: 99px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 16px rgba(0, 31, 63, 0.28);
}
.cinematic-hero .ch-story-timeline-base,
.cinematic-hero .ch-story-timeline-progress {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.cinematic-hero .ch-story-timeline-base {
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.38), rgba(71, 85, 105, 0.28));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}
.cinematic-hero .ch-story-timeline-progress {
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, #f0abfc 0%, #ec4899 42%, #8b5cf6 100%);
  box-shadow: 0 0 14px rgba(236, 72, 153, 0.55), 0 0 22px rgba(167, 139, 250, 0.45);
}
.cinematic-hero .ch-story-trio-bridge--timeline {
  flex: 0 0 clamp(0.65rem, 1.35vw, 1.1rem);
  min-width: clamp(0.65rem, 1.35vw, 1.1rem);
  align-self: stretch;
  padding: 0.35rem 0;
}
@media (max-width: 860px) {
  .cinematic-hero .ch-story-trio-bridge--timeline {
    flex: 0 0 clamp(0.5rem, 2.2vw, 0.85rem);
    min-width: clamp(0.5rem, 2.2vw, 0.85rem);
    flex-direction: column;
    width: auto;
    height: auto;
    min-height: 0;
  }
}
.cinematic-hero .ch-story-timeline-item {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: min(280px, 82vw);
  max-width: 360px;
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  scroll-snap-align: start;
}
.cinematic-hero .ch-story-timeline-item::after {
  display: none;
}
.cinematic-hero .ch-story-timeline-item--left,
.cinematic-hero .ch-story-timeline-item--right {
  align-self: stretch;
}
.cinematic-hero .ch-story-timeline-item .ch-story-snake-shell {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}
.cinematic-hero .ch-story-timeline-item .ch-story-benefit-inner {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
}
.cinematic-hero .ch-story-timeline-item .ch-story-benefit-text {
  flex: 1 1 auto;
  min-height: 0;
}
.cinematic-hero .ch-story-timeline-item .ch-story-benefit-visual {
  flex: 0 0 auto;
  margin-top: auto;
  min-height: clamp(168px, 24vw, 232px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cinematic-hero .ch-story-timeline-item .ch-story-benefit-visual img {
  max-height: min(210px, 28vh);
  width: auto;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .cinematic-hero .ch-story-timeline-items {
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: visible;
  }
  .cinematic-hero .ch-story-timeline-item {
    min-width: 0;
    max-width: none;
  }
}
@media (max-width: 860px) {
  .cinematic-hero .ch-story-card--timeline {
    width: min(100%, 100vw - 1.5rem);
  }
  .cinematic-hero .ch-story-timeline-items {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
}
.cinematic-hero .ch-story-card--app {
  --ch-footer-r: clamp(16px, 2.2vw, 26px);
  --ch-footer-snake: 4px;
  width: min(100%, 100vw - 1.25rem);
  max-width: min(1020px, 100%);
  margin-inline: auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: var(--ch-footer-r);
  overflow: hidden;
  line-height: normal;
}
.cinematic-hero .ch-story-footer-widget {
  position: relative;
  display: block;
  width: 100%;
  border-radius: var(--ch-footer-r);
  overflow: hidden;
  isolation: isolate;
  background: #0f172a;
}
.cinematic-hero .ch-story-footer-widget::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 200%;
  min-width: 720px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg, #db2777 0deg, #ec4899 70deg, #e879f9 140deg, #8b5cf6 210deg, #6366f1 280deg, #f472b6 330deg, #db2777 360deg);
  animation: ch-footer-snake-spin 3.5s linear infinite;
}
@keyframes ch-footer-snake-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cinematic-hero .ch-story-footer-widget::before {
    animation: none;
    transform: translate(-50%, -50%) rotate(40deg);
  }
}
.cinematic-hero .ch-story-footer-widget-inner {
  position: relative;
  z-index: 1;
  margin: var(--ch-footer-snake);
  width: calc(100% - 2 * var(--ch-footer-snake));
  max-width: calc(100% - 2 * var(--ch-footer-snake));
  box-sizing: border-box;
  border-radius: calc(var(--ch-footer-r) - var(--ch-footer-snake));
  overflow: hidden;
  background: #ffffff;
  line-height: normal;
}
.cinematic-hero .ch-app-cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 200px) minmax(0, 1fr);
  gap: clamp(0.65rem, 1.8vw, 1.25rem);
  align-items: center;
  padding: clamp(0.85rem, 2vw, 1.35rem) clamp(0.65rem, 1.5vw, 1.1rem);
  font-family: "Poppins", system-ui, sans-serif;
  color: #001f3f;
}
@media (max-width: 720px) {
  .cinematic-hero .ch-app-cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cinematic-hero .ch-app-cta-banner .ch-app-cta-banner__col--left,
  .cinematic-hero .ch-app-cta-banner .ch-app-cta-banner__col--right {
    text-align: center;
  }
  .cinematic-hero .ch-app-cta-banner .ch-app-cta-banner__col--left {
    order: 1;
  }
  .cinematic-hero .ch-app-cta-banner .ch-app-cta-banner__mockup {
    order: 2;
    justify-self: center;
    max-width: 220px;
  }
  .cinematic-hero .ch-app-cta-banner .ch-app-cta-banner__col--right {
    order: 3;
  }
}
.cinematic-hero .ch-app-cta-banner__col {
  position: relative;
  min-width: 0;
}
.cinematic-hero .ch-app-cta-banner__col--left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-right: 0.25rem;
}
.cinematic-hero .ch-app-cta-banner__lead {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}
@media (max-width: 720px) {
  .cinematic-hero .ch-app-cta-banner__lead {
    justify-content: center;
    text-align: left;
  }
}
.cinematic-hero .ch-app-cta-banner__col--right {
  padding-left: 0.25rem;
}
.cinematic-hero .ch-app-cta-banner__paw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cinematic-hero .ch-app-cta-banner__paw--pink {
  color: #ff48ab;
  filter: drop-shadow(0 4px 12px rgba(255, 72, 171, 0.25));
}
.cinematic-hero .ch-app-cta-banner__paw--navy {
  color: #001f3f;
  opacity: 0.92;
}
.cinematic-hero .ch-app-cta-banner__paw--dot {
  align-self: center;
  margin: 0 auto 0.15rem;
}
@media (min-width: 721px) {
  .cinematic-hero .ch-app-cta-banner__paw--dot {
    align-self: flex-start;
    margin: 0 0 0.35rem 12%;
  }
}
.cinematic-hero .ch-app-cta-banner__paw--med {
  flex-shrink: 0;
  margin-top: 0.12rem;
}
.cinematic-hero .ch-app-cta-banner__paw--lg {
  margin: 0 0 0.45rem;
}
.cinematic-hero .ch-app-cta-banner__paw--sm svg {
  width: 22px;
  height: 22px;
}
.cinematic-hero .ch-app-cta-banner__tagline {
  margin: 0;
  padding: 0;
}
.cinematic-hero .ch-app-cta-banner__brand {
  display: block;
  font-size: clamp(1.05rem, 1.75vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #001f3f;
  line-height: 1.2;
}
.cinematic-hero .ch-app-cta-banner__sub {
  display: block;
  margin-top: 0.4rem;
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  font-weight: 600;
  line-height: 1.4;
  color: color-mix(in srgb, #001f3f 88%, #64748b);
}
.cinematic-hero .ch-app-cta-banner__copy {
  margin: 0;
  font-size: clamp(0.8rem, 1.12vw, 0.95rem);
  font-weight: 600;
  line-height: 1.5;
  color: color-mix(in srgb, #001f3f 90%, #475569);
}
.cinematic-hero .ch-app-cta-banner__paw-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 0.65rem;
}
@media (max-width: 720px) {
  .cinematic-hero .ch-app-cta-banner__paw-row {
    justify-content: center;
  }
}
.cinematic-hero .ch-app-cta-banner__col--right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 720px) {
  .cinematic-hero .ch-app-cta-banner__col--right {
    align-items: center;
  }
}
.cinematic-hero .ch-app-cta-banner__mockup {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cinematic-hero .ch-app-cta-banner__phone {
  width: 100%;
  max-width: 200px;
  border-radius: clamp(22px, 4vw, 30px);
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.28), 0 0 0 3px color-mix(in srgb, #1e293b 92%, #334155), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotate(-2deg);
  transition: transform 0.35s ease;
}
.cinematic-hero .ch-app-cta-banner__phone:hover {
  transform: rotate(0deg) translateY(-2px);
}
.cinematic-hero .ch-app-cta-banner__phone img {
  width: 100%;
  height: auto;
  max-height: min(42vh, 260px);
  display: block;
  object-fit: cover;
  object-position: top center;
  vertical-align: top;
}
@media (max-width: 720px) {
  .cinematic-hero .ch-app-cta-banner__phone {
    transform: rotate(0deg);
    max-width: 200px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cinematic-hero .ch-app-cta-banner__phone {
    transform: none;
  }
  .cinematic-hero .ch-app-cta-banner__phone:hover {
    transform: none;
  }
}
.cinematic-hero .ch-story-como-flow {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
}
.cinematic-hero .ch-story-como-head {
  text-align: left;
  padding: 0 clamp(0.15rem, 1vw, 0.35rem);
}
.cinematic-hero .ch-story-kicker--como {
  margin-bottom: 0.65rem;
}
.cinematic-hero .ch-story-como-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 31, 63, 0.32);
}
.cinematic-hero .ch-story-como-lead {
  margin: 0;
  max-width: 42rem;
  font-size: clamp(0.88rem, 1.35vw, 1.05rem);
  line-height: 1.6;
  color: #64748b;
  font-weight: 400;
}
.cinematic-hero .ch-story-trio--como {
  margin-top: 0.25rem;
}
.cinematic-hero .ch-story-tag-title {
  margin: 0 0 0.4rem;
  font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #0f172a;
}
.cinematic-hero .ch-story-accent {
  color: var(--ch-pink);
  font-weight: inherit;
}
.cinematic-hero .ch-story-card--vantagens {
  width: min(96%, 920px);
  padding: clamp(1.25rem, 2.5vw, 2.25rem) clamp(1.25rem, 2.8vw, 2.75rem);
  max-height: min(82vh, 640px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .cinematic-hero .ch-story-card--vantagens .ch-story-panel-media {
    display: none !important;
  }
}
.cinematic-hero .ch-story-panel {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  min-height: 0;
}
.cinematic-hero .ch-story-panel-head {
  text-align: center;
}
.cinematic-hero .ch-story-panel-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.2;
}
.cinematic-hero .ch-story-panel-sub {
  margin: 0 auto;
  max-width: 42rem;
  font-size: clamp(0.8rem, 1.15vw, 0.95rem);
  line-height: 1.55;
  color: #64748b;
}
.cinematic-hero .ch-story-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1rem, 2vw, 1.75rem);
  align-items: start;
  min-height: 0;
}
@media (max-width: 767px) {
  .cinematic-hero .ch-story-panel-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: clamp(1.25rem, 4vw, 2rem);
  }
  .cinematic-hero .ch-story-panel-grid .ch-story-panel-side {
    order: 1;
  }
  .cinematic-hero .ch-story-panel-grid .ch-story-panel-media {
    order: 2;
  }
}
.cinematic-hero .ch-story-panel--invert .ch-story-panel-grid > .ch-story-panel-media {
  order: 2;
}
.cinematic-hero .ch-story-panel--invert .ch-story-panel-grid > .ch-story-panel-side {
  order: 1;
}
.cinematic-hero .ch-story-panel-media {
  border-radius: clamp(20px, 2.5vw, 28px);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 31, 63, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  aspect-ratio: 1;
  max-height: min(38vh, 280px);
  margin: 0 auto;
  width: 100%;
  max-width: 320px;
}
@media (min-width: 768px) {
  .cinematic-hero .ch-story-panel-media {
    max-height: none;
    max-width: none;
    margin: 0;
  }
}
.cinematic-hero .ch-story-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cinematic-hero .ch-story-panel-side {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.5vw, 1.25rem);
  min-width: 0;
}
.cinematic-hero .ch-story-feat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.cinematic-hero .ch-story-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 31, 63, 0.06);
  border: 1px solid rgba(241, 245, 249, 0.95);
}
.cinematic-hero .ch-story-feat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: var(--ch-pink);
  box-shadow: 0 0 0 1px rgba(255, 72, 171, 0.2), 0 4px 14px rgba(255, 72, 171, 0.18);
}
.cinematic-hero .ch-story-feat-icon svg {
  width: 20px;
  height: 20px;
}
.cinematic-hero .ch-story-feat-text {
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  line-height: 1.45;
  color: #334155;
  font-weight: 500;
}
.cinematic-hero .ch-story-panel-cta {
  align-self: flex-start;
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(180deg, var(--ch-pink-bright) 0%, var(--ch-pink) 100%);
  box-shadow: 0 4px 16px rgba(255, 72, 171, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cinematic-hero .ch-story-panel-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 72, 171, 0.5);
}
.cinematic-hero .ch-story-panel-cta:focus-visible {
  outline: 2px solid var(--ch-pink);
  outline-offset: 3px;
}
.cinematic-hero .ch-story-panel-cta--ghost {
  background: transparent;
  color: var(--ch-navy);
  border: 2px solid color-mix(in srgb, var(--ch-navy) 22%, transparent);
  box-shadow: none;
}
.cinematic-hero .ch-story-panel-cta--ghost:hover {
  background: rgba(255, 72, 171, 0.06);
  border-color: rgba(255, 72, 171, 0.45);
  transform: translateY(-2px);
}
.cinematic-hero .ch-story-mission {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 42%);
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cinematic-hero .ch-story-mission {
    grid-template-columns: 1fr;
  }
}
.cinematic-hero .ch-story-mission-copy {
  text-align: left;
}
.cinematic-hero .ch-story-mission-visual {
  position: relative;
  width: 100%;
  max-width: min(100%, 380px);
  justify-self: end;
  border-radius: clamp(18px, 2.5vw, 26px);
  overflow: hidden;
  background: #f1f5f9;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 16px 44px rgba(0, 31, 63, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}
.cinematic-hero .ch-story-mission-visual img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
@media (max-width: 767px) {
  .cinematic-hero .ch-story-mission-visual {
    max-width: min(100%, 320px);
    justify-self: center;
    margin-top: 0.5rem;
  }
}
.cinematic-hero .ch-story-lead--emphasis {
  margin-top: 0.75rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--ch-navy) 88%, var(--ch-pink));
}
.cinematic-hero .ch-story-card--trust {
  padding: clamp(1.1rem, 2.2vw, 2.4rem) clamp(1.25rem, 2.8vw, 2.75rem);
  max-height: min(80vh, 600px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
  .cinematic-hero .ch-story-card--trust {
    overflow: hidden;
    -webkit-overflow-scrolling: auto;
  }
}
.cinematic-hero .ch-story-kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7c3aed;
  background: #ffffff;
  border: 1px solid rgba(167, 139, 250, 0.45);
  box-shadow: 0 1px 2px rgba(109, 40, 217, 0.06);
}
.cinematic-hero .ch-brand-mark {
  position: relative;
  width: clamp(180px, 30vw, 420px);
  aspect-ratio: 1/1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.3) 0%, transparent 45%), radial-gradient(circle at 70% 70%, rgba(255, 72, 171, 0.28) 0%, transparent 55%), linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 72, 171, 0.14) 100%);
  border: 1px solid rgba(255, 182, 218, 0.5);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.18), 0 25px 70px rgba(255, 72, 171, 0.35), 0 10px 25px rgba(0, 31, 63, 0.35);
}
.cinematic-hero .ch-brand-ring {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  animation: ch-ring-spin 14s linear infinite;
}
.cinematic-hero .ch-brand-symbol {
  width: 28%;
  height: 28%;
  color: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 8px 18px rgba(255, 72, 171, 0.6));
  z-index: 2;
}
.cinematic-hero .ch-brand-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 72, 171, 0.88) 60%, rgba(255, 72, 171, 0.1) 100%);
  box-shadow: 0 8px 30px rgba(255, 72, 171, 0.45);
}
.cinematic-hero .ch-brand-orb-lg {
  width: 22%;
  aspect-ratio: 1/1;
  top: 16%;
  left: 18%;
  animation: ch-float-y 4.8s ease-in-out infinite;
}
.cinematic-hero .ch-brand-orb-md {
  width: 15%;
  aspect-ratio: 1/1;
  top: 23%;
  right: 18%;
  animation: ch-float-y 5.6s ease-in-out infinite reverse;
}
.cinematic-hero .ch-brand-orb-sm {
  width: 11%;
  aspect-ratio: 1/1;
  bottom: 18%;
  right: 26%;
  animation: ch-float-y 4.2s ease-in-out infinite;
}
@keyframes ch-ring-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes ch-float-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.cinematic-hero.ch-layout-inverted .ch-card-left {
  order: 3 !important;
  justify-content: flex-end;
}
.cinematic-hero.ch-layout-inverted .ch-card-left .ch-side-text {
  display: none !important;
}
.cinematic-hero.ch-layout-inverted .ch-card-left .ch-side-visual {
  display: grid !important;
}
.cinematic-hero.ch-layout-inverted .ch-card-right {
  order: 1 !important;
  justify-content: flex-start !important;
}
.cinematic-hero.ch-layout-inverted .ch-card-right .ch-side-visual {
  display: none !important;
}
.cinematic-hero.ch-layout-inverted .ch-card-right .ch-side-text {
  display: block !important;
}
.cinematic-hero .ch-mockup-wrap {
  order: 2;
  position: relative;
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  perspective: 1000px;
}
@media (max-width: 767px) {
  .cinematic-hero .ch-mockup-wrap {
    height: clamp(440px, 86vw, 540px);
  }
}
@media (min-width: 768px) {
  .cinematic-hero .ch-mockup-wrap {
    height: 520px;
  }
}
@media (min-width: 1024px) {
  .cinematic-hero .ch-mockup-wrap {
    height: 600px;
  }
}
.cinematic-hero .ch-mockup-scale {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.62);
  transform-style: preserve-3d;
}
@media (max-width: 767px) {
  .cinematic-hero .ch-mockup-scale {
    transform: scale(0.84);
  }
}
@media (min-width: 768px) {
  .cinematic-hero .ch-mockup-scale {
    transform: scale(0.78);
  }
}
@media (min-width: 1024px) {
  .cinematic-hero .ch-mockup-scale {
    transform: scale(1);
  }
}
.cinematic-hero .ch-iphone {
  position: relative;
  width: 280px;
  height: 580px;
  border-radius: 3rem;
  display: flex;
  flex-direction: column;
  will-change: transform;
  transform-style: preserve-3d;
}
.cinematic-hero .ch-island {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 999px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.75rem;
  box-shadow: inset 0 -1px 2px rgba(255, 255, 255, 0.1);
}
.cinematic-hero .ch-island-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.85);
  animation: ch-pulse 2s ease-in-out infinite;
}
@keyframes ch-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}
.cinematic-hero .ch-badge-pos-a {
  position: absolute;
  top: 1rem;
  left: -12px;
  z-index: 80;
}
@media (min-width: 1024px) {
  .cinematic-hero .ch-badge-pos-a {
    top: 3rem;
    left: -5rem;
  }
}
.cinematic-hero .ch-badge-pos-b {
  position: absolute;
  bottom: 3rem;
  right: -12px;
  z-index: 80;
}
@media (min-width: 1024px) {
  .cinematic-hero .ch-badge-pos-b {
    bottom: 5rem;
    right: -5rem;
  }
}
.cinematic-hero .ch-badge-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
}
@media (min-width: 1024px) {
  .cinematic-hero .ch-badge-inner {
    padding: 1rem 1.25rem;
    border-radius: 1.25rem;
    gap: 1rem;
  }
}
.cinematic-hero .ch-badge-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
@media (min-width: 1024px) {
  .cinematic-hero .ch-badge-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.35rem;
  }
}
.cinematic-hero .ch-badge-icon--pink {
  background: linear-gradient(to bottom, rgba(255, 72, 171, 0.35), rgba(127, 17, 84, 0.15));
  border: 1px solid rgba(255, 120, 190, 0.35);
}
.cinematic-hero .ch-badge-icon--blue {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.22), rgba(255, 72, 171, 0.2));
  border: 1px solid rgba(255, 182, 218, 0.45);
}
.cinematic-hero .ch-badge-title {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
  .cinematic-hero .ch-badge-title {
    font-size: 0.875rem;
  }
}
.cinematic-hero .ch-badge-sub {
  color: rgba(255, 220, 240, 0.65);
  font-size: 0.625rem;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .cinematic-hero .ch-badge-sub {
    font-size: 0.75rem;
  }
}
.cinematic-hero.ch-static {
  height: auto;
  min-height: 100vh;
  overflow: visible;
}
.cinematic-hero.ch-static .ch-enter-cue {
  display: none !important;
}
.cinematic-hero.ch-static .gsap-reveal {
  visibility: visible;
}
.cinematic-hero.ch-static .ch-cta,
.cinematic-hero.ch-static .ch-main-card,
.cinematic-hero.ch-static .ch-mockup-wrap .ch-phone-carousel,
.cinematic-hero.ch-static .ch-floating-badge,
.cinematic-hero.ch-static .ch-card-left,
.cinematic-hero.ch-static .ch-card-right {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  visibility: visible !important;
}
.cinematic-hero.ch-static .ch-cta {
  position: relative;
  margin: 2rem auto 0;
  padding: 2rem 1rem;
  visibility: visible;
  opacity: 1;
  filter: none;
  transform: none;
}
.cinematic-hero.ch-static .ch-card-layer {
  position: relative;
  margin: 2rem auto;
  padding: 0 1rem 3rem;
}
.cinematic-hero.ch-static .ch-main-card {
  width: 100%;
  max-width: 56rem;
  height: auto;
  min-height: 70vh;
}
.cinematic-hero.ch-static #ch-phone-carousel-track {
  transform: translateX(0) !important;
}
.cinematic-hero.ch-static .ch-story-stage {
  display: none;
}

@keyframes ch-enter-cue-nudge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cinematic-hero:not(.ch-static) .ch-enter-cue__icon {
    animation: none;
  }
}
.story-split {
  padding: clamp(3.75rem, 8.5vw, 6rem) 0;
  background: #f8fafc;
  overflow: visible;
}
.story-split--panel {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}
.story-split__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  overflow: visible;
}
@media (max-width: 900px) {
  .story-split__inner {
    grid-template-columns: 1fr;
  }
}
.story-split--centered .story-split__inner {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 100%;
}
.story-split--centered .story-split__body {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
}
@media (min-width: 901px) {
  .story-split--centered .story-split__body {
    max-width: 44rem;
  }
}
.story-split--centered .story-split__step {
  display: inline-block;
}
.story-split--closing-split .story-split__inner--closing {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
}
@media (max-width: 900px) {
  .story-split--closing-split .story-split__inner--closing {
    grid-template-columns: 1fr;
  }
}
.story-split__body--closing {
  position: relative;
  text-align: left;
  max-width: 36rem;
  padding-left: 1.1rem;
  margin: 0;
}
.story-split__body--closing::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #ff48ab 0%, #c084fc 55%, #8b5cf6 100%);
}
.story-split--closing-note {
  padding-bottom: clamp(4rem, 10vw, 7rem);
}
.story-split__body--closing-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
  max-width: 42rem;
}
.story-split__body--closing-centered .story-split__step {
  display: inline-block;
}
.story-split__lead--muted {
  font-size: clamp(0.9rem, 1.3vw, 1.02rem);
  line-height: 1.6;
  color: #64748b;
  margin-top: 1.1rem;
}
.story-split__divider {
  border: none;
  height: 2px;
  margin: clamp(1.35rem, 3.5vw, 2.1rem) auto;
  width: min(14rem, 46%);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 72, 171, 0.35) 20%, rgba(139, 92, 246, 0.4) 50%, rgba(255, 107, 196, 0.35) 80%, transparent 100%);
  border-radius: 999px;
}
@media (min-width: 901px) {
  .story-split--reverse .story-split__inner {
    direction: rtl;
  }
  .story-split--reverse .story-split__inner > * {
    direction: ltr;
  }
}
.story-split__media {
  margin: 0;
  overflow: visible;
  background: transparent;
  border: none;
}
@media (max-width: 900px) {
  .story-split__media {
    margin-bottom: clamp(0.35rem, 2vw, 1rem);
  }
}
.story-split__snake-ring {
  position: relative;
  border-radius: clamp(18px, 2.5vw, 28px);
  overflow: hidden;
  filter: drop-shadow(0 14px 36px rgba(15, 23, 42, 0.1)) drop-shadow(0 6px 16px rgba(15, 23, 42, 0.06));
}
.story-split__snake-spin {
  position: absolute;
  inset: -50%;
  z-index: 0;
  background: conic-gradient(from 0deg, #ff48ab 0%, #ff6bc4 18%, #f472b6 36%, #c084fc 54%, #a855f7 72%, #ec4899 88%, #ff48ab 100%);
  animation: story-snake-orbit 5.5s linear infinite;
}
.story-split__media-inner {
  position: relative;
  z-index: 1;
  margin: 3px;
  border-radius: calc(clamp(18px, 2.5vw, 28px) - 3px);
  overflow: hidden;
  background: #eef2f7;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.88);
}
.story-split__media-inner img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
@keyframes story-snake-orbit {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .story-split .story-split__snake-spin {
    animation: none;
    inset: 0;
    transform: none;
    background: linear-gradient(135deg, #ff48ab 0%, #c084fc 50%, #ff6bc4 100%);
  }
}
.story-split__step {
  display: inline-block;
  font-size: clamp(0.68rem, 1.1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ec4899;
  margin-bottom: 0.5rem;
}
.story-split__title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #0f172a;
}
.story-split__lead {
  margin: 0;
  font-size: clamp(0.95rem, 1.45vw, 1.08rem);
  line-height: 1.65;
  color: #475569;
  font-weight: 400;
}
.story-split__lead + .story-split__lead {
  margin-top: 1.05rem;
}
.story-split__accent {
  color: #ff48ab;
  font-weight: 700;
}

.story-closing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.95rem, 2.2vw, 1.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: stretch;
}
@media (max-width: 640px) {
  .story-closing-cards {
    grid-template-columns: 1fr;
  }
}
.story-closing-cards__card {
  margin: 0;
  display: flex;
}
.story-closing-cards__snake-ring {
  --closing-snake-radius: clamp(16px, 2.2vw, 22px);
  position: relative;
  flex: 1;
  display: flex;
  border-radius: var(--closing-snake-radius);
  overflow: hidden;
  isolation: isolate;
  filter: drop-shadow(0 12px 28px rgba(15, 23, 42, 0.07)) drop-shadow(0 4px 14px rgba(139, 92, 246, 0.08)) drop-shadow(0 0 28px rgba(255, 72, 171, 0.12));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}
.story-closing-cards__snake-spin {
  position: absolute;
  inset: -62%;
  z-index: 0;
  will-change: transform;
  border-radius: 35%;
  transition: filter 0.35s ease;
  background: conic-gradient(from 210deg, rgba(99, 102, 241, 0.35) 0deg, #4c1d95 38deg, #a855f7 76deg, #ff48ab 118deg, #ffb8e2 146deg, #ffffff 154deg, #ffe8f4 158deg, #ff48ab 168deg, #ff6bc4 218deg, #c084fc 268deg, #6366f1 310deg, rgba(99, 102, 241, 0.35) 360deg);
  animation: story-snake-orbit 5.2s linear infinite;
}
.story-closing-cards__snake-spin::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: inherit;
  background: radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.55) 0%, transparent 52%);
  opacity: 0.35;
  pointer-events: none;
  mix-blend-mode: soft-light;
}
.story-closing-cards__surface {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 3px;
  padding: clamp(1.05rem, 2.2vw, 1.35rem) clamp(1.05rem, 2vw, 1.25rem);
  border-radius: calc(var(--closing-snake-radius, 18px) - 3px);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, #f8fafc 55%, #f1f5f9 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.98) inset, 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
  min-height: 100%;
}
.story-closing-cards__card:nth-child(1) .story-closing-cards__snake-spin {
  animation-delay: 0s;
}
.story-closing-cards__card:nth-child(2) .story-closing-cards__snake-spin {
  animation-delay: -1.35s;
}
.story-closing-cards__card:nth-child(3) .story-closing-cards__snake-spin {
  animation-delay: -2.65s;
}
.story-closing-cards__card:nth-child(4) .story-closing-cards__snake-spin {
  animation-delay: -4s;
}
.story-closing-cards__card:hover .story-closing-cards__snake-ring {
  transform: translateY(-5px);
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.12)) drop-shadow(0 10px 28px rgba(255, 72, 171, 0.18)) drop-shadow(0 0 36px rgba(167, 139, 250, 0.22));
}
.story-closing-cards__card:hover .story-closing-cards__snake-spin {
  animation-duration: 4.1s;
  filter: saturate(1.12) brightness(1.04);
}
.story-closing-cards__card:focus-within .story-closing-cards__snake-ring {
  outline: 2px solid rgba(255, 72, 171, 0.45);
  outline-offset: 3px;
  border-radius: var(--closing-snake-radius, clamp(16px, 2.2vw, 22px));
}
.story-closing-cards__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: 0.75rem;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #ff48ab 0%, #d946ef 48%, #7c3aed 100%);
  box-shadow: 0 6px 18px rgba(255, 72, 171, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
  flex-shrink: 0;
}
.story-closing-cards__icon svg {
  display: block;
}
.story-closing-cards__title {
  margin: 0 0 0.45rem;
  font-size: clamp(0.92rem, 1.35vw, 1.06rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.22;
  color: #0f172a;
}
.story-closing-cards__text {
  margin: 0;
  font-size: clamp(0.8rem, 1.12vw, 0.9rem);
  line-height: 1.58;
  color: #64748b;
  font-weight: 400;
}
.story-closing-cards__text strong {
  color: #475569;
  font-weight: 700;
}
@media (prefers-reduced-motion: no-preference) {
  .story-closing-cards__icon {
    animation: story-icon-pulse 3.2s ease-in-out infinite;
  }
  .story-closing-cards__card:nth-child(1) .story-closing-cards__icon {
    animation-delay: 0s;
  }
  .story-closing-cards__card:nth-child(2) .story-closing-cards__icon {
    animation-delay: 0.25s;
  }
  .story-closing-cards__card:nth-child(3) .story-closing-cards__icon {
    animation-delay: 0.5s;
  }
  .story-closing-cards__card:nth-child(4) .story-closing-cards__icon {
    animation-delay: 0.75s;
  }
}

@keyframes story-icon-pulse {
  0%, 100% {
    box-shadow: 0 6px 18px rgba(255, 72, 171, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
  }
  50% {
    box-shadow: 0 10px 26px rgba(255, 72, 171, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.28) inset;
  }
}
@media (prefers-reduced-motion: reduce) {
  .story-closing-cards__snake-spin {
    animation: none !important;
    inset: -2px;
    border-radius: 0;
    filter: none !important;
    background: linear-gradient(135deg, #ff48ab 0%, #e879f9 38%, #8b5cf6 68%, #ff6bc4 100%);
  }
  .story-closing-cards__snake-spin::after {
    display: none;
  }
  .story-closing-cards__icon {
    animation: none !important;
  }
  .story-closing-cards__card:hover .story-closing-cards__snake-spin {
    filter: none !important;
  }
}
.hero {
  width: 100%;
  position: relative;
  padding: 0;
  margin: 40px 0 0 0;
  background: #fff;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  box-sizing: border-box;
}
@media (max-width: 968px) {
  .hero {
    min-height: auto;
  }
}
.hero .container {
  padding: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  margin: 0;
  flex: 1;
}
.hero .hero-content {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  padding: 0 3rem;
  align-items: center;
  justify-content: space-between;
  border-radius: 32px;
  margin: 1.5rem;
}
@media (min-width: 969px) {
  .hero .hero-content {
    max-width: calc(100% - 3rem);
  }
}
@media (max-width: 968px) {
  .hero .hero-content {
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    border-radius: 0;
    margin: 0;
  }
}
.hero .hero-image-wrapper {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  min-height: calc(100vh - 3rem);
  z-index: 1;
  animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 32px;
  overflow: hidden;
}
@media (max-width: 968px) {
  .hero .hero-image-wrapper {
    position: absolute;
    min-height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}
.hero .hero-image-wrapper .hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}
@media (max-width: 968px) {
  .hero .hero-image-wrapper .hero-image-container {
    min-height: 100vh;
  }
}
.hero .hero-image-wrapper .hero-image-container .hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}
@media (max-width: 968px) {
  .hero .hero-image-wrapper .hero-image-container .hero-carousel {
    min-height: 100vh;
  }
}
.hero .hero-image-wrapper .hero-image-container .hero-carousel .hero-carousel-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero .hero-image-wrapper .hero-image-container .hero-carousel .hero-carousel-track .hero-carousel-slide {
  width: 33.333%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}
.hero .hero-image-wrapper .hero-image-container .hero-carousel .hero-carousel-track .hero-carousel-slide .hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.hero .hero-image-wrapper .hero-image-container .hero-carousel .hero-carousel-track .hero-carousel-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(255, 72, 168, 0.15) 70%, rgba(255, 107, 196, 0.2) 100%);
  pointer-events: none;
}
@media (max-width: 968px) {
  .hero .hero-image-wrapper .hero-image-container .hero-carousel .hero-carousel-track .hero-carousel-slide::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.8) 100%);
  }
}
.hero .hero-image-wrapper .hero-image-container .hero-carousel-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 30;
  padding: 1rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px 20px 0 0;
  pointer-events: auto;
}
@media (max-width: 968px) {
  .hero .hero-image-wrapper .hero-image-container .hero-carousel-dots {
    padding: 0.875rem 1.25rem;
    gap: 0.45rem;
  }
}
@media (max-width: 768px) {
  .hero .hero-image-wrapper .hero-image-container .hero-carousel-dots {
    padding: 0.75rem 1rem;
    gap: 0.4rem;
  }
}
.hero .hero-image-wrapper .hero-image-container .hero-carousel-dots .carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  outline: none;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}
.hero .hero-image-wrapper .hero-image-container .hero-carousel-dots .carousel-dot.active {
  background: #FF48AB;
  border-color: #FF48AB;
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(255, 72, 168, 0.6);
}
.hero .hero-image-wrapper .hero-image-container .hero-carousel-dots .carousel-dot:hover:not(.active) {
  background: rgba(255, 72, 168, 0.6);
  border-color: rgba(255, 72, 168, 0.9);
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .hero .hero-image-wrapper .hero-image-container .hero-carousel-dots .carousel-dot {
    width: 8px;
    height: 8px;
    border-width: 1.5px;
  }
  .hero .hero-image-wrapper .hero-image-container .hero-carousel-dots .carousel-dot.active {
    width: 24px;
  }
}
.hero .hero-form-overlay {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 520px;
  flex-shrink: 0;
  padding: 2rem 2.5rem 6rem 2.5rem;
  pointer-events: auto;
  animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
  max-height: none;
}
@media (max-width: 1200px) {
  .hero .hero-form-overlay {
    width: 360px;
    padding: 2rem 1.1rem 4.5rem 1.1rem;
  }
}
@media (max-width: 968px) {
  .hero .hero-form-overlay {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 0 1.25rem 3rem 1.25rem;
    align-items: center;
    max-height: none;
  }
}
.hero .hero-form-overlay > div {
  width: 100%;
  max-height: none;
  overflow-y: visible;
  background: linear-gradient(135deg, rgba(255, 72, 168, 0.98) 0%, rgba(255, 107, 196, 0.98) 100%);
  backdrop-filter: blur(30px);
  border-radius: 18px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 30px 80px rgba(255, 72, 168, 0.5), 0 15px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  top: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
@media (max-width: 1200px) {
  .hero .hero-form-overlay > div {
    padding: 1.1rem;
    top: 2rem;
  }
}
@media (max-width: 968px) {
  .hero .hero-form-overlay > div {
    top: 0;
    padding: 1rem;
    max-height: none;
  }
}
.hero .hero-form-overlay > div::-webkit-scrollbar {
  width: 6px;
  background: transparent;
}
.hero .hero-form-overlay > div::-webkit-scrollbar-track {
  background: linear-gradient(135deg, rgba(255, 72, 168, 0.1) 0%, rgba(255, 107, 196, 0.1) 100%);
  border-radius: 10px;
}
.hero .hero-form-overlay > div::-webkit-scrollbar-thumb {
  background: rgba(0, 31, 63, 0.5);
  border-radius: 10px;
  border: none;
}
.hero .hero-form-overlay > div::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 31, 63, 0.7);
}
.hero .hero-form-overlay > div::-webkit-scrollbar-corner {
  background: transparent;
}
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 {
  font-family: "Poppins", sans-serif;
}
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 h2, .hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 h3, .hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 h4 {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 0.35rem !important;
  line-height: 1.2 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}
@media (max-width: 968px) {
  .hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 h2, .hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 h3, .hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 h4 {
    font-size: 1.1rem !important;
    margin-bottom: 0.35rem !important;
  }
}
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 p {
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: 0.75rem !important;
  line-height: 1.45 !important;
  font-style: italic !important;
}
@media (max-width: 968px) {
  .hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 p {
    font-size: 0.8rem !important;
    margin-bottom: 0.65rem !important;
  }
}
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 input[type=text],
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 input[type=email],
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 input[type=tel],
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 textarea,
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 select {
  width: 100% !important;
  padding: 0.55rem 0.75rem !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 10px !important;
  font-size: 0.85rem !important;
  font-family: "Poppins", sans-serif !important;
  transition: all 0.3s ease !important;
  margin-bottom: 0.5rem !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}
@media (max-width: 968px) {
  .hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 input[type=text],
  .hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 input[type=email],
  .hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 input[type=tel],
  .hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 textarea,
  .hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 select {
    padding: 0.5rem 0.7rem !important;
    font-size: 0.8rem !important;
    margin-bottom: 0.45rem !important;
  }
}
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 input[type=text]:focus,
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 input[type=email]:focus,
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 input[type=tel]:focus,
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 textarea:focus,
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 select:focus {
  border-color: #ffffff !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3), 0 6px 20px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-2px) !important;
}
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 button[type=submit],
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 input[type=submit] {
  width: 100% !important;
  padding: 0.7rem 1.15rem !important;
  background: linear-gradient(135deg, #001f3f 0%, #003366 100%) !important;
  color: #fff !important;
  border: 2px solid #ffffff !important;
  border-radius: 50px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  font-family: "Poppins", sans-serif !important;
  margin-top: 0.4rem !important;
  box-shadow: 0 6px 20px rgba(0, 31, 63, 0.4) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}
@media (max-width: 968px) {
  .hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 button[type=submit],
  .hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 input[type=submit] {
    padding: 0.6rem 0.95rem !important;
    font-size: 0.8rem !important;
    margin-top: 0.3rem !important;
  }
}
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 button[type=submit]:hover,
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 input[type=submit]:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 10px 30px rgba(0, 31, 63, 0.6), 0 0 20px rgba(255, 255, 255, 0.3) !important;
  background: linear-gradient(135deg, #003366 0%, #001f3f 100%) !important;
}
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 button[type=submit]:active,
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 input[type=submit]:active {
  transform: translateY(-1px) scale(1) !important;
}
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 label {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: #333 !important;
  margin-bottom: 0.375rem !important;
  display: block !important;
}
@media (max-width: 968px) {
  .hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 label {
    font-size: 0.75rem !important;
    margin-bottom: 0.3rem !important;
  }
}
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 .bricks-form__fieldset {
  margin-bottom: 0.45rem !important;
}
@media (max-width: 968px) {
  .hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 .bricks-form__fieldset {
    margin-bottom: 0.35rem !important;
  }
}
.hero .hero-form-overlay #formulario-site-41d12a136b7f546a2015 .bricks-form__error {
  font-size: 0.75rem !important;
  color: #dc3545 !important;
  margin-top: 0.25rem !important;
}
.hero .hero-right-side {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 3rem 2rem 6rem;
  flex: 1;
  min-height: 100vh;
  pointer-events: none;
}
@media (max-width: 1400px) {
  .hero .hero-right-side {
    padding: 6.5rem 1.25rem 3rem;
  }
}
@media (max-width: 1200px) {
  .hero .hero-right-side {
    padding: 6.5rem 1.25rem 3rem;
  }
}
@media (max-width: 968px) {
  .hero .hero-right-side {
    position: relative;
    padding: 6.5rem 1.25rem 3rem;
    min-height: auto;
    background: transparent;
    justify-content: center;
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  .hero .hero-right-side {
    padding: 6.5rem 1.25rem rem;
  }
}
@media (max-width: 480px) {
  .hero .hero-right-side {
    padding: 6.5rem 1.25rem rem;
  }
}
.hero .hero-right-side .hero-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 650px;
  pointer-events: auto;
}
@media (max-width: 968px) {
  .hero .hero-right-side .hero-text-wrapper {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content {
  opacity: 0;
  position: absolute;
  width: 100%;
  max-width: 650px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  transform: translateX(-30px) scale(0.95);
  visibility: hidden;
  filter: blur(8px);
}
@media (max-width: 968px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content {
    max-width: 100%;
  }
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content.active {
  opacity: 1;
  position: relative;
  pointer-events: all;
  transform: translateX(0) scale(1);
  visibility: visible;
  filter: blur(0);
  transition-delay: 0.15s;
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-title {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 2rem 0;
  letter-spacing: -0.01em;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  animation: slideInTitle 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.25s both;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 968px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-title {
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-align: center;
  }
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-title .highlight {
  color: #FF48AB;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 30px rgba(255, 72, 168, 0.5);
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.25em;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  z-index: -1;
  animation: highlightPulse 2s ease-in-out infinite;
}
@media (max-width: 968px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-title .highlight::after {
    background: rgba(255, 72, 168, 0.25);
  }
}
@media (max-width: 1200px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 968px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 768px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-title {
    font-size: 1.7rem;
  }
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-subtitle {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
  margin: 0 0 2.5rem 0;
  font-family: "Poppins", sans-serif;
  animation: slideInSubtitle 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  max-width: 600px;
}
@media (max-width: 968px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-subtitle {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 100%;
    font-family: "Poppins", sans-serif;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
  }
}
@media (max-width: 480px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-subtitle .hero-price {
  font-weight: 800;
  font-size: 1.2em;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 480px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-subtitle .hero-price {
    font-size: 1.15em;
  }
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-cta {
  margin-bottom: 1.5rem;
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 768px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download {
    gap: 0.75rem;
    justify-content: center;
  }
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .hero-download-badge {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .hero-download-badge:hover {
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .hero-download-badge:active {
  transform: translateY(-2px) scale(1.02);
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .hero-download-badge svg {
  display: block;
  height: 40px;
  width: auto;
}
@media (max-width: 768px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .hero-download-badge svg {
    height: 36px;
  }
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-cta {
  margin: 0 0 2rem 0;
  animation: slideInButton 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.55s both;
}
@media (max-width: 968px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-cta {
    margin-bottom: 1.75rem;
  }
}
@media (max-width: 768px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-cta {
    margin-bottom: 1.5rem;
  }
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-cta .btn-primary {
  background: linear-gradient(135deg, #FF48AB 0%, #ff6bc4 100%);
  color: white;
  border: none;
  padding: 1.125rem 3rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(255, 72, 168, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
  width: fit-content;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-transform: none;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-cta .btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-cta .btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 72, 168, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ff6bc4 0%, #FF48AB 100%);
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-cta .btn-primary:hover::before {
  width: 350px;
  height: 350px;
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-cta .btn-primary:active {
  transform: translateY(-2px) scale(1);
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-cta .btn-primary span {
  position: relative;
  z-index: 1;
}
@media (max-width: 968px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-cta .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
  }
}
@media (max-width: 768px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-cta .btn-primary {
    padding: 0.95rem 2.25rem;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-cta .btn-primary {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download {
  margin: 0;
  animation: slideInBadges 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .app-download-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 0.75rem 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 968px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .app-download-text {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
  }
}
@media (max-width: 768px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .app-download-text {
    font-size: 0.8rem;
  }
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .app-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .app-badges {
    gap: 0.65rem;
  }
}
@media (max-width: 480px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .app-badges {
    gap: 0.5rem;
    justify-content: center;
  }
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .app-badges .app-badge {
  display: inline-block;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .app-badges .app-badge:hover {
  transform: scale(1.05);
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .app-badges .app-badge:active {
  transform: scale(0.98);
}
.hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .app-badges .app-badge svg {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.4));
}
@media (max-width: 968px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .app-badges .app-badge svg {
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.4));
  }
}
@media (max-width: 480px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .app-badges .app-badge svg {
    height: 36px;
  }
}
@media (max-width: 768px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .app-badges .app-badge svg {
    height: 36px;
  }
}
@media (max-width: 480px) {
  .hero .hero-right-side .hero-text-wrapper .hero-text-content .hero-app-download .app-badges .app-badge svg {
    height: 38px;
    width: 100%;
  }
}
.hero .hero-form-wrapper {
  display: none;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInTitle {
  from {
    opacity: 0;
    transform: translateX(-20px) translateY(10px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
    filter: blur(0);
  }
}
@keyframes slideInSubtitle {
  from {
    opacity: 0;
    transform: translateX(-15px) translateY(10px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
    filter: blur(0);
  }
}
@keyframes slideInButton {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes slideInBadges {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes highlightPulse {
  0%, 100% {
    opacity: 0.35;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.5;
    transform: scaleX(1.05);
  }
}
.ticker-section {
  width: 100%;
  background: linear-gradient(135deg, #fef7fb 0%, #fff 100%);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 72, 168, 0.1);
  border-bottom: 1px solid rgba(255, 72, 168, 0.1);
}
.ticker-section::before, .ticker-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ticker-section::before {
  left: 0;
  background: linear-gradient(to right, #fef7fb, transparent);
}
.ticker-section::after {
  right: 0;
  background: linear-gradient(to left, #fef7fb, transparent);
}
.ticker-section .ticker-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.ticker-section .ticker-content {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-section .ticker-content .ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.ticker-section .ticker-content .ticker-item:hover {
  transform: scale(1.05);
}
.ticker-section .ticker-content .ticker-item .ticker-logo {
  height: 32px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.ticker-section .ticker-content .ticker-item .ticker-text {
  font-size: 1rem;
  font-weight: 600;
  color: #11294c;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
}
.ticker-section .ticker-content .ticker-separator {
  color: #FF48AB;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .ticker-section {
    padding: 0.75rem 0;
  }
  .ticker-section .ticker-content {
    gap: 2rem;
    animation-duration: 25s;
  }
  .ticker-section .ticker-content .ticker-item {
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
  }
  .ticker-section .ticker-content .ticker-item .ticker-logo {
    height: 24px;
  }
  .ticker-section .ticker-content .ticker-item .ticker-text {
    font-size: 0.9rem;
  }
  .ticker-section .ticker-content .ticker-separator {
    font-size: 1.2rem;
  }
}
.info-banner {
  width: 100%;
  background: linear-gradient(135deg, #FF48AB 0%, #ff6bc4 100%);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
  border-top: 3px solid rgba(255, 255, 255, 0.2);
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(255, 72, 168, 0.3);
}
.info-banner::before, .info-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.info-banner::before {
  left: 0;
  background: linear-gradient(to right, rgb(255, 72, 168) 0%, transparent 100%);
}
.info-banner::after {
  right: 0;
  background: linear-gradient(to left, rgb(255, 107, 196) 0%, transparent 100%);
}
.info-banner .info-banner-track {
  display: flex;
  width: fit-content;
  animation: scrollBanner 30s linear infinite;
  gap: 0;
}
.info-banner .info-banner-track:hover {
  animation-play-state: paused;
}
.info-banner .info-banner-content {
  display: flex;
  gap: 4rem;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .info-banner .info-banner-content {
    gap: 3rem;
    padding: 0 1.5rem;
  }
}
.info-banner .info-banner-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .info-banner .info-banner-item {
    gap: 0.75rem;
  }
}
.info-banner .info-banner-logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .info-banner .info-banner-logo {
    width: 35px;
    height: 35px;
  }
}
.info-banner .info-banner-text {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .info-banner .info-banner-text {
    font-size: 0.95rem;
  }
}

@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.features {
  width: 100%;
  padding: 6rem 0;
  background: linear-gradient(to bottom, #fff 0%, #fafafa 100%);
  position: relative;
}
@media (max-width: 768px) {
  .features {
    padding: 4rem 0;
  }
}
.features .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.features .features-header {
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .features .features-header {
    margin-bottom: 3rem;
  }
}
.features .features-header .features-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #11294c;
  margin: 0 0 1.5rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.features .features-header .features-title .highlight {
  color: #FF48AB;
  position: relative;
  display: inline-block;
}
.features .features-header .features-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.15em;
  background: rgba(255, 72, 168, 0.3);
  border-radius: 3px;
  z-index: -1;
}
@media (max-width: 968px) {
  .features .features-header .features-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .features .features-header .features-title {
    font-size: 1.75rem;
  }
}
@media (max-width: 480px) {
  .features .features-header .features-title {
    font-size: 1.5rem;
  }
}
.features .features-header .features-subtitle {
  font-size: 1.15rem;
  color: #666;
  margin: 0;
  font-family: "Poppins", sans-serif;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .features .features-header .features-subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .features .features-header .features-subtitle {
    font-size: 0.95rem;
  }
}
.features .features-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
@media (max-width: 968px) {
  .features .features-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
  }
}
.features .features-content .features-image {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.features .features-content .features-image:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}
.features .features-content .features-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 72, 168, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.features .features-content .features-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 450px;
}
@media (max-width: 968px) {
  .features .features-content .features-image img {
    min-height: 350px;
  }
}
@media (max-width: 480px) {
  .features .features-content .features-image img {
    min-height: 280px;
  }
}
@media (max-width: 968px) {
  .features .features-content .features-image {
    order: 1;
  }
}
.features .features-content .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (max-width: 968px) {
  .features .features-content .features-grid {
    order: 2;
  }
}
.features .features-content .features-grid .feature-card {
  background: white;
  padding: 2rem 2.25rem;
  border-radius: 20px;
  border: 2px solid #f5f5f5;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.features .features-content .features-grid .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #FF48AB 0%, #ff6bc4 100%);
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.features .features-content .features-grid .feature-card:hover {
  transform: translateX(8px);
  border-color: rgba(255, 72, 168, 0.3);
  box-shadow: 0 12px 40px rgba(255, 72, 168, 0.12);
  background: linear-gradient(135deg, #fff 0%, #fef7fb 100%);
}
.features .features-content .features-grid .feature-card:hover::before {
  transform: scaleY(1);
}
.features .features-content .features-grid .feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #FF48AB 0%, #ff6bc4 100%);
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(255, 72, 168, 0.3);
}
.features .features-content .features-grid .feature-card:hover h3 {
  color: #FF48AB;
}
.features .features-content .features-grid .feature-card .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fef7fb 0%, #fff0f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #FF48AB;
  box-shadow: 0 4px 12px rgba(255, 72, 168, 0.08);
}
.features .features-content .features-grid .feature-card .feature-icon svg {
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .features .features-content .features-grid .feature-card .feature-icon {
    width: 56px;
    height: 56px;
  }
  .features .features-content .features-grid .feature-card .feature-icon svg {
    width: 28px;
    height: 28px;
  }
}
.features .features-content .features-grid .feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #11294c;
  margin: 0 0 0.875rem;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .features .features-content .features-grid .feature-card h3 {
    font-size: 1.15rem;
  }
}
.features .features-content .features-grid .feature-card p {
  font-size: 0.975rem;
  color: #666;
  margin: 0;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .features .features-content .features-grid .feature-card p {
    font-size: 0.925rem;
  }
}
.features .features-cta {
  text-align: center;
  margin-top: 3rem;
}
.features .features-cta .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #FF48AB 0%, #ff6bc4 100%);
  color: white;
  border: none;
  padding: 1.15rem 3.5rem;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(255, 72, 168, 0.35);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.features .features-cta .cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.features .features-cta .cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255, 72, 168, 0.45);
}
.features .features-cta .cta-button:hover::before {
  width: 400px;
  height: 400px;
}
.features .features-cta .cta-button:active {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .features .features-cta .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .features .features-cta .cta-button {
    padding: 0.95rem 2rem;
    font-size: 0.95rem;
  }
}

.app-section {
  width: 100%;
  padding: 7rem 0;
  background: linear-gradient(135deg, #fff 0%, #fef7fb 100%);
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 72, 168, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.app-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 72, 168, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
@media (max-width: 768px) {
  .app-section {
    padding: 5rem 0;
  }
}
.app-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.app-section .app-header {
  text-align: center;
  margin-bottom: 5rem;
  animation: fadeInUp 0.8s ease-out;
}
@media (max-width: 768px) {
  .app-section .app-header {
    margin-bottom: 3.5rem;
  }
}
.app-section .app-header .app-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #11294c;
  margin: 0 0 1.5rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.app-section .app-header .app-title .highlight {
  color: #FF48AB;
  position: relative;
  display: inline-block;
}
.app-section .app-header .app-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.15em;
  background: rgba(255, 72, 168, 0.3);
  border-radius: 3px;
  z-index: -1;
}
@media (max-width: 968px) {
  .app-section .app-header .app-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .app-section .app-header .app-title {
    font-size: 1.85rem;
  }
}
@media (max-width: 480px) {
  .app-section .app-header .app-title {
    font-size: 1.6rem;
  }
}
.app-section .app-header .app-subtitle {
  font-size: 1.15rem;
  color: #666;
  margin: 0;
  font-family: "Poppins", sans-serif;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .app-section .app-header .app-subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .app-section .app-header .app-subtitle {
    font-size: 0.95rem;
  }
}
.app-section .app-video-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
@media (max-width: 768px) {
  .app-section .app-video-container {
    margin-bottom: 3.5rem;
  }
}
.app-section .app-video-container .app-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.app-section .app-video-container .app-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.app-section .app-content {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 968px) {
  .app-section .app-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.app-section .app-content .app-phone {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInLeft 1s ease-out 0.2s both;
}
@media (max-width: 968px) {
  .app-section .app-content .app-phone {
    order: 1;
    max-width: 450px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s both;
  }
}
.app-section .app-content .app-phone .app-carousel {
  width: 100%;
  max-width: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 4px solid #FF48AB;
  background: #ffffff;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
  box-shadow: 0 10px 40px rgba(255, 72, 168, 0.2);
}
@media (max-width: 768px) {
  .app-section .app-content .app-phone .app-carousel {
    max-width: 320px;
    border-radius: 25px;
    border-width: 3px;
  }
}
@media (max-width: 480px) {
  .app-section .app-content .app-phone .app-carousel {
    max-width: 260px;
    border-radius: 20px;
    border-width: 3px;
  }
}
.app-section .app-content .app-phone .app-carousel .app-carousel-track {
  display: flex;
  width: 400%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.app-section .app-content .app-phone .app-carousel .app-carousel-slide {
  width: 25%;
  flex-shrink: 0;
  position: relative;
}
.app-section .app-content .app-phone .app-carousel .app-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 26px;
}
@media (max-width: 768px) {
  .app-section .app-content .app-phone .app-carousel .app-carousel-slide img {
    border-radius: 22px;
  }
}
@media (max-width: 480px) {
  .app-section .app-content .app-phone .app-carousel .app-carousel-slide img {
    border-radius: 17px;
  }
}
.app-section .app-content .app-phone .app-carousel .app-carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .app-section .app-content .app-phone .app-carousel .app-carousel-dots {
    bottom: 1rem;
    padding: 0.625rem 1rem;
    gap: 0.4rem;
  }
}
.app-section .app-content .app-phone .app-carousel .app-carousel-dots .app-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 72, 168, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  outline: none;
}
.app-section .app-content .app-phone .app-carousel .app-carousel-dots .app-carousel-dot.active {
  background: #FF48AB;
  border-color: #FF48AB;
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(255, 72, 168, 0.6);
}
.app-section .app-content .app-phone .app-carousel .app-carousel-dots .app-carousel-dot:hover:not(.active) {
  background: rgba(255, 72, 168, 0.6);
  border-color: rgba(255, 72, 168, 0.9);
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .app-section .app-content .app-phone .app-carousel .app-carousel-dots .app-carousel-dot {
    width: 8px;
    height: 8px;
    border-width: 1.5px;
  }
  .app-section .app-content .app-phone .app-carousel .app-carousel-dots .app-carousel-dot.active {
    width: 24px;
  }
}
.app-section .app-content .app-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 968px) {
  .app-section .app-content .app-features {
    order: 2;
  }
}
.app-section .app-content .app-features .app-feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: white;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInRight 0.8s ease-out forwards;
}
.app-section .app-content .app-features .app-feature-item:nth-child(1) {
  animation-delay: 0.3s;
}
.app-section .app-content .app-features .app-feature-item:nth-child(2) {
  animation-delay: 0.45s;
}
.app-section .app-content .app-features .app-feature-item:nth-child(3) {
  animation-delay: 0.6s;
}
.app-section .app-content .app-features .app-feature-item:nth-child(4) {
  animation-delay: 0.75s;
}
.app-section .app-content .app-features .app-feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 72, 168, 0.05) 0%, rgba(255, 107, 196, 0.05) 100%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.app-section .app-content .app-features .app-feature-item:hover {
  border-color: rgba(255, 72, 168, 0.3);
  box-shadow: 0 12px 40px rgba(255, 72, 168, 0.12);
  transform: translateX(8px);
}
.app-section .app-content .app-features .app-feature-item:hover::before {
  width: 100%;
}
.app-section .app-content .app-features .app-feature-item:hover .app-feature-number {
  background: linear-gradient(135deg, #FF48AB 0%, #ff6bc4 100%);
  color: white;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 20px rgba(255, 72, 168, 0.3);
}
.app-section .app-content .app-features .app-feature-item:hover h3 {
  color: #FF48AB;
}
@media (max-width: 768px) {
  .app-section .app-content .app-features .app-feature-item {
    padding: 1.5rem;
    gap: 1.25rem;
  }
}
.app-section .app-content .app-features .app-feature-item .app-feature-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fef7fb 0%, #fff0f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: #FF48AB;
  font-family: "Poppins", sans-serif;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(255, 72, 168, 0.15);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .app-section .app-content .app-features .app-feature-item .app-feature-number {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}
.app-section .app-content .app-features .app-feature-item .app-feature-text {
  flex: 1;
  position: relative;
  z-index: 1;
}
.app-section .app-content .app-features .app-feature-item .app-feature-text h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #11294c;
  margin: 0 0 0.5rem;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .app-section .app-content .app-features .app-feature-item .app-feature-text h3 {
    font-size: 1.15rem;
  }
}
.app-section .app-content .app-features .app-feature-item .app-feature-text p {
  font-size: 0.975rem;
  color: #666;
  margin: 0;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .app-section .app-content .app-features .app-feature-item .app-feature-text p {
    font-size: 0.925rem;
  }
}
.app-section .app-content .app-features .app-cta {
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.9s forwards;
}
@media (max-width: 768px) {
  .app-section .app-content .app-features .app-cta {
    text-align: center;
  }
}
.app-section .app-content .app-features .app-cta .app-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #FF48AB 0%, #ff6bc4 100%);
  color: white;
  border: none;
  padding: 1.15rem 3.5rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(255, 72, 168, 0.35);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.app-section .app-content .app-features .app-cta .app-cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.app-section .app-content .app-features .app-cta .app-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255, 72, 168, 0.45);
}
.app-section .app-content .app-features .app-cta .app-cta-button:hover::before {
  width: 400px;
  height: 400px;
}
.app-section .app-content .app-features .app-cta .app-cta-button:active {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .app-section .app-content .app-features .app-cta .app-cta-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .app-section .app-content .app-features .app-cta .app-cta-button {
    padding: 0.95rem 2rem;
    font-size: 0.95rem;
  }
}

@keyframes floatPhone {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(-1deg);
  }
  66% {
    transform: translateY(-20px) rotate(1deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.vets-section {
  width: 100%;
  padding: 7rem 0;
  background: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .vets-section {
    padding: 5rem 0;
  }
}
.vets-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.vets-section .vets-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .vets-section .vets-header {
    margin-bottom: 3.5rem;
  }
}
.vets-section .vets-header .vets-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #11294c;
  margin: 0 0 1.5rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
}
.vets-section .vets-header .vets-title .highlight {
  color: #FF48AB;
  position: relative;
  display: inline-block;
}
.vets-section .vets-header .vets-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.15em;
  background: rgba(255, 72, 168, 0.3);
  border-radius: 3px;
  z-index: -1;
}
@media (max-width: 968px) {
  .vets-section .vets-header .vets-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .vets-section .vets-header .vets-title {
    font-size: 1.85rem;
  }
}
@media (max-width: 480px) {
  .vets-section .vets-header .vets-title {
    font-size: 1.6rem;
  }
}
.vets-section .vets-header .vets-description {
  font-size: 1.15rem;
  color: #666;
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .vets-section .vets-header .vets-description {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .vets-section .vets-header .vets-description {
    font-size: 0.95rem;
  }
}
.vets-section .vets-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 968px) {
  .vets-section .vets-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.vets-section .vets-content .vets-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 968px) {
  .vets-section .vets-content .vets-image {
    order: 2;
  }
}
.vets-section .vets-content .vets-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  display: block;
  border-radius: 24px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.vets-section .vets-content .vets-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .vets-section .vets-content .vets-image img {
    max-width: 100%;
  }
}
.vets-section .vets-content .vets-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 968px) {
  .vets-section .vets-content .vets-list {
    order: 1;
  }
}
.vets-section .vets-content .vets-list .vet-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: linear-gradient(135deg, #fef7fb 0%, #fff 100%);
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.vets-section .vets-content .vets-list .vet-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 72, 168, 0.08) 0%, rgba(255, 107, 196, 0.08) 100%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.vets-section .vets-content .vets-list .vet-item:hover {
  border-color: rgba(255, 72, 168, 0.3);
  box-shadow: 0 12px 40px rgba(255, 72, 168, 0.15);
  transform: translateY(-5px);
}
.vets-section .vets-content .vets-list .vet-item:hover::before {
  width: 100%;
}
.vets-section .vets-content .vets-list .vet-item:hover .vet-icon {
  background: linear-gradient(135deg, #FF48AB 0%, #ff6bc4 100%);
  color: white;
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(255, 72, 168, 0.35);
}
@media (max-width: 768px) {
  .vets-section .vets-content .vets-list .vet-item {
    padding: 1.75rem;
    gap: 1.25rem;
  }
}
.vets-section .vets-content .vets-list .vet-item .vet-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff 0%, #fef7fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF48AB;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(255, 72, 168, 0.15);
  border: 2px solid rgba(255, 72, 168, 0.1);
  position: relative;
  z-index: 1;
}
.vets-section .vets-content .vets-list .vet-item .vet-icon svg {
  width: 28px;
  height: 28px;
}
@media (max-width: 768px) {
  .vets-section .vets-content .vets-list .vet-item .vet-icon {
    width: 48px;
    height: 48px;
  }
  .vets-section .vets-content .vets-list .vet-item .vet-icon svg {
    width: 24px;
    height: 24px;
  }
}
.vets-section .vets-content .vets-list .vet-item p {
  flex: 1;
  font-size: 1.05rem;
  color: #333;
  margin: 0;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .vets-section .vets-content .vets-list .vet-item p {
    font-size: 0.975rem;
  }
}
.vets-section .vets-content .vets-list .vets-cta {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .vets-section .vets-content .vets-list .vets-cta {
    text-align: center;
  }
}
.vets-section .vets-content .vets-list .vets-cta .vets-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #FF48AB 0%, #ff6bc4 100%);
  color: white;
  border: none;
  padding: 1.15rem 3.5rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(255, 72, 168, 0.35);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.vets-section .vets-content .vets-list .vets-cta .vets-cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.vets-section .vets-content .vets-list .vets-cta .vets-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255, 72, 168, 0.45);
}
.vets-section .vets-content .vets-list .vets-cta .vets-cta-button:hover::before {
  width: 400px;
  height: 400px;
}
.vets-section .vets-content .vets-list .vets-cta .vets-cta-button:active {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .vets-section .vets-content .vets-list .vets-cta .vets-cta-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .vets-section .vets-content .vets-list .vets-cta .vets-cta-button {
    padding: 0.95rem 2rem;
    font-size: 0.95rem;
  }
}

.testimonials {
  width: 100%;
  padding: 5rem 0;
  background: #ffffff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 3.5rem 0;
  }
}
.testimonials .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .testimonials .container {
    padding: 0 1.5rem;
  }
}
.testimonials .testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .testimonials .testimonials-header {
    margin-bottom: 3rem;
  }
}
.testimonials .testimonials-header .testimonials-title {
  font-size: 3rem;
  font-weight: 800;
  color: #11294c;
  margin: 0 0 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 968px) {
  .testimonials .testimonials-header .testimonials-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .testimonials .testimonials-header .testimonials-title {
    font-size: 2rem;
  }
}
.testimonials .testimonials-header .testimonials-title .highlight {
  color: #FF48AB;
  position: relative;
}
.testimonials .testimonials-header .testimonials-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.3em;
  background: rgba(255, 72, 168, 0.15);
  border-radius: 4px;
  z-index: -1;
}
.testimonials .testimonials-header .testimonials-subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}
@media (max-width: 768px) {
  .testimonials .testimonials-header .testimonials-subtitle {
    font-size: 1.05rem;
  }
}
.testimonials .testimonials-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 2.5rem;
  overflow: hidden;
}
@media (max-width: 968px) {
  .testimonials .testimonials-slider {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
}
.testimonials .testimonials-slider .testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 968px) {
  .testimonials .testimonials-slider .testimonials-track {
    gap: 8px;
    width: 100%;
  }
}
.testimonials .testimonial-item {
  flex: 0 0 calc(33.333% - 1.34rem);
  background: linear-gradient(135deg, rgb(248, 245, 255) 0%, rgb(243, 240, 255) 100%);
  border-radius: 28px;
  padding: 2.25rem 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 72, 168, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
@media (max-width: 968px) {
  .testimonials .testimonial-item {
    flex: 0 0 100%;
    padding: 2rem 1.75rem;
    min-height: auto;
    width: 100%;
    box-sizing: border-box;
  }
}
.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF48AB 0%, #ff6bc4 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.testimonials .testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(255, 72, 168, 0.18);
  border-color: rgba(255, 72, 168, 0.25);
}
.testimonials .testimonial-item:hover::before {
  opacity: 1;
}
.testimonials .testimonial-item:hover .testimonial-avatar img {
  transform: scale(1.12);
}
.testimonials .testimonial-item .testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 72, 168, 0.25);
  border: 3px solid #ffffff;
  margin-bottom: 1.75rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .testimonials .testimonial-item .testimonial-avatar {
    width: 65px;
    height: 65px;
  }
}
.testimonials .testimonial-item .testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.testimonials .testimonial-item .testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.testimonials .testimonial-item .testimonial-content .testimonial-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.75;
  margin: 0 0 2.25rem;
  font-weight: 400;
  font-style: italic;
  position: relative;
  padding-left: 1.25rem;
}
@media (max-width: 768px) {
  .testimonials .testimonial-item .testimonial-content .testimonial-text {
    font-size: 0.925rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    padding-left: 1rem;
  }
}
.testimonials .testimonial-item .testimonial-content .testimonial-text::before {
  content: '"';
  position: absolute;
  top: -0.35rem;
  left: -0.1rem;
  font-size: 2.75rem;
  color: #FF48AB;
  opacity: 0.25;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  font-weight: 700;
}
@media (max-width: 768px) {
  .testimonials .testimonial-item .testimonial-content .testimonial-text::before {
    font-size: 2.5rem;
  }
}
.testimonials .testimonial-item .testimonial-content .testimonial-meta {
  margin-top: auto;
}
.testimonials .testimonial-item .testimonial-content .testimonial-meta .testimonial-date {
  font-size: 0.75rem;
  color: #999;
  margin: 0 0 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .testimonials .testimonial-item .testimonial-content .testimonial-meta .testimonial-date {
    font-size: 0.7rem;
  }
}
.testimonials .testimonial-item .testimonial-content .testimonial-meta .testimonial-author {
  font-size: 1.1rem;
  font-weight: 700;
  color: #11294c;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .testimonials .testimonial-item .testimonial-content .testimonial-meta .testimonial-author {
    font-size: 1rem;
  }
}
.testimonials .testimonial-item .testimonial-content .testimonial-meta .testimonial-pet {
  font-size: 0.9rem;
  color: #FF48AB;
  margin: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
@media (max-width: 768px) {
  .testimonials .testimonial-item .testimonial-content .testimonial-meta .testimonial-pet {
    font-size: 0.85rem;
  }
}
.testimonials .testimonial-item .testimonial-content .testimonial-meta .testimonial-pet::before {
  content: "🐾";
  font-size: 1em;
}
.testimonials .testimonials-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (max-width: 968px) {
  .testimonials .testimonials-dots {
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
}
.testimonials .testimonials-dots .testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 72, 168, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
@media (max-width: 968px) {
  .testimonials .testimonials-dots .testimonial-dot {
    width: 10px;
    height: 10px;
  }
}
.testimonials .testimonials-dots .testimonial-dot:hover {
  background: rgba(255, 72, 168, 0.6);
  transform: scale(1.2);
}
.testimonials .testimonials-dots .testimonial-dot.active {
  background: #FF48AB;
  width: 32px;
  border-radius: 6px;
}
@media (max-width: 968px) {
  .testimonials .testimonials-dots .testimonial-dot.active {
    width: 24px;
  }
}
.testimonials .testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .testimonials .testimonials-cta {
    margin-top: 2.5rem;
  }
}
.testimonials .testimonials-cta .testimonials-cta-button {
  display: inline-block;
  padding: 1rem 3.5rem;
  background: #FF48AB;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(255, 72, 168, 0.3);
}
@media (max-width: 768px) {
  .testimonials .testimonials-cta .testimonials-cta-button {
    padding: 0.875rem 2.5rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 300px;
  }
}
.testimonials .testimonials-cta .testimonials-cta-button:hover {
  background: #e63990;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 72, 168, 0.4);
}
.testimonials .testimonials-cta .testimonials-cta-button:active {
  transform: translateY(-1px);
}

.faq {
  width: 100%;
  padding: 5rem 0;
  background: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .faq {
    padding: 4rem 0;
  }
}
.faq .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.faq .faq-header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .faq .faq-header {
    margin-bottom: 3rem;
  }
}
.faq .faq-header .faq-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #11294c;
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
}
.faq .faq-header .faq-title .highlight {
  color: #FF48AB;
  position: relative;
  display: inline-block;
}
.faq .faq-header .faq-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.15em;
  background: rgba(255, 72, 168, 0.3);
  border-radius: 3px;
  z-index: -1;
}
@media (max-width: 968px) {
  .faq .faq-header .faq-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .faq .faq-header .faq-title {
    font-size: 1.85rem;
  }
}
@media (max-width: 480px) {
  .faq .faq-header .faq-title {
    font-size: 1.6rem;
  }
}
.faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.faq .faq-list .faq-item {
  background: linear-gradient(135deg, #fef7fb 0%, #fff 100%);
  border-radius: 16px;
  border: 2px solid #f5f5f5;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq .faq-list .faq-item:hover {
  border-color: rgba(255, 72, 168, 0.3);
  box-shadow: 0 8px 24px rgba(255, 72, 168, 0.08);
}
.faq .faq-list .faq-item.active {
  border-color: rgba(255, 72, 168, 0.4);
  box-shadow: 0 8px 24px rgba(255, 72, 168, 0.12);
}
.faq .faq-list .faq-item.active .faq-question {
  color: #FF48AB;
  background: linear-gradient(135deg, rgba(255, 72, 168, 0.08) 0%, rgba(255, 107, 196, 0.08) 100%);
}
.faq .faq-list .faq-item.active .faq-question .faq-icon {
  color: #FF48AB;
  transform: rotate(45deg);
}
.faq .faq-list .faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 2rem 2rem;
  opacity: 1;
}
.faq .faq-list .faq-item .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}
@media (max-width: 768px) {
  .faq .faq-list .faq-item .faq-question {
    padding: 1.5rem 1.5rem;
    gap: 1rem;
  }
}
.faq .faq-list .faq-item .faq-question span {
  flex: 1;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1a;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .faq .faq-list .faq-item .faq-question span {
    font-size: 1.05rem;
  }
}
@media (max-width: 480px) {
  .faq .faq-list .faq-item .faq-question span {
    font-size: 1rem;
  }
}
.faq .faq-list .faq-item .faq-question .faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: #FF48AB;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .faq .faq-list .faq-item .faq-question .faq-icon {
    width: 24px;
    height: 24px;
  }
}
.faq .faq-list .faq-item .faq-question:hover span {
  color: #FF48AB;
}
.faq .faq-list .faq-item .faq-question:hover .faq-icon {
  transform: scale(1.1);
}
.faq .faq-list .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .faq .faq-list .faq-item .faq-answer {
    padding: 0 1.5rem;
  }
}
.faq .faq-list .faq-item .faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .faq .faq-list .faq-item .faq-answer p {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .faq .faq-list .faq-item .faq-answer p {
    font-size: 0.9rem;
  }
}
.faq .faq-cta {
  text-align: center;
}
.faq .faq-cta .faq-cta-button {
  display: inline-block;
  background: transparent;
  color: #FF48AB;
  border: 2px solid #FF48AB;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.faq .faq-cta .faq-cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #FF48AB;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}
.faq .faq-cta .faq-cta-button:hover {
  color: white;
  border-color: #FF48AB;
  box-shadow: 0 8px 24px rgba(255, 72, 168, 0.3);
  transform: translateY(-2px);
}
.faq .faq-cta .faq-cta-button:hover::before {
  width: 400px;
  height: 400px;
}
.faq .faq-cta .faq-cta-button:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .faq .faq-cta .faq-cta-button {
    padding: 0.95rem 2.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .faq .faq-cta .faq-cta-button {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 100%;
  }
}

.contact-form {
  width: 100%;
  padding: 5rem 0;
  background: rgba(220, 200, 240, 0.3);
  overflow: hidden;
}
@media (max-width: 768px) {
  .contact-form {
    padding: 3.5rem 0;
  }
}
.contact-form .container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .contact-form .container {
    padding: 0 1.5rem;
  }
}
.contact-form .contact-form-header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .contact-form .contact-form-header {
    margin-bottom: 2.5rem;
  }
}
.contact-form .contact-form-header .contact-form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #11294c;
  margin: 0 0 1rem;
  line-height: 1.2;
}
@media (max-width: 968px) {
  .contact-form .contact-form-header .contact-form-title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .contact-form .contact-form-header .contact-form-title {
    font-size: 1.75rem;
  }
}
.contact-form .contact-form-header .contact-form-title .highlight {
  color: #FF48AB;
}
.contact-form .contact-form-header .contact-form-subtitle {
  font-size: 1.125rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .contact-form .contact-form-header .contact-form-subtitle {
    font-size: 1rem;
  }
}
.contact-form .contact-form-panel {
  max-width: 720px;
  margin: 0 auto;
  background: #012154;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 8px 32px rgba(1, 33, 84, 0.2);
}
@media (max-width: 768px) {
  .contact-form .contact-form-panel {
    padding: 1.5rem 1.5rem;
  }
}
.contact-form .contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form .contact-form-fields .form-group {
  margin: 0;
}
.contact-form .contact-form-fields .form-group label {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  font-family: "Poppins", sans-serif;
}
.contact-form .contact-form-fields .form-group label .required {
  color: #ff6bc4;
  margin-left: 2px;
}
.contact-form .contact-form-fields .form-group input,
.contact-form .contact-form-fields .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  border: none;
  border-radius: 10px;
  outline: none;
  transition: box-shadow 0.3s ease;
  resize: vertical;
  box-sizing: border-box;
}
.contact-form .contact-form-fields .form-group input::placeholder,
.contact-form .contact-form-fields .form-group textarea::placeholder {
  color: #999;
}
.contact-form .contact-form-fields .form-group input:focus,
.contact-form .contact-form-fields .form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 72, 168, 0.35);
}
.contact-form .contact-form-fields .form-group textarea {
  min-height: 85px;
  max-height: 220px;
}
@media (max-width: 768px) {
  .contact-form .contact-form-fields .form-group textarea {
    min-height: 75px;
  }
}
.contact-form .contact-form-fields .contact-form-submit {
  margin-top: 0.25rem;
  width: 100%;
  padding: 0.875rem 1.75rem;
  background: #FF48AB;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 72, 168, 0.35);
}
.contact-form .contact-form-fields .contact-form-submit:hover {
  background: #ff6bc4;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 72, 168, 0.45);
}
.contact-form .contact-form-fields .contact-form-submit:active {
  transform: translateY(0);
}
.contact-form .whatsapp-form {
  width: 100%;
}
.contact-form .whatsapp-form .form-group {
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .contact-form .whatsapp-form .form-group {
    margin-bottom: 1.25rem;
  }
}
.contact-form .whatsapp-form .form-group input,
.contact-form .whatsapp-form .form-group textarea {
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
  resize: vertical;
}
@media (max-width: 768px) {
  .contact-form .whatsapp-form .form-group input,
  .contact-form .whatsapp-form .form-group textarea {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }
}
.contact-form .whatsapp-form .form-group input::placeholder,
.contact-form .whatsapp-form .form-group textarea::placeholder {
  color: #999;
}
.contact-form .whatsapp-form .form-group input:focus,
.contact-form .whatsapp-form .form-group textarea:focus {
  border-color: #FF48AB;
  box-shadow: 0 0 0 4px rgba(255, 72, 168, 0.1);
}
.contact-form .whatsapp-form .form-group input:invalid:not(:placeholder-shown),
.contact-form .whatsapp-form .form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #ff4444;
}
.contact-form .whatsapp-form .form-group textarea {
  min-height: 150px;
  max-height: 300px;
}
@media (max-width: 768px) {
  .contact-form .whatsapp-form .form-group textarea {
    min-height: 120px;
  }
}
.contact-form .whatsapp-form .contact-form-button {
  width: 100%;
  padding: 1.25rem 2rem;
  background: #FF48AB;
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(255, 72, 168, 0.3);
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .contact-form .whatsapp-form .contact-form-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}
.contact-form .whatsapp-form .contact-form-button:hover {
  background: #e63990;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 72, 168, 0.4);
}
.contact-form .whatsapp-form .contact-form-button:active {
  transform: translateY(-1px);
}
.contact-form .whatsapp-form .contact-form-button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.app-showcase {
  --as-navy: #001f3f;
  --as-pink: #ff48ab;
  --as-pink-bright: #ff6bc4;
  position: relative;
  background: #fff;
}

.app-showcase__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(5.25rem, 10vh, 6.5rem) 0 clamp(1.5rem, 4vh, 2.5rem);
  box-sizing: border-box;
  background: #fff;
}

.app-showcase__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  width: 100%;
}

.app-showcase__copy {
  max-width: 34rem;
}

.app-showcase__kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.app-showcase__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.app-showcase__actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.app-showcase__actions-row--stores {
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
}

.app-showcase__store {
  text-decoration: none;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.62rem 1.05rem;
  font-weight: 700;
  font-family: inherit;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
  min-width: 0;
}

.app-showcase__store-text {
  text-align: left;
  line-height: 1.1;
}

.app-showcase__store-label {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1px;
}

.app-showcase__store-title {
  display: block;
  font-size: 0.92rem;
}

.app-showcase__store-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.app-showcase__store--apple .app-showcase__store-icon {
  width: 26px;
  height: 26px;
}

.app-showcase__store--apple {
  background: linear-gradient(180deg, #ffffff 0%, #fff5fb 100%);
  color: var(--as-navy);
  box-shadow: 0 0 0 1px rgba(255, 72, 171, 0.12), 0 2px 4px rgba(0, 0, 0, 0.1), 0 12px 24px -4px rgba(0, 0, 0, 0.28), inset 0 1px 1px rgb(255, 255, 255), inset 0 -3px 6px rgba(0, 0, 0, 0.06);
}
.app-showcase__store--apple .app-showcase__store-label {
  color: rgba(0, 0, 0, 0.45);
}
.app-showcase__store--apple:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 6px 12px -2px rgba(0, 0, 0, 0.12), 0 20px 32px -6px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgb(255, 255, 255), inset 0 -3px 6px rgba(0, 0, 0, 0.06);
}
.app-showcase__store--apple:active {
  transform: translateY(1px);
}
.app-showcase__store--apple:focus-visible {
  outline: 2px solid var(--as-pink);
  outline-offset: 3px;
}

.app-showcase__store--play {
  background: linear-gradient(180deg, #27272a 0%, #18181b 100%);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 2px 4px rgba(0, 0, 0, 0.6), 0 12px 24px -4px rgba(0, 0, 0, 0.85), inset 0 1px 1px rgba(255, 255, 255, 0.15), inset 0 -3px 6px rgba(0, 0, 0, 0.8);
}
.app-showcase__store--play .app-showcase__store-label {
  color: rgba(255, 255, 255, 0.55);
}
.app-showcase__store--play:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, #3f3f46 0%, #27272a 100%);
}
.app-showcase__store--play:active {
  transform: translateY(1px);
}
.app-showcase__store--play:focus-visible {
  outline: 2px solid var(--as-pink-bright);
  outline-offset: 3px;
}

.app-showcase__store--vet {
  max-width: 15rem;
  background: linear-gradient(180deg, var(--as-pink-bright) 0%, var(--as-pink) 100%);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28), 0 2px 4px rgba(0, 31, 63, 0.12), 0 12px 28px -4px rgba(255, 72, 171, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.35), inset 0 -2px 6px rgba(157, 23, 77, 0.25);
}
.app-showcase__store--vet .app-showcase__store-label {
  color: rgba(255, 255, 255, 0.82);
}
.app-showcase__store--vet .app-showcase__store-title {
  color: #fff;
}
.app-showcase__store--vet:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 6px 14px -2px rgba(255, 72, 171, 0.45), 0 22px 40px -8px rgba(255, 72, 171, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.45), inset 0 -2px 6px rgba(157, 23, 77, 0.2);
}
.app-showcase__store--vet:active {
  transform: translateY(1px);
}
.app-showcase__store--vet:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.app-showcase__store-icon--vet {
  color: #fff;
}

.app-showcase__device {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.app-showcase__perspective {
  perspective: 1180px;
  perspective-origin: 50% 40%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.app-showcase__tilt {
  transform-style: preserve-3d;
  will-change: transform;
  transform-origin: 50% 55%;
}

.app-showcase__phone {
  position: relative;
  width: min(288px, 86vw);
  transform-style: preserve-3d;
}

.app-showcase__bezel {
  position: relative;
  padding: 11px;
  border-radius: 2.65rem;
  background: linear-gradient(148deg, #3a3a3e 0%, #0c0c0e 42%, #1a1a1f 100%);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.38), 0 10px 30px rgba(255, 72, 171, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -2px 6px rgba(0, 0, 0, 0.65);
}

.app-showcase__window {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  background: #f4f0ff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.app-showcase__track {
  display: flex;
  flex-direction: row;
  width: 400%;
  will-change: transform;
}

.app-showcase__slide {
  flex: 0 0 25%;
  width: 25%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 390/844;
}

.app-showcase__island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  width: 34%;
  min-width: 96px;
  height: 28px;
  background: #000;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.65rem;
  box-shadow: inset 0 -1px 2px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.app-showcase__island-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.85);
  animation: app-showcase-pulse 2s ease-in-out infinite;
}

@keyframes app-showcase-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}
.app-showcase__dots-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 9;
  display: flex;
  justify-content: center;
}

.app-showcase__dots-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(255, 72, 171, 0.08);
}

.app-showcase__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--as-pink);
  box-sizing: border-box;
  cursor: default;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.app-showcase__dot.is-active {
  background: var(--as-pink);
  border-color: var(--as-pink);
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .app-showcase__grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .app-showcase__copy > .app-showcase__kicker,
  .app-showcase__copy > .story-split__title,
  .app-showcase__copy > .story-split__lead,
  .app-showcase__copy > [data-app-list-wrap] {
    display: none !important;
  }
  .app-showcase__copy {
    order: 2;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .app-showcase__device {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
    justify-self: center;
  }
  .app-showcase__perspective {
    justify-content: center;
    width: 100%;
  }
  .app-showcase__phone {
    width: min(252px, 78vw);
  }
  .app-showcase__actions {
    align-items: center;
    width: 100%;
    margin-top: 0.35rem;
  }
  .app-showcase__actions-row--stores {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 22rem;
    width: 100%;
    margin: 0 auto;
    gap: 0.5rem;
    padding: 35px 0 0;
  }
  .app-showcase__store--apple {
    order: 1;
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    max-width: calc(50% - 0.25rem);
    justify-content: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .app-showcase__store--play {
    order: 2;
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    max-width: calc(50% - 0.25rem);
    justify-content: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .app-showcase__store--vet {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    justify-content: center;
    margin: 10px 0 0;
  }
  .app-showcase__store {
    justify-content: center;
  }
}
.cta-pet {
  width: 100%;
  padding: 7rem 0;
  background: linear-gradient(135deg, #fef7fb 0%, #fff0f8 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cta-pet {
    padding: 5rem 0;
  }
}
.cta-pet .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cta-pet .cta-pet-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 968px) {
  .cta-pet .cta-pet-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 968px) {
  .cta-pet .cta-pet-content .cta-pet-text {
    order: 2;
    text-align: center;
  }
}
.cta-pet .cta-pet-content .cta-pet-text .cta-pet-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #11294c;
  margin: 0 0 1rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
}
.cta-pet .cta-pet-content .cta-pet-text .cta-pet-title .highlight {
  color: #FF48AB;
  position: relative;
  display: inline-block;
}
.cta-pet .cta-pet-content .cta-pet-text .cta-pet-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.15em;
  background: rgba(255, 72, 168, 0.3);
  border-radius: 3px;
  z-index: -1;
}
@media (max-width: 968px) {
  .cta-pet .cta-pet-content .cta-pet-text .cta-pet-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .cta-pet .cta-pet-content .cta-pet-text .cta-pet-title {
    font-size: 1.85rem;
  }
}
@media (max-width: 480px) {
  .cta-pet .cta-pet-content .cta-pet-text .cta-pet-title {
    font-size: 1.6rem;
  }
}
.cta-pet .cta-pet-content .cta-pet-text .cta-pet-subtitle {
  font-size: 1.35rem;
  color: #FF48AB;
  margin: 0 0 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .cta-pet .cta-pet-content .cta-pet-text .cta-pet-subtitle {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .cta-pet .cta-pet-content .cta-pet-text .cta-pet-subtitle {
    font-size: 1.1rem;
  }
}
.cta-pet .cta-pet-content .cta-pet-text .cta-pet-description {
  font-size: 1.05rem;
  color: #666;
  margin: 0 0 2.5rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .cta-pet .cta-pet-content .cta-pet-text .cta-pet-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px) {
  .cta-pet .cta-pet-content .cta-pet-text .cta-pet-description {
    font-size: 0.95rem;
  }
}
.cta-pet .cta-pet-content .cta-pet-text .cta-pet-button {
  display: inline-block;
  background: linear-gradient(135deg, #FF48AB 0%, #ff6bc4 100%);
  color: white;
  border: none;
  padding: 1.25rem 3.5rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(255, 72, 168, 0.35);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.cta-pet .cta-pet-content .cta-pet-text .cta-pet-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.cta-pet .cta-pet-content .cta-pet-text .cta-pet-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255, 72, 168, 0.45);
}
.cta-pet .cta-pet-content .cta-pet-text .cta-pet-button:hover::before {
  width: 400px;
  height: 400px;
}
.cta-pet .cta-pet-content .cta-pet-text .cta-pet-button:active {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .cta-pet .cta-pet-content .cta-pet-text .cta-pet-button {
    padding: 1.1rem 2.75rem;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .cta-pet .cta-pet-content .cta-pet-text .cta-pet-button {
    padding: 1rem 2.25rem;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
  }
}
.cta-pet .cta-pet-content .cta-pet-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 968px) {
  .cta-pet .cta-pet-content .cta-pet-image {
    order: 1;
  }
}
.cta-pet .cta-pet-content .cta-pet-image img {
  width: 100%;
  max-width: 380px;
  height: 100%;
  max-height: 450px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(255, 72, 168, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.cta-pet .cta-pet-content .cta-pet-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 24px 70px rgba(255, 72, 168, 0.25);
}
@media (max-width: 968px) {
  .cta-pet .cta-pet-content .cta-pet-image img {
    max-width: 100%;
    max-height: none;
    height: auto;
  }
}

.download-app {
  width: 100%;
  padding: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.download-app .container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.download-app .container img {
  width: 100%;
  height: auto;
  display: block;
}
.download-app .container .footer-image-desktop {
  display: block;
}
@media (max-width: 768px) {
  .download-app .container .footer-image-desktop {
    display: none;
  }
}
.download-app .container .footer-image-mobile {
  display: none;
}
@media (max-width: 768px) {
  .download-app .container .footer-image-mobile {
    display: block;
  }
}
.download-app .download-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 968px) {
  .download-app .download-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.download-app .download-content .download-text {
  color: white;
}
.download-app .download-content .download-text .download-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1.5rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.25;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.download-app .download-content .download-text .download-title .highlight {
  color: #001f3f;
  background: white;
  padding: 0 0.3em;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}
@media (max-width: 968px) {
  .download-app .download-content .download-text .download-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .download-app .download-content .download-text .download-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .download-app .download-content .download-text .download-title {
    font-size: 1.75rem;
  }
}
.download-app .download-content .download-text .download-subtitle {
  font-size: 1.375rem;
  color: white;
  margin: 0 0 1.25rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .download-app .download-content .download-text .download-subtitle {
    font-size: 1.25rem;
  }
}
@media (max-width: 480px) {
  .download-app .download-content .download-text .download-subtitle {
    font-size: 1.125rem;
  }
}
.download-app .download-content .download-text .download-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 3rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .download-app .download-content .download-text .download-description {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 480px) {
  .download-app .download-content .download-text .download-description {
    font-size: 1rem;
  }
}
.download-app .download-content .download-text .download-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .download-app .download-content .download-text .download-badges {
    gap: 0.75rem;
  }
}
.download-app .download-content .download-text .download-badges .download-badge {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}
.download-app .download-content .download-text .download-badges .download-badge:hover {
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}
.download-app .download-content .download-text .download-badges .download-badge:active {
  transform: translateY(-2px) scale(1.02);
}
.download-app .download-content .download-text .download-badges .download-badge svg {
  display: block;
  height: 40px;
  width: auto;
}
@media (max-width: 480px) {
  .download-app .download-content .download-text .download-badges .download-badge svg {
    height: 36px;
    width: 100%;
  }
}
.download-app .download-content .download-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatApp 6s ease-in-out infinite;
}
@media (max-width: 968px) {
  .download-app .download-content .download-image {
    order: 1;
    max-width: 450px;
    margin: 0 auto;
  }
}
.download-app .download-content .download-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
}
@media (max-width: 768px) {
  .download-app .download-content .download-image img {
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .download-app .download-content .download-image img {
    max-width: 320px;
  }
}

@keyframes floatApp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.veterinarians {
  width: 100%;
  padding: 5rem 0;
  background: #ffffff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .veterinarians {
    padding: 3.5rem 0;
  }
}
.veterinarians .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .veterinarians .container {
    padding: 0 1.5rem;
  }
}
.veterinarians .veterinarians-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .veterinarians .veterinarians-header {
    margin-bottom: 2.5rem;
  }
}
.veterinarians .veterinarians-header .veterinarians-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 72, 168, 0.1);
  color: #FF48AB;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .veterinarians .veterinarians-header .veterinarians-label {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}
.veterinarians .veterinarians-header .veterinarians-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #11294c;
  margin: 0 0 1rem;
  line-height: 1.2;
}
@media (max-width: 968px) {
  .veterinarians .veterinarians-header .veterinarians-title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .veterinarians .veterinarians-header .veterinarians-title {
    font-size: 1.75rem;
  }
}
.veterinarians .veterinarians-header .veterinarians-title .highlight {
  color: #FF48AB;
}
.veterinarians .veterinarians-header .veterinarians-subtitle {
  font-size: 1.125rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .veterinarians .veterinarians-header .veterinarians-subtitle {
    font-size: 1rem;
  }
}
.veterinarians .veterinarians-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .veterinarians .veterinarians-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .veterinarians .veterinarians-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.veterinarians .vet-card {
  background: rgba(220, 200, 240, 0.3);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 768px) {
  .veterinarians .vet-card {
    padding: 1.75rem 1.25rem;
  }
}
.veterinarians .vet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(220, 200, 240, 0.5);
}
.veterinarians .vet-card:hover .vet-image img {
  transform: scale(1.05);
}
.veterinarians .vet-card .vet-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background: #f8f8f8;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .veterinarians .vet-card .vet-image {
    width: 130px;
    height: 130px;
  }
}
.veterinarians .vet-card .vet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.veterinarians .vet-card .vet-info {
  width: 100%;
}
.veterinarians .vet-card .vet-info .vet-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}
.veterinarians .vet-card .vet-info .vet-rating svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.veterinarians .vet-card .vet-info .vet-rating span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #11294c;
}
.veterinarians .vet-card .vet-info .vet-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #11294c;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .veterinarians .vet-card .vet-info .vet-name {
    font-size: 1.125rem;
  }
}
.veterinarians .vet-card .vet-info .vet-specialty {
  font-size: 0.95rem;
  color: #FF48AB;
  font-weight: 600;
  margin: 0 0 0.25rem;
}
@media (max-width: 768px) {
  .veterinarians .vet-card .vet-info .vet-specialty {
    font-size: 0.9rem;
  }
}
.veterinarians .vet-card .vet-info .vet-crmv {
  font-size: 0.875rem;
  color: #888;
  margin: 0;
}
@media (max-width: 768px) {
  .veterinarians .vet-card .vet-info .vet-crmv {
    font-size: 0.8rem;
  }
}

.differences {
  width: 100%;
  padding: 5rem 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .differences {
    padding: 3.5rem 0;
  }
}
.differences .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .differences .container {
    padding: 0 1.5rem;
  }
}
.differences .differences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 968px) {
  .differences .differences-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .differences .differences-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.differences .difference-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.differences .difference-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 72, 168, 0.2);
}
@media (max-width: 768px) {
  .differences .difference-card {
    padding: 1.75rem;
  }
}
.differences .difference-card .difference-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.differences .difference-card .difference-header .difference-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #11294c;
  margin: 0;
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .differences .difference-card .difference-header .difference-title {
    font-size: 1.375rem;
  }
}
.differences .difference-card .difference-header .difference-badge {
  background: linear-gradient(135deg, rgba(255, 72, 168, 0.1) 0%, rgba(255, 72, 168, 0.05) 100%);
  color: #FF48AB;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
  border: 1px solid rgba(255, 72, 168, 0.2);
  align-self: flex-start;
}
.differences .difference-card .difference-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .differences .difference-card .difference-description {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}

.footer {
  width: 100%;
  background: #ffffff;
  padding: 3rem 0 0;
  font-family: "Poppins", sans-serif;
  border-top: 1px solid #e5e5e5;
}
.footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .footer .container {
    padding: 0 1.5rem;
  }
}
.footer .footer-main {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 1024px) {
  .footer .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .footer .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .footer .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer .footer-main .footer-brand .footer-logo {
  margin-bottom: 0;
}
.footer .footer-main .footer-brand .footer-logo img {
  height: 20px;
  width: auto;
}
@media (max-width: 768px) {
  .footer .footer-main .footer-brand .footer-logo img {
    height: 60px;
  }
}
.footer .footer-main .footer-column h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #11294c;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .footer .footer-main .footer-column h4 {
    font-size: 0.9rem;
    margin-bottom: 0.875rem;
  }
}
.footer .footer-main .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-main .footer-column ul li {
  margin-bottom: 0.6rem;
}
.footer .footer-main .footer-column ul li:last-child {
  margin-bottom: 0;
}
.footer .footer-main .footer-column ul li a {
  font-size: 0.875rem;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}
@media (max-width: 768px) {
  .footer .footer-main .footer-column ul li a {
    font-size: 0.85rem;
  }
}
.footer .footer-main .footer-column ul li a:hover {
  color: #FF48AB;
}
.footer .footer-main .footer-download h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #11294c;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .footer .footer-main .footer-download h4 {
    font-size: 0.9rem;
    margin-bottom: 0.875rem;
  }
}
.footer .footer-main .footer-download .footer-app-badges {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
}
@media (max-width: 768px) {
  .footer .footer-main .footer-download .footer-app-badges {
    gap: 0.5rem;
  }
}
.footer .footer-main .footer-download .footer-app-badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.footer .footer-main .footer-download .footer-app-badges a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.footer .footer-main .footer-download .footer-app-badges a svg {
  width: 50px;
  height: 50px;
  display: block;
}
@media (max-width: 768px) {
  .footer .footer-main .footer-download .footer-app-badges a svg {
    width: 45px;
    height: 45px;
  }
}
.footer .footer-reward-section {
  padding: 1.5rem 0;
}
.footer .footer-reward-section .container {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .footer .footer-reward-section .container {
    justify-content: center;
  }
}
.footer .footer-reward-section .footer-reward-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: #FF48AB;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 16px rgba(255, 72, 168, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .footer .footer-reward-section .footer-reward-button {
    padding: 0.75rem 1.25rem;
    gap: 0.65rem;
  }
}
.footer .footer-reward-section .footer-reward-button .reward-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  line-height: 1.3;
  text-align: left;
  font-weight: 500;
}
@media (max-width: 768px) {
  .footer .footer-reward-section .footer-reward-button .reward-text {
    font-size: 0.8rem;
  }
}
.footer .footer-reward-section .footer-reward-button .reward-text strong {
  font-size: 1.1rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .footer .footer-reward-section .footer-reward-button .reward-text strong {
    font-size: 1rem;
  }
}
.footer .footer-reward-section .footer-reward-button .reward-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  stroke: white;
}
@media (max-width: 768px) {
  .footer .footer-reward-section .footer-reward-button .reward-icon {
    width: 24px;
    height: 24px;
  }
}
.footer .footer-reward-section .footer-reward-button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(255, 72, 168, 0.5);
}
.footer .footer-reward-section .footer-reward-button:active {
  transform: translateY(-1px) scale(1.01);
}
.footer .footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding: 1.25rem 0;
}
.footer .footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 968px) {
  .footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}
.footer .footer-bottom .footer-bottom-content .footer-social-bottom {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.footer .footer-bottom .footer-bottom-content .footer-social-bottom a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content .footer-social-bottom a {
    width: 36px;
    height: 36px;
  }
}
.footer .footer-bottom .footer-bottom-content .footer-social-bottom a svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content .footer-social-bottom a svg {
    width: 18px;
    height: 18px;
  }
}
.footer .footer-bottom .footer-bottom-content .footer-social-bottom a:nth-child(1) {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}
.footer .footer-bottom .footer-bottom-content .footer-social-bottom a:nth-child(1):hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(240, 148, 51, 0.4);
}
.footer .footer-bottom .footer-bottom-content .footer-social-bottom a:nth-child(2) {
  background: #1877f2;
  color: white;
}
.footer .footer-bottom .footer-bottom-content .footer-social-bottom a:nth-child(2):hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}
.footer .footer-bottom .footer-bottom-content .footer-social-bottom a:nth-child(3) {
  background: #0077b5;
  color: white;
}
.footer .footer-bottom .footer-bottom-content .footer-social-bottom a:nth-child(3):hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}
.footer .footer-bottom .footer-bottom-content .footer-social-bottom a:nth-child(4) {
  background: #ff0000;
  color: white;
}
.footer .footer-bottom .footer-bottom-content .footer-social-bottom a:nth-child(4):hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}
.footer .footer-bottom .footer-bottom-content .footer-info {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content .footer-info {
    font-size: 0.75rem;
  }
}
.footer .footer-bottom .footer-bottom-content .footer-info .footer-name {
  font-size: 1rem;
  font-weight: 600;
  color: #FF48AB;
  display: block;
  margin-bottom: 0.1rem;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content .footer-info .footer-name {
    font-size: 0.95rem;
  }
}
.footer .footer-bottom .footer-bottom-content .footer-info .footer-role {
  font-size: 0.85rem;
  color: #888;
  display: block;
  margin-bottom: 0.1rem;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content .footer-info .footer-role {
    font-size: 0.8rem;
  }
}
.footer .footer-bottom .footer-bottom-content .footer-info .footer-crmv {
  font-size: 0.8rem;
  color: #888;
  display: block;
  margin-bottom: 0.1rem;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content .footer-info .footer-crmv {
    font-size: 0.75rem;
  }
}
.footer .footer-bottom .footer-bottom-content .footer-info .footer-email {
  font-size: 0.8rem;
  color: #888;
  display: inline-block;
  text-decoration: none;
}
.footer .footer-bottom .footer-bottom-content .footer-info .footer-email:hover {
  color: #FF48AB;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content .footer-info .footer-email {
    font-size: 0.75rem;
  }
}
.footer .footer-bottom .footer-bottom-content .footer-links {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .footer .footer-bottom .footer-bottom-content .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.footer .footer-bottom .footer-bottom-content .footer-links a {
  font-size: 0.8rem;
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content .footer-links a {
    font-size: 0.75rem;
  }
}
.footer .footer-bottom .footer-bottom-content .footer-links a:hover {
  color: #FF48AB;
}
.footer .footer-bottom .footer-bottom-content .footer-reward-button {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.35rem;
  background: linear-gradient(135deg, #00D9A3 0%, #00C28E 100%);
  border: 2px solid #00D9A3;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 217, 163, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content .footer-reward-button {
    padding: 0.65rem 1.15rem;
    gap: 0.55rem;
  }
}
@media (max-width: 480px) {
  .footer .footer-bottom .footer-bottom-content .footer-reward-button {
    width: 100%;
    justify-content: center;
  }
}
.footer .footer-bottom .footer-bottom-content .footer-reward-button .reward-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  line-height: 1.25;
  text-align: left;
  font-weight: 500;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content .footer-reward-button .reward-text {
    font-size: 0.75rem;
  }
}
.footer .footer-bottom .footer-bottom-content .footer-reward-button .reward-text strong {
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content .footer-reward-button .reward-text strong {
    font-size: 0.9rem;
  }
}
.footer .footer-bottom .footer-bottom-content .footer-reward-button .reward-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: white;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content .footer-reward-button .reward-icon {
    width: 22px;
    height: 22px;
  }
}
.footer .footer-bottom .footer-bottom-content .footer-reward-button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 217, 163, 0.4);
}
.footer .footer-bottom .footer-bottom-content .footer-reward-button:active {
  transform: translateY(-1px) scale(1.01);
}

.discount-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.discount-modal.active {
  display: flex;
}
.discount-modal .discount-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.discount-modal .discount-modal-content {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  z-index: 1;
}
@media (max-width: 768px) {
  .discount-modal .discount-modal-content {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
}
.discount-modal .discount-modal-content .discount-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.discount-modal .discount-modal-content .discount-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}
.discount-modal .discount-modal-content .discount-modal-header {
  text-align: center;
  margin-bottom: 2rem;
}
.discount-modal .discount-modal-content .discount-modal-header .discount-icon {
  margin: 0 auto 1rem;
  display: block;
}
.discount-modal .discount-modal-content .discount-modal-header .discount-modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #11294c;
  margin: 0 0 0.5rem;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .discount-modal .discount-modal-content .discount-modal-header .discount-modal-title {
    font-size: 1.75rem;
  }
}
.discount-modal .discount-modal-content .discount-modal-header .discount-modal-subtitle {
  font-size: 1.125rem;
  color: #666;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .discount-modal .discount-modal-content .discount-modal-header .discount-modal-subtitle {
    font-size: 1rem;
  }
}
.discount-modal .discount-modal-content .discount-modal-body .discount-modal-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .discount-modal .discount-modal-content .discount-modal-body .discount-modal-description {
    font-size: 0.95rem;
  }
}
.discount-modal .discount-modal-content .discount-modal-body .discount-coupon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(255, 72, 168, 0.1) 0%, rgba(255, 72, 168, 0.05) 100%);
  border: 2px solid #FF48AB;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  gap: 1rem;
}
@media (max-width: 768px) {
  .discount-modal .discount-modal-content .discount-modal-body .discount-coupon {
    flex-direction: column;
    padding: 1rem;
  }
}
.discount-modal .discount-modal-content .discount-modal-body .discount-coupon .coupon-code {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF48AB;
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .discount-modal .discount-modal-content .discount-modal-body .discount-coupon .coupon-code {
    font-size: 1.25rem;
  }
}
.discount-modal .discount-modal-content .discount-modal-body .discount-coupon .coupon-copy-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #FF48AB;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  text-transform: none;
}
@media (max-width: 768px) {
  .discount-modal .discount-modal-content .discount-modal-body .discount-coupon .coupon-copy-btn {
    width: 100%;
    justify-content: center;
    padding: 0.625rem 1.25rem;
  }
}
.discount-modal .discount-modal-content .discount-modal-body .discount-coupon .coupon-copy-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}
.discount-modal .discount-modal-content .discount-modal-body .discount-coupon .coupon-copy-btn:hover {
  background: #e63990;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 72, 168, 0.4);
}
.discount-modal .discount-modal-content .discount-modal-body .discount-coupon .coupon-copy-btn:active {
  transform: translateY(0);
}
.discount-modal .discount-modal-content .discount-modal-body .discount-coupon .coupon-copy-btn.copied {
  background: #10b981;
}
.discount-modal .discount-modal-content .discount-modal-body .discount-coupon .coupon-copy-btn.copied:hover {
  background: #059669;
}
.discount-modal .discount-modal-content .discount-modal-body .coupon-copied-message {
  text-align: center;
  font-size: 0.875rem;
  color: #10b981;
  font-weight: 600;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: "Poppins", sans-serif;
}
.discount-modal .discount-modal-content .discount-modal-body .coupon-copied-message.show {
  opacity: 1;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 10050;
}
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
.floating-buttons .whatsapp-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  animation: pulseWhatsApp 2s ease-in-out infinite;
}
.floating-buttons .whatsapp-button svg {
  width: 32px;
  height: 32px;
}
.floating-buttons .whatsapp-button:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  animation: none;
}
.floating-buttons .whatsapp-button:active {
  transform: translateY(-2px) scale(1.05);
}
@media (max-width: 768px) {
  .floating-buttons .whatsapp-button {
    width: 56px;
    height: 56px;
  }
  .floating-buttons .whatsapp-button svg {
    width: 28px;
    height: 28px;
  }
}

.scroll-top-button {
  position: relative;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF48AB 0%, #ff6bc4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 72, 168, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 1;
}
.scroll-top-button.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-button svg {
  width: 24px;
  height: 24px;
}
.scroll-top-button:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 72, 168, 0.6);
}
.scroll-top-button:active {
  transform: translateY(-2px) scale(1.05);
}
@media (max-width: 768px) {
  .scroll-top-button {
    width: 46px;
    height: 46px;
  }
  .scroll-top-button svg {
    width: 22px;
    height: 22px;
  }
}

@keyframes pulseWhatsApp {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}
.cinematic-hero,
.cinematic-hero::before,
.cinematic-hero::after {
  display: none !important;
}

.app-section-simple {
  display: block !important;
  background: #fff !important;
  padding: 2.5rem 0 !important;
}

.app-section-simple__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.app-section-simple__media img {
  width: min(320px, 100%);
  height: auto;
  display: block;
  margin: 0 auto;
}

.app-section-simple__list {
  margin: 1rem 0 1.25rem;
  padding-left: 1.1rem;
}

.app-section-simple__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.app-section-simple__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #d7dce5;
}

.app-section-simple__btn--light {
  background: #fff;
  color: #1f2d45;
}

.app-section-simple__btn--dark {
  background: #1f2d45;
  color: #fff;
  border-color: #1f2d45;
}

@media (max-width: 900px) {
  .app-section-simple__inner {
    grid-template-columns: 1fr;
  }
}
.simple-page-intro {
  background: #fff;
  padding: 2rem 0 1rem;
}

.simple-page-intro__inner {
  text-align: center;
}

.simple-page-intro__breadcrumb-list {
  list-style: none;
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  color: #6b7280;
  font-size: 0.82rem;
  margin: 0 0 0.8rem;
  padding: 0;
}

.simple-page-intro__breadcrumb-list a {
  color: #374151;
  text-decoration: none;
}

.simple-page-intro__title {
  color: #0f172a;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0;
}

/*# sourceMappingURL=style.css.map */
