/* =====================================================================
   Louis Inner Circle — Page 2  (Video + Application)
   Scoped to .mf2 so nothing leaks into other pages.
   ===================================================================== */

/* ── Container ── */
.mf2{
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  padding: 0 0 0;
}

/* ── Background: dark + grid ── */
.mf2-bg{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1000px 600px at 50% 15%, rgba(255,59,48,.10), transparent 60%),
    radial-gradient(1200px 800px at 50% 50%, rgba(6,8,14,.55), rgba(6,8,14,.95));
}
.mf2-grid-lines{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Content ── */
.mf2-content{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

/* ── Hero / Logo ── */
.mf2-hero{
  padding-top: 48px;
  margin-bottom: 8px;
}
.mf2-eyebrow{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff3b30;
  border: 1px solid rgba(255,59,48,.3);
  border-radius: 20px;
  padding: 6px 18px;
  margin-bottom: 20px;
  background: rgba(255,59,48,.06);
}
.mf2-logo{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}
.mf2-logo-text{
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 5px;
  color: rgba(255,255,255,.94);
  text-transform: uppercase;
}
.mf2-accent{ color: #ff3b30; }
.mf2-tagline{
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.62);
  max-width: 600px;
  margin: 0 auto;
}
.mf2-tagline strong{ color: rgba(255,255,255,.88); }

/* ── Step indicators ── */
.mf2-step-section{
  width: 100%;
  max-width: 520px;
  margin: 36px auto 10px;
}
.mf2-step-indicator{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.mf2-step-col{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}
.mf2-step-badge{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.35);
  background: transparent;
  transition: all .3s ease;
  flex-shrink: 0;
}
.mf2-step-badge--active{
  border-color: #ff3b30;
  color: #fff;
  background: #ff3b30;
  box-shadow: 0 0 18px rgba(255,59,48,.35);
}
.mf2-step-badge--done{
  border-color: #34c759;
  color: #fff;
  background: #34c759;
  box-shadow: 0 0 12px rgba(52,199,89,.25);
}
.mf2-step-line-wrap{
  display: flex;
  align-items: center;
  height: 38px;             /* match badge height so line is vertically centered */
  flex-shrink: 0;
}
.mf2-step-line{
  width: 80px;
  height: 2px;
  background: rgba(255,255,255,.12);
}
.mf2-step-line--done{
  background: linear-gradient(90deg, #34c759, #ff3b30);
}
.mf2-step-label{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  white-space: nowrap;
}
.mf2-step-label--active{
  color: #ff3b30;
}
.mf2-step-label--done{
  color: #34c759;
}

/* ── Video section ── */
.mf2-video-section{
  width: 100%;
  margin-bottom: 36px;
  margin-top: 12px;
}
.mf2-video-prompt{
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
  margin: 0 0 28px;
}
.mf2-br-md{ display: inline; }

.mf2-video-wrap{
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.mf2-video-thumb{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mf2-video-embed{
  display: none;
  position: absolute;
  inset: 0;
}

/* ── Play button — pulsing ── */
.mf2-play-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: mf2Pulse 2s ease-in-out infinite;
}
.mf2-play-label{
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.mf2-play-icon{
  width: 80px;
  height: 80px;
}
@keyframes mf2Pulse{
  0%, 100%{ transform: translate(-50%, -50%) scale(1); }
  50%     { transform: translate(-50%, -50%) scale(1.12); }
}

/* ── Trust badges ── */
.mf2-trust{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 48px;
  flex-wrap: wrap;
}
.mf2-trust-badge{
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  padding: 12px 18px;
  height: 50px;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.03);
}
.mf2-trust-icon{ font-size: 20px; }
.mf2-trust-stars{
  color: #00b67a;
  font-size: 16px;
  letter-spacing: 1px;
}
.mf2-trust-label strong{ color: rgba(255,255,255,.9); }

/* ── Form prompt + arrow ── */
.mf2-form-prompt{
  margin-bottom: 12px;
}
.mf2-prompt-heading{
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.mf2-prompt-sub{
  font-size: 15px;
  color: rgba(255,255,255,.5);
  margin: 0 0 16px;
}
.mf2-arrow-down{
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.mf2-arrow-down svg{
  animation: mf2Bounce 1.8s ease-in-out infinite;
}
@keyframes mf2Bounce{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(8px); }
}

/* ── Typeform container ── */
.mf2-form-section{
  width: 100%;
  max-width: 1100px;
  margin-bottom: 56px;
}
.mf2-tf-wrap{
  width: 100%;
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.03),
    0 20px 60px rgba(0,0,0,.4),
    0 0 80px rgba(255,59,48,.04);
  background: rgba(255,255,255,.02);
}
.mf2-tf-wrap > div[data-tf-live]{
  width: 100% !important;
  height: 500px !important;
  min-height: 500px !important;
  display: block !important;
}
.mf2-tf-wrap div[data-tf-live] > div{
  width: 100% !important;
  height: 500px !important;
  min-height: 500px !important;
}
.mf2-tf-wrap iframe{
  width: 100% !important;
  height: 500px !important;
  min-height: 500px !important;
  display: block !important;
  border: 0 !important;
}
.mf2-tf-fallback{
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  text-align: center;
}
.mf2-tf-fallback a{
  color: rgba(77,166,255,.7);
  text-decoration: underline;
}
.mf2-form-card{
  background: rgba(240,242,246,.97);
  border-radius: 16px;
  padding: 40px 36px 32px;
  text-align: left;
  color: #1a1d24;
  box-shadow: 0 16px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.06);
}
.mf2-q-text{
  font-size: 16px;
  line-height: 1.55;
  color: #1a1d24;
  margin: 0 0 6px;
}
.mf2-q-sub{
  font-size: 13px;
  color: #666;
  margin: 0 0 18px;
}
.mf2-req{ color: #ff3b30; }

/* Question steps */
.mf2-q--hidden{ display: none; }

/* Option cards */
.mf2-q-options{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.mf2-option input{ display: none; }
.mf2-option input:checked + .mf2-option-key{
  background: #ff3b30;
  color: #fff;
  border-color: #ff3b30;
}
.mf2-option input:checked ~ *{ color: #1a1d24; }
.mf2-option-key{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border: 1px solid #bcc2cc;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #666;
  flex-shrink: 0;
}

/* Text inputs inside form card */
.mf2-q-fields{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.mf2-field-input{
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  border: 1px solid #d8dce3;
  border-radius: 8px;
  background: #fff;
  color: #1a1d24;
  outline: none;
}
.mf2-field-input:focus{ border-color: #ff3b30; }
.mf2-phone-row{ display:flex; gap:8px; }
.mf2-phone-code{ width:140px; flex-shrink:0; cursor:pointer; }
.mf2-phone-num{ flex:1; min-width:0; }
.mf2-field-textarea{
  width: 100%;
  min-height: 100px;
  padding: 13px 16px;
  font-size: 15px;
  border: 1px solid #d8dce3;
  border-radius: 8px;
  background: #fff;
  color: #1a1d24;
  outline: none;
  resize: vertical;
  margin-bottom: 22px;
  font-family: inherit;
}
.mf2-field-textarea:focus{ border-color: #ff3b30; }
.mf2-q-hint{
  font-size: 12px;
  color: #8a8f9b;
  margin-top: -14px;
  margin-bottom: 18px;
}

/* Next / Submit button */
.mf2-next-btn{
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border: none;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff5147 0%, #e0332a 100%);
  cursor: pointer;
  transition: transform .1s ease, box-shadow .1s ease, opacity .15s;
  user-select: none;
}
.mf2-next-btn:hover{ opacity: .9; }
.mf2-next-btn:active{
  transform: scale(.96);
  box-shadow: inset 0 2px 6px rgba(0,0,0,.2);
}
.mf2-submit-btn{
  font-size: 17px;
  padding: 16px;
  letter-spacing: .3px;
}

/* Back button */
.mf2-btn-row{
  display: flex;
  align-items: center;
  gap: 10px;
}
.mf2-back-btn{
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8dce3;
  border-radius: 8px;
  background: #fff;
  font-size: 22px;
  color: #1a1d24;
  cursor: pointer;
  transition: transform .1s ease, background .15s;
  user-select: none;
}
.mf2-back-btn:hover{ background: #f0f2f6; }
.mf2-back-btn:active{
  transform: scale(.92);
  background: #e4e7ec;
}

/* Field labels */
.mf2-field-label{
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1d24;
  margin-bottom: 4px;
}

/* Tactile option feel */
.mf2-option{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid #d8dce3;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: transform .1s ease, border-color .15s, background .15s, box-shadow .1s;
  user-select: none;
}
.mf2-option:hover{ border-color: #ff3b30; background: rgba(255,59,48,.04); }
.mf2-option:active{
  transform: scale(.97);
  box-shadow: inset 0 1px 4px rgba(0,0,0,.1);
}

/* ── Progress bar ── */
.mf2-progress{
  height: 6px;
  background: #d8dce3;
  border-radius: 6px;
  margin-bottom: 28px;
  overflow: hidden;
}
.mf2-progress-bar{
  height: 100%;
  background: linear-gradient(90deg, #ff3b30, #ff6b5e);
  border-radius: 6px;
  transition: width .4s ease;
}

/* ── Step transition animations ── */
.mf2-q{
  animation: none;
}
.mf2-q--exit{
  animation: mf2SlideOut .25s ease forwards;
}
.mf2-q--enter{
  animation: mf2SlideIn .35s ease forwards;
}
@keyframes mf2SlideOut{
  from{ opacity: 1; transform: translateX(0); }
  to  { opacity: 0; transform: translateX(-30px); }
}
@keyframes mf2SlideIn{
  from{ opacity: 0; transform: translateX(30px); }
  to  { opacity: 1; transform: translateX(0); }
}

/* ── Option selected flash ── */
.mf2-option--selected{
  border-color: #ff3b30;
  background: rgba(255,59,48,.1);
}

/* ── Social proof heading ── */
.mf2-proof-heading{
  margin-bottom: 36px;
}
.mf2-proof-title{
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.mf2-proof-sub{
  font-size: 15px;
  color: rgba(255,255,255,.45);
}

/* ── Proof gallery — 2 columns ── */
.mf2-proof-gallery{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  margin-bottom: 56px;
}
.mf2-proof-col{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mf2-proof-card{
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.mf2-proof-card img{
  width: 100%;
  display: block;
}
.mf2-proof-card[data-zoom]{ cursor: pointer; transition: border-color .2s, transform .2s; }
.mf2-proof-card[data-zoom]:hover{ border-color: rgba(255,59,48,.25); transform: translateY(-2px); }

/* Lightbox */
.mf-lightbox{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,.85);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 24px;
}
.mf-lightbox.active{ display: flex; }
.mf-lightbox img{
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 12px 60px rgba(0,0,0,.6);
}

/* ── Footer ── */
.mf2-footer{
  width: 100%;
  max-width: 900px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 40px 24px 48px;
  text-align: center;
}
.mf2-footer-brand{
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 12px;
}
.mf2-footer-links{
  font-size: 13px;
  color: rgba(255,255,255,.3);
  margin: 0 0 16px;
}
.mf2-footer-links a{
  color: rgba(255,255,255,.4);
  text-decoration: none;
}
.mf2-footer-links a:hover{ color: rgba(255,255,255,.7); }
.mf2-footer-links span{ margin: 0 8px; }
.mf2-disclaimer{
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,.22);
  max-width: 600px;
  margin: 0 auto;
}
.mf2-disclaimer a{ color: rgba(255,255,255,.3); text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 768px){
  .mf2-logo-text{ font-size: 26px; letter-spacing: 3px; }
  .mf2-video-prompt{ font-size: 18px; }
  .mf2-br-md{ display: none; }
  .mf2-form-card{ padding: 28px 20px 24px; }
  .mf2-proof-gallery{ grid-template-columns: 1fr; }
  .mf2-trust{ gap: 12px; }
  .mf2-trust-badge{ font-size: 13px; padding: 6px 12px; height: 42px; }
  .mf2-trust-badge:last-child{ display: none; }
  .mf2-tagline{ font-size: 15px; }

  /* Step indicators — compact on mobile */
  .mf2-step-section{ max-width: 100%; margin: 28px auto 8px; }
  .mf2-step-badge{ width: 32px; height: 32px; font-size: 13px; }
  .mf2-step-line-wrap{ height: 32px; margin: 0 10px; }
  .mf2-step-line{ width: 40px; }
  .mf2-step-label{ font-size: 10px; letter-spacing: .3px; }
  .mf2-step-col{ gap: 6px; }

  /* Typeform — taller on mobile */
  .mf2-tf-wrap{ min-height: 600px; }
  .mf2-tf-wrap > div[data-tf-live],
  .mf2-tf-wrap div[data-tf-live] > div,
  .mf2-tf-wrap iframe{ height: 600px !important; min-height: 600px !important; }
}

@media (max-width: 480px){
  .mf2-hero{ padding-top: 32px; }
  .mf2-logo-text{ font-size: 20px; letter-spacing: 2px; }
  .mf2-form-card{ padding: 22px 16px 20px; }

  .mf2-step-badge{ width: 28px; height: 28px; font-size: 12px; }
  .mf2-step-line-wrap{ height: 28px; margin: 0 8px; }
  .mf2-step-line{ width: 32px; }
  .mf2-step-label{ font-size: 9px; letter-spacing: 0; }
}
