/* Landing Emprende Oro - Oro Colombia long campaign landing
   Replica del diseño Figma node 17:56
*/

/* ==== Animations (shared with all landings) ==== */
@keyframes lpReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lpFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lpHeroIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lpPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); }
  50%      { box-shadow: 0 0 0 14px rgba(0, 0, 0, 0); }
}
@keyframes lpGoldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(247, 227, 138, 0.55); }
  50%      { box-shadow: 0 0 0 16px rgba(247, 227, 138, 0); }
}
@keyframes lpFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.lp-reveal.is-revealed { opacity: 1; transform: translateY(0); }
.lp-reveal-delay-1 { transition-delay: 0.1s; }
.lp-reveal-delay-2 { transition-delay: 0.2s; }
.lp-reveal-delay-3 { transition-delay: 0.3s; }
.lp-reveal-delay-4 { transition-delay: 0.4s; }

.lp-hero-in { animation: lpHeroIn 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.lp-pulse { animation: lpPulse 2.6s ease-in-out infinite; }
.lp-gold-pulse { animation: lpGoldPulse 2.6s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .lp-reveal, .lp-hero-in { opacity: 1 !important; transform: none !important; animation: none !important; }
  .lp-pulse, .lp-gold-pulse { animation: none !important; }
}

/* ==== Toast notifications ==== */
.lp-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: calc(100vw - 32px);
}

@keyframes lpToastIn {
  from { opacity: 0; transform: translateX(40px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes lpToastOut {
  to { opacity: 0; transform: translateX(40px) scale(0.96); }
}
@keyframes lpToastCheck {
  from { stroke-dashoffset: 24; }
  to   { stroke-dashoffset: 0; }
}

.lp-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #0a7d2c 0%, #0d9c38 100%);
  color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255,255,255,0.06) inset;
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.35;
  pointer-events: auto;
  animation: lpToastIn 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  min-width: 280px;
  max-width: 380px;
}

.lp-toast.is-error {
  background: linear-gradient(135deg, #b80012 0%, #d6112a 100%);
}

.lp-toast.is-info {
  background: linear-gradient(135deg, #8a6f1d 0%, #c9a23c 100%);
  color: #1c1503;
}
.lp-toast.is-info .lp-toast-icon { background: rgba(0, 0, 0, 0.16); }
.lp-toast.is-info .lp-toast-close { color: rgba(28, 21, 3, 0.6); }
.lp-toast.is-info .lp-toast-close:hover { background: rgba(0, 0, 0, 0.12); color: #1c1503; }

.lp-toast.is-leaving { animation: lpToastOut 0.32s ease both; }

.lp-toast-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-toast-icon svg { width: 14px; height: 14px; display: block; }
.lp-toast-icon path {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: lpToastCheck 0.45s 0.12s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.lp-toast-msg { flex: 1; min-width: 0; }

.lp-toast-close {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 4px;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  border-radius: 6px;
  transition: background 140ms ease, color 140ms ease;
}
.lp-toast-close:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }

@media (max-width: 480px) {
  .lp-toast-container { bottom: 16px; right: 16px; left: 16px; }
  .lp-toast { min-width: 0; max-width: 100%; font-size: 14px; padding: 12px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-toast, .lp-toast.is-leaving { animation: none !important; }
  .lp-toast-icon path { animation: none !important; stroke-dashoffset: 0 !important; }
}

.leo-root,
.leo-root * {
  box-sizing: border-box;
}

.leo-root {
  position: relative;
  width: 100%;
  background: #070707;
  color: #ffffff;
  font-family: 'Inter Tight', 'Helvetica Now Display', system-ui, -apple-system, sans-serif;
  overflow: hidden;
}

/* ========== HERO ========== */
.leo-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh; /* respeta la barra del navegador en móvil */
  padding: 78px 24px 90px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centra el contenido cuando el hero llena el viewport */
}

.leo-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.leo-bg-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1440px;
  height: 852px;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center;
  opacity: 0.30;
}

.leo-bg-gold {
  position: absolute;
  inset: 0;
  background: linear-gradient(82.97deg, #f7e38a 26.8%, #f1d46c 42.37%, #be9b49 66.82%);
  mix-blend-mode: color-dodge;
  opacity: 0.30;
  transform: scaleY(-1) rotate(180deg);
}

.leo-bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(175.44deg, #000 0.78%, rgba(0, 0, 0, 0) 99.85%);
}

.leo-ellipse-right {
  position: absolute;
  top: 852px;
  right: -300px;
  width: 480px;
  height: 540px;
  pointer-events: none;
  z-index: 1;
}

.leo-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.leo-title {
  margin: 0 auto;
  max-width: 1008px;
  font-family: 'Inter Tight', 'Helvetica Now Display', sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.14;
  letter-spacing: -0.44px;
  color: #fff;
}

.leo-title .leo-gold {
  background: linear-gradient(102.6deg, #f7e38a 58.72%, #f1d46c 69.28%, #be9b49 77.98%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

/* ========== Video ========== */
.leo-video {
  margin: 40px auto 0;
  width: 100%;
  max-width: 924px;
  aspect-ratio: 924 / 480;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.4);
}

.leo-video-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  /* video-cover.jpg is a tall portrait (1667x2500); pull the face into frame */
  background-position: 50% 14%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease;
}

.leo-video-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.leo-video-cover:hover {
  transform: scale(1.01);
}

.leo-play-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 18, 28, 0.74);
  border: none;
  padding: 14px;
  border-radius: 1000px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.leo-play-btn:hover {
  background: rgba(17, 18, 28, 0.92);
  transform: scale(1.06);
}

.leo-play-btn img {
  width: 48px;
  height: 48px;
}

.leo-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========== Subtitle + CTA ========== */
.leo-subtitle {
  margin: 32px auto 0;
  max-width: 682px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.64;
  color: #fff;
}

.leo-subtitle strong { font-weight: 700; }

.leo-cta {
  margin: 24px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 50px;
  background: #ffffff;
  color: #1e1e1e;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  text-transform: capitalize;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 200ms ease;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
}

.leo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.18);
}

/* CTA "armado" una vez visto el video */
.leo-cta.is-armed { animation: lpGoldPulse 2.6s ease-in-out infinite; }

/* Mensaje bajo el CTA (estado del gate de video) */
.leo-cta-hint {
  margin: 16px auto 0;
  max-width: 460px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.66);
  transition: color 200ms ease;
}

