

:root {
  
  --bg: #0b0b0b;
  --card: rgba(18, 18, 18, 0.55);
  --card-border: rgba(255, 255, 255, 0.10);
  --text: #f5f5f7;
  
  --muted: #86868b;
  
  --text-dark: #1d1d1f;
  
  --muted-dark: #86868b;
  
  --white: #ffffff;
  --ink: #1a1a1a;
  --ink-muted: rgba(26, 26, 26, 0.65);
  --green: #2f6b46;
  --track: rgba(47, 107, 70, 0.18);
  --pill-border: rgba(26, 26, 26, 0.55);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --radius: 26px;
  --control-radius: 10px;
  --measure-title-intro: 30ch;
  --measure-copy-intro: 35ch;
  --measure-note-intro: 39ch;

  
  --space-0: 0;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;

  
  --max-width-desktop: 1200px;
  --margin-mobile: 16px;
}



.hero {
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.038em;
  font-weight: 600;
  max-width: 26ch;
}

.h1 {
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.034em;
  font-weight: 600;
}

.h2 {
  font-size: 17px;
  line-height: 1.22;
  letter-spacing: -0.032em;
  font-weight: 600;
}

.sub {
  font-size: 15px;
  line-height: 1.32;
  letter-spacing: -0.026em;
  font-weight: 500;
  color: #6e6e73;
}

.body {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.010em;
  font-weight: 400;
  max-width: 36ch;
}

.body-small {
  font-size: 14px;
  line-height: 1.38;
  letter-spacing: -0.008em;
  font-weight: 400;
  color: #6e6e73;
}

.caption {
  font-size: 12px;
  line-height: 1.34;
  letter-spacing: -0.004em;
  font-weight: 400;
  color: #6e6e73;
}

.body-small-italic {
  font-size: 14px;
  line-height: 1.38;
  letter-spacing: -0.014em;
  font-weight: 400;
  color: #6e6e73;
  font-style: italic;
}

.button-label {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero {
    font-size: 32px;
  }

  .h1 {
    font-size: 26px;
  }

  .h2 {
    font-size: 20px;
  }

  .sub {
    font-size: 17px;
  }
}


.stack-8 {
  gap: 8px;
}

.stack-12 {
  gap: 12px;
}

.stack-16 {
  gap: 16px;
}

.stack-20 {
  gap: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-optical-sizing: auto;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  color: var(--text);
}


.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  filter: saturate(1.05) contrast(1.02);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.50) 35%,
      rgba(0, 0, 0, 0.62) 100%);
  pointer-events: none;
}


.app {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: calc(env(safe-area-inset-top) + 18px) 16px calc(env(safe-area-inset-bottom) + 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shell {
  width: 100%;
  max-width: 520px;
}


.card {
  width: 100%;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-align: center;
}

.brand img {
  width: 236px;
  max-width: 58vw;
  height: auto;
  opacity: 0.96;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55));
}

.brand h1 {
  margin: 6px 0 0;
  text-align: center;
}

.brand p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}


.intro-brand-title {
  max-width: var(--measure-title-intro);
  margin-left: auto;
  margin-right: auto;
}

.intro-brand-copy {
  max-width: var(--measure-copy-intro);
  margin-left: auto;
  margin-right: auto;
}

.intro-top-logo {
  width: 100%;
  max-width: 80%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.intro-top-sub {
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

.field {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.input {
  width: 100%;
  border-radius: var(--control-radius);
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  padding: 16px var(--space-2);
  
  outline: none;
  min-height: 44px;
  
  font-size: 16px;
  letter-spacing: -0.014em;
}

.input::placeholder {
  color: rgba(242, 242, 242, 0.60);
  letter-spacing: -0.014em;
}


.cta {
  border-radius: var(--control-radius);
  border: none;
  width: 100%;
  background: #606c4b;
  color: white;
  font-weight: 500;
  text-align: center;
  box-shadow: 0px 14px 56px -11px #606c4b;
  padding: 1em;
  transition: all 0.4s;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  min-height: 48px;
}

.cta:hover {
  transform: translateY(1px) scale(0.995);
}


.note {
  margin-top: var(--space-2);
  color: rgba(242, 242, 242, 0.75);
  text-align: center;
  font-size: 14px;
  line-height: 1.38;
  letter-spacing: -0.014em;
  font-style: italic;
  max-width: var(--measure-note-intro);
  margin-left: auto;
  margin-right: auto;
}


.page {
  width: 100%;
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  padding: 28px 22px;
  min-height: 78svh;
  display: none;
  overflow: hidden;
}

.page.is-active {
  display: block;
}

.topline {
  font-size: 12px;
  line-height: 1.34;
  letter-spacing: 0.28em;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(242, 242, 242, 0.62);
  margin-bottom: 12px;
}

.qtitle {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.22;
  letter-spacing: -0.032em;
  font-weight: 600;
  color: var(--text);
}

.progress {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #e6e9e6;
  overflow: hidden;
  margin: 8px 0 24px;
}

.progress>div {
  height: 100%;
  width: 0%;
  background: #606c4b;
  
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  

  
  box-shadow: 0px 0px 15px -2px #606c4b;
  animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0px 0px 10px -4px #606c4b;
    filter: brightness(1);
  }

  50% {
    box-shadow: 0px 0px 20px 4px #606c4b;
    filter: brightness(1.2);
  }

  100% {
    box-shadow: 0px 0px 10px -4px #606c4b;
    filter: brightness(1);
  }
}


.question-enter {
  animation: fadeInUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.qtext {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.22;
  letter-spacing: -0.032em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  max-width: 40ch;
}

.qtext .soft {
  display: block;
  color: rgba(26, 26, 26, 0.50);
  font-weight: 600;
  margin-bottom: 6px;
}

.qtext strong {
  font-weight: 700;
}

.options {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.opt {
  width: 100%;
  border-radius: 10px;
  border: 1.6px solid var(--pill-border);
  padding: 16px var(--space-2);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.010em;
  font-weight: 400;
  background: #fff;
  color: rgba(26, 26, 26, 0.90);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  min-height: 44px;
}

.opt:hover {
  background: rgba(47, 107, 70, 0.05);
}

.opt:active {
  transform: translateY(1px);
}


.opt-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.010em;
  font-weight: 400;
  border-radius: 10px;
}

.opt-glass:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.20);
}

.opt-glass:active {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(1px);
}


.card .progress {
  background: rgba(255, 255, 255, 0.1);
}

.footer {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.back {
  border: 0;
  background: transparent;
  color: rgba(26, 26, 26, 0.55);
  font-weight: 500;
  cursor: pointer;
  padding: var(--space-1) var(--space-2);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.debug {
  color: rgba(26, 26, 26, 0.40);
}


.vslWrap {
  display: grid;
  gap: 14px;
}

.vslWrap h2 {
  margin: 0;
}

.vslWrap p {
  margin: 0;
  color: var(--muted);
}

.vsl {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: #000;
}

.vsl video {
  display: block;
  width: 100%;
  height: auto;
}

.nextBtn {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 16px var(--space-2);
  font-weight: 700;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.nextBtn.is-enabled {
  opacity: 1;
  pointer-events: auto;
}



.video-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  z-index: 10000;
  padding-top: env(safe-area-inset-top);
}

.custom-progress-track {
  width: 100%;
  height: 8px;
  
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}

.custom-progress-fill {
  width: 0%;
  height: 100%;
  background: #fff;
  transition: width 0.2s linear;
}


.video-loading-overlay {
  position: absolute;
  inset: 0;
  background: #606c4b;
  
  z-index: 9998;
  
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.loader {
  width: 45px;
  aspect-ratio: 1;
  --c: no-repeat linear-gradient(#fff 0 0);
  
  background: var(--c), var(--c), var(--c);
  animation:
    l15-1 1s infinite,
    l15-2 1s infinite;
}


.video-start-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  
  z-index: 10002;
  
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.video-start-text {
  color: #fff;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
  
  animation: pulseText 2s infinite;
}

@keyframes pulseText {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

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

.controls-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@keyframes l15-1 {

  0%,
  100% {
    background-size: 20% 100%
  }

  33%,
  66% {
    background-size: 20% 40%
  }
}

@keyframes l15-2 {

  0%,
  33% {
    background-position: 0 0, 50% 100%, 100% 100%
  }

  66%,
  100% {
    background-position: 100% 0, 0 100%, 50% 100%
  }
}


.post-video-content {
  display: none;
  
  text-align: center;
}


@media (max-width: 380px) {
  .page {
    padding: var(--space-3) 18px;
  }
}


.immersive-flow {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10010;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.t-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  animation: fadeInUp 0.8s ease forwards;
}

.t-title {
  margin-bottom: var(--space-3);
}

.t-sub {
  color: rgba(255, 255, 255, 0.7);
}

.pill-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: 100%;
  margin-top: var(--space-3);
}

.t-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: var(--space-2) var(--space-3);
  font-weight: 500;
  display: flex;
  align-items: center;
  text-align: left;
}

.t-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 12px;
  flex-shrink: 0;
}

.glass-lead-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: var(--space-4) var(--space-3);
  width: 100%;
}

.dark-input {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: var(--space-2);
  color: #fff;
  width: 100%;
  outline: none;
  transition: border-color 0.3s ease;
}

.dark-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.dark-input:focus {
  border-color: var(--green);
}

.full-green-bg {
  position: absolute;
  inset: 0;
  background: #6D7B54;
  z-index: 10020;
  padding: 20px;
  max-width: none;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.full-pdf-bg {
  position: absolute;
  inset: 0;
  z-index: 10030;
  background: #fff;
  max-width: none;
  display: none;
  padding: 0;
}


.fade-out-up {
  animation: fadeOutUp 0.5s ease forwards;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}


.mock-logo-mask {
  -webkit-mask-image: url('../img/vila-cocar-logo.png');
  mask-image: url('../img/vila-cocar-logo.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  width: 160px;
  height: 60px;
}


@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}



.agenda-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 10050;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, background 0.42s ease, backdrop-filter 0.42s ease, -webkit-backdrop-filter 0.42s ease;
  padding: 0 10px 0;
}

.agenda-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.agenda-sheet {
  width: 100%;
  max-width: 430px;
  background: var(--white);
  border-radius: 24px 24px 0 0;
  overflow: visible;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  max-height: calc(100svh - 14px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.agenda-overlay.is-active .agenda-sheet {
  transform: translateY(0);
}

.agenda-header {
  background: #3c4a2a;
  color: #fff;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 12px;
  border-radius: 24px 24px 0 0;
}

.agenda-header svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 2px 0 0;
}

.agenda-header-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  flex: 1 1 auto;
  min-width: 0;
}

.agenda-header-text h3 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.22;
  letter-spacing: -0.032em;
  font-weight: 600;
  width: 100%;
}

.agenda-header-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.38;
  letter-spacing: -0.008em;
  font-weight: 400;
  width: 100%;
}