.leo-cta-hint.is-ready {
  color: #f1d46c;
  font-weight: 600;
}

/* ========== Form Section ========== */
.leo-form-section {
  position: relative;
  padding: 80px 24px;
  background: #070707;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Oculta totalmente la sección hasta que se vea el video y se desbloquee */
.leo-form-section.is-gated { display: none; }

/* Transición de entrada al revelar */
@keyframes leoRevealForm {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.leo-form-section.is-open .leo-form {
  animation: leoRevealForm 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@media (prefers-reduced-motion: reduce) {
  .leo-form-section.is-open .leo-form { animation: none !important; }
}

.leo-vec-left {
  position: absolute;
  top: 200px;
  left: -80px;
  width: 600px;
  pointer-events: none;
  opacity: 0.55;
  transform: rotate(-150deg);
  z-index: 1;
}

.leo-vec-right {
  position: absolute;
  top: -260px;
  right: -80px;
  width: 700px;
  pointer-events: none;
  opacity: 0.55;
  transform: scaleY(-1) rotate(150deg);
  z-index: 1;
}

.leo-fade-left {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 230px;
  height: 649px;
  background: linear-gradient(90deg, #070707 0%, rgba(7, 7, 7, 0) 100%);
  opacity: 0.8;
  pointer-events: none;
}

.leo-fade-right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) scaleX(-1);
  width: 230px;
  height: 649px;
  background: linear-gradient(90deg, #070707 0%, rgba(7, 7, 7, 0) 100%);
  opacity: 0.8;
  pointer-events: none;
}

.leo-ellipse-bottom {
  position: absolute;
  bottom: -99px;
  left: 50%;
  transform: translateX(-50%);
  width: 1204px;
  pointer-events: none;
}

/* ========== Form Card ========== */
.leo-form {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 100%;
  max-width: 566px;
  padding: 56px;
  background: #191717;
  border-radius: 6px;
  box-shadow: 2px 8px 224px 0 rgba(0, 0, 0, 0.68);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.leo-form-title {
  margin: 0;
  max-width: 424px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  color: #fff;
  text-transform: capitalize;
}

.leo-form-desc {
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: #d8d8d8;
  opacity: 0.7;
}

.leo-form-desc strong { font-weight: 600; }

.leo-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
}

.leo-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.leo-field label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  color: #fff;
}

.leo-field input,
.leo-field select {
  height: 44px;
  padding: 10px 14px;
  background: #202020;
  border: 1px solid #282828;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  color: #d8d8d8;
  outline: none;
  transition: border-color 160ms ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.leo-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23d8d8d8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
}

.leo-field input::placeholder { color: rgba(216, 216, 216, 0.5); }
.leo-field input:focus,
.leo-field select:focus { border-color: #f1d46c; }
.leo-field select option { background: #202020; color: #d8d8d8; }

.leo-phone-wrap {
  display: flex;
  align-items: stretch;
  gap: 12px;
  height: 44px;
  padding: 0 14px;
  background: #202020;
  border: 1px solid #282828;
  border-radius: 8px;
}

.leo-phone-wrap:focus-within { border-color: #f1d46c; }

.leo-phone-prefix {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(216, 216, 216, 0.6);
  flex-shrink: 0;
}

.leo-phone-wrap input {
  flex: 1;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #d8d8d8;
}

.leo-phone-wrap input::placeholder { color: rgba(216, 216, 216, 0.5); }

/* ========== Segmento Sí / No ========== */
.leo-segment {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}

.leo-segment-btn {
  flex: 1;
  height: 44px;
  background: #282828;
  border: 1px solid #282828;
  border-radius: 8px;
  color: #d8d8d8;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 80ms ease;
}

.leo-segment-btn:hover { background: #3a3a3a; }

.leo-segment-btn.is-active {
  background: linear-gradient(95.4deg, #f7e38a 1.94%, #f1d46c 45.62%, #f1d56e 75.56%, #be9b49 96.89%);
  color: #282828;
  border-color: transparent;
}

.leo-segment-btn:active { transform: scale(0.98); }

/* ========== Campos condicionales ========== */
.leo-conditional { display: none; }
.leo-conditional.is-shown {
  display: flex;
  animation: leoRevealForm 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@media (prefers-reduced-motion: reduce) {
  .leo-conditional.is-shown { animation: none !important; }
}

/* ========== Scale 1-10 ========== */
.leo-scale {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.leo-scale-btn {
  min-width: 32px;
  height: 27px;
  padding: 0;
  background: #282828;
  border: none;
  border-radius: 3px;
  color: #d8d8d8;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.24px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 80ms ease;
}

.leo-scale-btn:hover { background: #3a3a3a; }

.leo-scale-btn.is-active {
  background: linear-gradient(95.4deg, #f7e38a 1.94%, #f1d46c 45.62%, #f1d56e 75.56%, #be9b49 96.89%);
  color: #282828;
}

.leo-scale-btn:active { transform: scale(0.94); }

/* ========== Submit ========== */
.leo-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 8px 24px;
  background: linear-gradient(127.08deg, #f7e38a 1.94%, #f1d46c 45.62%, #f1d56e 75.56%, #be9b49 96.89%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #181717;
  letter-spacing: 0.16px;
  transition: filter 160ms ease, transform 80ms ease;
}

.leo-submit:hover { filter: brightness(1.06); }
.leo-submit:active { transform: scale(0.99); }
.leo-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.leo-submit img { width: 14.5px; height: auto; }

.leo-feedback {
  min-height: 18px;
  font-size: 13px;
  color: #d8d8d8;
  text-align: center;
}

.leo-feedback.is-error { color: #ff7a85; }
.leo-feedback.is-success { color: #c0eaca; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .leo-vec-left { width: 360px; top: 100px; left: -100px; opacity: 0.35; }
  .leo-vec-right { width: 420px; top: -120px; right: -100px; opacity: 0.35; }
}

@media (max-width: 640px) {
  .leo-vec-left, .leo-vec-right { display: none; }
}

@media (max-width: 768px) {
  .leo-hero { padding: 48px 16px 60px; min-height: 100vh; min-height: 100dvh; }
  .leo-title { font-size: 28px; line-height: 1.15; letter-spacing: -0.3px; }
  .leo-video { margin-top: 28px; }
  .leo-subtitle { font-size: 16px; }
  .leo-cta { padding: 12px 36px; font-size: 14px; }
  .leo-form-section { padding: 56px 16px; }
  .leo-form { padding: 32px 24px; }
  .leo-form-title { font-size: 24px; line-height: 28px; }
  .leo-form-desc { font-size: 12px; }
  .leo-play-btn { padding: 10px; }
  .leo-play-btn img { width: 36px; height: 36px; }
  .leo-scale-btn { min-width: 28px; height: 25px; font-size: 11px; }
}

@media (max-width: 480px) {
  .leo-title { font-size: 24px; }
  .leo-form-title { font-size: 22px; }
  .leo-scale { gap: 4px; }
  .leo-scale-btn { min-width: 26px; }
}

/* ==== Theme override guards (Elementor / Hello theme reset) ==== */
.leo-root .leo-submit {
  background: linear-gradient(127.08deg, #f7e38a 1.94%, #f1d46c 45.62%, #f1d56e 75.56%, #be9b49 96.89%) !important;
  color: #181717 !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 8px 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  height: 48px !important;
  width: 100% !important;
  font-family: 'Inter Tight', sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  text-transform: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.leo-root .leo-submit span {
  flex: 1;
  text-align: center;
}

.leo-root .leo-submit img {
  width: 18px !important;
  height: 14px !important;
  flex-shrink: 0;
  object-fit: contain;
}

.leo-root .leo-submit:hover {
  filter: brightness(1.06) !important;
  color: #181717 !important;
  border: none !important;
}

.leo-root .leo-cta {
  background: #ffffff !important;
  color: #1e1e1e !important;
  border: none !important;
  border-radius: 30px !important;
  padding: 14px 50px !important;
  font-family: 'Inter Tight', sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  text-transform: capitalize !important;
  outline: none !important;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08) !important;
}

.leo-root .leo-cta:hover {
  background: #ffffff !important;
  color: #1e1e1e !important;
  transform: translateY(-2px);
}

.leo-root .leo-play-btn {
  background: rgba(17, 18, 28, 0.74) !important;
  border: none !important;
  padding: 14px !important;
  border-radius: 1000px !important;
  color: #fff !important;
}

.leo-root .leo-play-btn:hover {
  background: rgba(17, 18, 28, 0.92) !important;
}

.leo-root .leo-scale-btn {
  background: #282828 !important;
  color: #d8d8d8 !important;
  border: none !important;
  border-radius: 3px !important;
  padding: 0 !important;
  min-width: 32px !important;
  height: 27px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  outline: none !important;
  box-shadow: none !important;
}

.leo-root .leo-scale-btn:hover {
  background: #3a3a3a !important;
}

.leo-root .leo-scale-btn.is-active {
  background: linear-gradient(95.4deg, #f7e38a 1.94%, #f1d46c 45.62%, #f1d56e 75.56%, #be9b49 96.89%) !important;
  color: #282828 !important;
}

.leo-root .leo-segment-btn {
  background: #282828 !important;
  color: #d8d8d8 !important;
  border: 1px solid #282828 !important;
  border-radius: 8px !important;
  height: 44px !important;
  font-family: 'Inter Tight', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  outline: none !important;
  box-shadow: none !important;
}

.leo-root .leo-segment-btn:hover { background: #3a3a3a !important; }

.leo-root .leo-segment-btn.is-active {
  background: linear-gradient(95.4deg, #f7e38a 1.94%, #f1d46c 45.62%, #f1d56e 75.56%, #be9b49 96.89%) !important;
  color: #282828 !important;
  border-color: transparent !important;
}

.leo-root .leo-field input,
.leo-root .leo-field select,
.leo-root .leo-phone-wrap input {
  border: 1px solid #282828 !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  background: #202020 !important;
  color: #d8d8d8 !important;
  height: 44px !important;
  font-size: 14px !important;
  outline: none !important;
  box-shadow: none !important;
}

.leo-root .leo-field select {
  padding-right: 34px !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23d8d8d8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
}

.leo-root .leo-phone-wrap {
  border: 1px solid #282828 !important;
  border-radius: 8px !important;
  background: #202020 !important;
  height: 44px !important;
  padding: 0 14px !important;
}

.leo-root .leo-phone-wrap input {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  height: 100% !important;
}

.leo-root .leo-field input:focus,
.leo-root .leo-field select:focus,
.leo-root .leo-phone-wrap:focus-within {
  border-color: #f1d46c !important;
}

.leo-root .leo-form {
  background: #191717 !important;
  border-radius: 6px !important;
}