.agenda-body {
  background: var(--white);
  padding: 14px 14px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0 0 24px 24px;
}

.agenda-today-pill {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f7f7f7;
  border: 1px solid #ececec;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  line-height: 1.34;
  letter-spacing: -0.006em;
  font-weight: 400;
  color: var(--muted-dark);
  margin: 0 auto 16px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.agenda-today-pill svg {
  width: 13px;
  height: 13px;
  color: #b0b0b0;
}

.agenda-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 0 4px;
}

.agenda-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(29, 29, 31, 0.62);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.agenda-month-title {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.010em;
  font-weight: 400;
}

.calendar-grid {
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 16px 14px 14px;
  margin-bottom: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.cal-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 8px;
}

.cal-header {
  color: #9a9aa0;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.34;
  letter-spacing: -0.006em;
  font-weight: 400;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.010em;
  font-weight: 400;
  color: rgba(29, 29, 31, 0.38);
}

.cal-day.disabled {
  color: #ccc;
  pointer-events: none;
}

.cal-day.available {
  color: var(--text-dark);
  font-weight: 500;
}

.cal-day.available:hover {
  background: #f0f0f0;
}

.cal-day.selected {
  background: #2b361a;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(43, 54, 26, 0.18);
}

.slots-section {
  display: none;
  
  animation: fadeIn 0.4s ease;
  padding-bottom: 80px;
  
}

.slots-title {
  color: var(--muted-dark);
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.38;
  letter-spacing: -0.008em;
  font-weight: 400;
}

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

@media (max-width: 380px) {
  .agenda-overlay {
    padding: 0 8px 0;
  }

  .agenda-header {
    padding: 16px 16px 14px;
    gap: 10px;
  }

  .agenda-header-text h3 {
    font-size: 16px;
  }

  .agenda-header-text p {
    max-width: 36ch;
  }

  .agenda-body {
    padding: 12px 12px 22px;
  }

  .calendar-grid {
    padding: 14px 12px 12px;
  }

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

.time-slot {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 12px 10px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.34;
  letter-spacing: -0.006em;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 42px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.time-slot:hover:not(:disabled) {
  border-color: #3c4a2a;
  color: #3c4a2a;
}

.time-slot:disabled {
  background: #f9f9f9;
  color: #b0b0b0;
  border-color: #f0f0f0;
  cursor: not-allowed;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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



body.success-page,
html:has(body.success-page) {
  background-color: #1f3613 !important;
}



.cf-screen {
  position: fixed;
  inset: 0;
  z-index: 10060;
  background: #1f3613;
  display: none;
  overflow: hidden;
}

.cf-screen.is-active {
  display: block;
}

.cf-viewport {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translateY(0%);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.cf-screen.is-bottom .cf-viewport {
  transform: translateY(-100%);
}

.cf-stage {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.cf-stage-top {
  top: 0;
}

.cf-stage-bottom {
  top: 100%;
}

.cf-stage-top .motion,
.cf-stage-top .m-fade-up,
.cf-stage-top .m-reveal {
  opacity: 1;
  transform: none !important;
  animation: none !important;
}


.cf-stage-top {
  background: transparent;
  color: var(--text-dark);
  justify-content: flex-start;
  padding: 72px 20px 148px;
  text-align: center;
}




.cf-stage-top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 88px;
  background: #ffffff;
  z-index: 0;
}

.cf-stage-bottom {
  background: linear-gradient(180deg, #1f3613 0%, #0f2c08 100%);
  color: #fff;
  justify-content: flex-start;
  padding: 96px 20px 36px;
  text-align: center;
}


.cf-stage-bottom .cf-wave-topline,
.cf-stage-bottom .cf-wave-title,
.cf-stage-bottom .cf-action-card,
.cf-stage-bottom .cf-wave-footer {
  opacity: 0;
  transform: translateY(18px);
}

.cf-screen.is-bottom .cf-stage-bottom .cf-wave-topline {
  animation: cfFadeUp 0.55s ease forwards;
  animation-delay: 0.12s;
}

.cf-screen.is-bottom .cf-stage-bottom .cf-wave-title {
  animation: cfFadeUp 0.55s ease forwards;
  animation-delay: 0.20s;
}

.cf-screen.is-bottom .cf-stage-bottom .cf-action-card:nth-child(1) {
  animation: cfFadeUp 0.55s ease forwards;
  animation-delay: 0.32s;
}

.cf-screen.is-bottom .cf-stage-bottom .cf-action-card:nth-child(2) {
  animation: cfFadeUp 0.55s ease forwards;
  animation-delay: 0.42s;
}

.cf-screen.is-bottom .cf-stage-bottom .cf-action-card:nth-child(3) {
  animation: cfFadeUp 0.55s ease forwards;
  animation-delay: 0.52s;
}

.cf-screen.is-bottom .cf-stage-bottom .cf-wave-footer {
  animation: cfFadeUp 0.55s ease forwards;
  animation-delay: 0.64s;
}

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


.cf-stage-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -42px;
  height: 160px;
  background-image: url("../img/shapes/wave-png.png");
  background-size: 100% 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: translateY(46px);
  animation: cfWaveRise 2.2s cubic-bezier(0.22, 1, 0.36, 1) .1s forwards;
  will-change: transform, opacity;
}

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


.cf-stage-top>* {
  position: relative;
  z-index: 2;
}

.cf-handle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  opacity: 1;
  pointer-events: auto;
}

.cf-handle-down {
  bottom: 110px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(29, 29, 31, 0.08);
  color: rgba(109, 123, 84, 0.9);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  animation: floatHandleDown 2s ease-in-out infinite;
}

.cf-handle-bridge {
  bottom: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  animation: floatHandleUp 2.4s ease-in-out infinite;
}

.cf-handle-up {
  top: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  animation: floatHandleUp 2.2s ease-in-out infinite;
}

@keyframes floatHandleDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes floatHandleUp {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

.cf-handle:hover {
  transform: translateX(-50%) translateY(-1px) !important;
  animation-play-state: paused;
}

.cf-handle:active {
  transform: translateX(-50%) scale(0.98) !important;
  animation-play-state: paused;
}


.cf-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(47, 107, 70, 0.22);
  background: rgba(47, 107, 70, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--green);
  font-size: 30px;
  flex-shrink: 0;
}

.cf-title {
  color: var(--text-dark);
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.034em;
  font-weight: 600;
  max-width: 20ch;
  flex-shrink: 0;
}

.cf-subtitle {
  color: var(--muted-dark);
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.38;
  letter-spacing: -0.008em;
  font-weight: 400;
  max-width: 28ch;
  flex-shrink: 0;
}

.cf-cd-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
  flex-shrink: 0;
}

.cf-cd-box {
  background: #f8f8f8;
  border: 1px solid #ececec;
  border-radius: 10px;
  width: 54px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}

.cf-cd-num {
  color: #0b1c2c;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.034em;
  font-weight: 600;
  margin-bottom: 2px;
}

.cf-cd-label {
  color: var(--muted-dark);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
}

.cf-cd-sep {
  color: #c8c8cc;
  margin-top: -12px;
  font-size: 16px;
  line-height: 1;
}

.cf-agent-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  flex-shrink: 0;
}

.cf-agent-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(132, 150, 102, 0.16);
  color: #6d7b54;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.cf-agent-text {
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.38;
  letter-spacing: -0.008em;
  font-weight: 400;
}

.cf-wave-topline {
  color: rgba(255, 255, 255, 0.56);
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.34;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-transform: uppercase;
}

.cf-wave-title {
  color: #fff;
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.22;
  letter-spacing: -0.032em;
  font-weight: 600;
}

.cf-action-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px;
}

.cf-action-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  text-align: left;
}

.cf-action-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  flex-shrink: 0;
}

.cf-action-title {
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.010em;
  font-weight: 600;
  margin: 0 0 4px;
}

.cf-action-desc {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.34;
  letter-spacing: -0.006em;
  font-weight: 400;
  margin: 0;
}

.cf-action-arrow {
  color: rgba(255, 255, 255, 0.34);
  font-size: 13px;
}

.cf-wave-footer {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1.34;
  letter-spacing: -0.006em;
  font-weight: 400;
  margin-top: auto;
  padding-top: 4px;
}

@media (max-width: 380px) {
  .cf-stage-top {
    padding: 64px 18px 140px;
  }

  .cf-stage-bottom {
    padding: 92px 18px 34px;
  }

  .cf-handle {
    width: 40px;
    height: 40px;
  }

  .cf-handle-down {
    bottom: 72px;
  }

  .cf-handle-bridge {
    bottom: 18px;
  }

  .cf-handle-up {
    top: 10px;
  }
}