* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --e1: #ff6b35;
  --e2: #f7931e;
  --e3: #ffd166;
  --b1: #1a1035;
  --b2: #0f0a28;
  --b3: #231848;
  --a1: #7b5ea7;
  --a2: #9b72cf;
  --a3: #c9a7eb;
  --t1: #ffffff;
  --t2: rgba(255, 255, 255, .65);
  --t3: rgba(255, 255, 255, .35);
  --glass: rgba(255, 255, 255, .06);
  --glass2: rgba(255, 255, 255, .1);
  --border: rgba(255, 255, 255, .1);
  --border2: rgba(255, 255, 255, .18);
  --inp-bg: rgba(255, 255, 255, .07);
  --radius: 16px;
  --radius-sm: 10px;
}

html,
body {
  min-height: 100vh;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--b2);
  color: var(--t1);
  overflow-x: hidden
}

.wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 100vh;
  position: relative;
  z-index: 1
}


.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden
}

.bs {
  position: absolute;
  border-radius: 50%
}

.bs1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(123, 94, 167, .35) 0%, transparent 70%);
  top: -200px;
  left: -200px
}

.bs2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, .2) 0%, transparent 70%);
  bottom: -150px;
  right: -150px
}

.bs3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(247, 147, 30, .15) 0%, transparent 70%);
  top: 40%;
  left: 40%
}


.panel-l {
  background: linear-gradient(145deg, rgba(26, 16, 53, .95) 0%, rgba(15, 10, 40, .98) 100%);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 5px 30px;
  position: relative;
  overflow: hidden;
}

.leo {
  position: absolute;
  pointer-events: none
}

.leo1 {
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  bottom: 18px;
  right: -40px;
}

.leo2 {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 107, 53, .1);
  border-radius: 50%;
  bottom: 40px;
  right: -40px
}

.leo3 {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(155, 114, 207, .1);
  border-radius: 50%
}



.geo {
  position: absolute;
  pointer-events: none
}

.geo1 {
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  top: -80px;
  right: -80px;
  transform: rotate(15deg)
}

.geo2 {
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 107, 53, .1);
  border-radius: 50%;
  top: 60px;
  right: 20px
}

.geo3 {
  position: absolute;
  bottom: 190px;
  left: -60px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(155, 114, 207, .1);
  border-radius: 50%
}

.reo {
  position: absolute;
  pointer-events: none
}



.reo2 {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 107, 53, .1);
  border-radius: 50%;
  top: -25px;
  left: -12px
}




.meo {
  position: absolute;
  pointer-events: none
}

.meo1 {
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  top: 185px;
  right: -40px;
  transform: rotate(15deg)
}

.meo2 {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 107, 53, .1);
  border-radius: 50%;
  top: 215px;
  right: -45px;
}

.meo3 {
  position: absolute;
  bottom: 0px;
  left: -60px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(155, 114, 207, .1);
  border-radius: 50%
}




.logo {
  display: flex;
  align-items: center;
}

.logo img {
 margin-top: 20px;
  width: 22%;         
  object-fit: contain; 
 
}



.panel-mid {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding:1rem 0 1rem 0;
  position: relative;
  z-index: 2
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  margin-bottom:10px;
  animation: fadeIn .6s .1s ease both
}

.eyebrow-pill {
  background: rgba(255, 107, 53, .12);
  border: 1px solid rgba(255, 107, 53, .25);
  border-radius: 30px;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  gap: 6px
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--e1);
  animation: pulse 2.5s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(.8)
  }
}

.eyebrow-text {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--e2);
  letter-spacing: .08em;
  text-transform: uppercase
}

.headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
  animation: fadeIn .6s .15s ease both
}

.headline em {
  font-style: italic;
  background: linear-gradient(90deg, var(--e1), var(--e2), var(--e3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.sub {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeIn .6s .2s ease both
}

.feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0.5rem;
  animation: fadeIn .6s .25s ease both
}

.feat {
  display: flex;
  align-items: center;
  gap: 12px
}

.feat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.feat-icon svg {
  width: 15px;
  height: 15px
}

.fi-orange {
  background: rgba(255, 107, 53, .15);
  color: var(--e1)
}

.fi-purple {
  background: rgba(155, 114, 207, .15);
  color: var(--a2)
}

.fi-amber {
  background: rgba(255, 209, 102, .12);
  color: var(--e3)
}

.feat-txt {
  font-size: 13.5px;
  color: var(--t2);
  font-weight: 400
}

.feat-txt strong {
  color: var(--t1);
  font-weight: 600
}

.panel-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
  animation: fadeIn .6s .3s ease both
}

.testi {
  animation: fadeIn .6s .35s ease both
}

.testi-quote {
  font-size: 13.5px;
  color: var(--t2);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
  font-style: italic
}

.testi-quote::before {
  content: '\201C';
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--e1);
  vertical-align: middle;
  margin-right: 4px;
  line-height: 0
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px
}

.testi-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--e1), var(--a1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0
}

.testi-info {
  font-size: 12px;
  font-weight: 500;
  color: var(--t1)
}

.testi-role {
  font-size: 11px;
  color: var(--t3);
  margin-top: 1px
}

.stats-row {
  display: flex;
  gap: 0;
  margin-top: 2rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  animation: fadeIn .6s .4s ease both
}

.stat-item {
  flex: 1;
  padding: 1rem;
  text-align: center;
  border-right: 1px solid var(--border)
}

.stat-item:last-child {
  border-right: none
}

.stat-num {
  font-size: 19px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--e2), var(--e3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block
}

.stat-lbl {
  font-size: 10px;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px
}

.panel-r {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 3rem;
  position: relative;
  background: linear-gradient(160deg, rgba(20, 14, 45, .9) 0%, rgba(10, 7, 28, .95) 100%);
}

.panel-r::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(123, 94, 167, .08) 0%, transparent 60%);
  pointer-events: none
}

.form-card {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 2
}

.form-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.25rem;
  animation: slideUp .5s .05s ease both
}

.form-badge {
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--t2);
  letter-spacing: .04em
}

.form-badge span {
  color: var(--e2)
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--t3)
}

.secure-badge svg {
  width: 11px;
  height: 11px;
  color: #4ade80
}

.form-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
  animation: slideUp .5s .1s ease both
}
.form-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--e1), var(--e2), var(--e3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}


.form-sub {
  font-size: 13.5px;
  color: var(--t2);
  margin-bottom: 2rem;
  font-weight: 300;
  animation: slideUp .5s .12s ease both
}

.form-sub a {
  color: var(--e2);
  text-decoration: none;
  font-weight: 500
}

.form-sub a:hover {
  text-decoration: underline
}

.field {
  margin-bottom: 1.15rem;
  animation: slideUp .5s ease both
}

.field:nth-child(1) {
  animation-delay: .14s
}

.field:nth-child(2) {
  animation-delay: .17s
}

.field:nth-child(3) {
  animation-delay: .2s
}

.f-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem
}

.f-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--t2);
  letter-spacing: .03em;
  text-transform: uppercase
}

.f-link {
  font-size: 12px;
  color: var(--e2);
  text-decoration: none;
  font-weight: 500;
  transition: opacity .2s
}

.f-link:hover {
  opacity: .75
}

.inp-wrap {
  position: relative
}

.inp-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--t3);
  pointer-events: none;
  transition: color .2s;
  z-index: 1
}

.inp {
  width: 100%;
  background: var(--inp-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px 12px 42px;
  font-size: 14px;
  color: var(--t1);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-text-fill-color: var(--t1);
}

.inp::placeholder {
  color: var(--t3);
  -webkit-text-fill-color: var(--t3)
}

.inp:focus {
  border-color: var(--e1);
  background: rgba(255, 107, 53, .06);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, .12)
}

.inp-wrap:focus-within .inp-ico {
  color: var(--e1)
}

.inp-eye {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--t3);
  padding: 3px;
  display: flex;
  transition: color .18s
}

.inp-eye:hover {
  color: var(--t2)
}

.inp-eye svg {
  width: 15px;
  height: 15px
}

.rem-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  animation: slideUp .5s .22s ease both
}

.rem-left {
  display: flex;
  align-items: center;
  gap: 8px
}

.cb {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  border: 1.5px solid var(--border2);
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  place-items: center;
  transition: all .15s;
  flex-shrink: 0
}

.cb:checked {
  background: linear-gradient(135deg, var(--e1), var(--e2));
  border-color: var(--e1)
}

.cb:checked::after {
  content: '';
  width: 8px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L7 1.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat
}

.cb-label {
  font-size: 12.5px;
  color: var(--t2);
  cursor: pointer;
  user-select: none
}

.btn-cta {
  width: 100%;
  border: none;
  border-radius: var(--radius-sm);
  padding: 13.5px;
  background: linear-gradient(135deg, var(--e1) 0%, var(--e2) 60%, var(--e3) 100%);
  font-size: 14.5px;
  font-weight: 700;
  color: #1a0a00;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  letter-spacing: .02em;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  margin-bottom: 1.25rem;
  animation: slideUp .5s .24s ease both;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .2), transparent 50%);
  transition: opacity .2s
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, .35);
  opacity: .95
}

.btn-cta:active {
  transform: translateY(0);
  box-shadow: none
}

.btn-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 1
}

.btn-cta-arrow {
  width: 18px;
  height: 18px;
  background: rgba(0, 0, 0, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.btn-cta-arrow svg {
  width: 10px;
  height: 10px
}

.or-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
  animation: slideUp .5s .26s ease both
}

.or-line {
  flex: 1;
  height: 1px;
  background: var(--border)
}

.or-txt {
  font-size: 11.5px;
  color: var(--t3);
  white-space: nowrap
}

.sso-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1.75rem;
  animation: slideUp .5s .28s ease both
}

.sso-btn {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px;
  font-size: 13px;
  font-weight: 500;
  color: var(--t2);
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s, border-color .2s, color .2s, transform .15s
}

.sso-btn:hover {
  background: var(--glass2);
  border-color: var(--border2);
  color: var(--t1);
  transform: translateY(-1px)
}

.sso-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0
}

.form-footer {
  text-align: center;
  font-size: 12px;
  color: var(--t3);
  line-height: 1.65;
  animation: slideUp .5s .3s ease both
}

.form-footer a {
  color: var(--a2);
  text-decoration: none
}

.form-footer a:hover {
  text-decoration: underline
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}



.logo i {
  font-size: 90px; 
  color: #33333338;
  margin-left: auto;
  transform: rotate(10deg);
  position: relative;
}

.yellow-circle {
  position: absolute;
  left: -50px;
  bottom: 0px;
  width: 180px;   
  height: 180px;
  border-radius: 50%;

  background: radial-gradient(circle,
    rgba(255,193,7,0.30) 0%,   /* thoda dark */
    rgba(255,193,7,0.22) 20%,
    rgba(255,193,7,0.14) 40%,
    rgba(255,193,7,0.08) 60%,
    rgba(255,193,7,0.04) 75%,
    rgba(255,193,7,0.02) 90%,
    transparent 100%
  );

  filter: blur(13px);
}




.glow-circle {
  position: absolute;
  left: -60px;
  bottom: -50px;
  width: 180px;   
  height: 180px;
  border-radius: 50%;

  background: radial-gradient(circle,
    rgba(255,193,7,0.30) 0%,   /* thoda dark */
    rgba(255,193,7,0.22) 20%,
    rgba(255,193,7,0.14) 40%,
    rgba(255,193,7,0.08) 60%,
    rgba(255,193,7,0.04) 75%,
    rgba(255,193,7,0.02) 90%,
    transparent 100%
  );

  filter: blur(13px);
}

/* left circle */

.left-glow {
  position: absolute;
  right: -40px;
  top: -30px;

  width: 200px;   
  height: 200px;
  border-radius: 50%;

  background: radial-gradient(circle,
    rgba(255,140,0,0.30) 0%,   /* orange */
    rgba(255,140,0,0.22) 20%,
    rgba(255,140,0,0.14) 40%,
    rgba(255,140,0,0.08) 60%,
    rgba(255,140,0,0.04) 75%,
    rgba(255,140,0,0.02) 90%,
    transparent 100%
  );

  filter: blur(13px);
}

@media (min-width:1400px){
  .form-card{
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 2;
  }
  .panel-l{
    padding: 10rem 2rem;
  }
  .glow-circle{
    bottom: -160px;
    left: -60px;
  }
}



@media (min-width:769px) and (max-width:905px){

.panel-l{
  padding: 40px 15px;
}
.logo-text{
  font-size: 17px;
}
.logo img{
  margin-top: 5px;
  width: 30%;
}
.logo-mark svg {
width: 20px;
height: 20px;
}
.panel-mid{
 padding: 1.5rem 5px;
}
.eyebrow-pill{
  padding: 4px 12px;
}
.eyebrow-text{
  font-size: 10px;
  letter-spacing: 1px;
}
.headline{
  font-size: clamp(25px, 3.5vw, 3.2rem);
}
.feat {
  gap: 9px;
}
.feat-icon{
  width: 30px;
  height: 30px;
}
.feat-icon svg{
  width: 13px;
  height: 13px;
}
.feat-txt strong{
  font-size: 12px;
}
.feat-txt{
  font-size: 12px;
}
.panel-r{
  padding: 8px 25px;
}
.form-eyebrow{
  margin-bottom: 2rem;
}
.btn-cta{
  border-radius: 5px;
  font-size: 12px;
  padding: 11px;
}
.inp{
  padding: 10px 12px 10px 40px;
}
}




@media(max-width:768px) {
  .wrap {
    grid-template-columns: 1fr
  }

  .panel-r {
    padding: 0;
    align-items: flex-start;
    background: var(--b2);
  }

  .form-card {
    max-width: 100%;
    padding: 40px
  }

  .feats {
    display: none;
  }

  .stats-row {
    display: none;
  }

  .mobile-shell {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
  }

  .mob-hero {
    background: var(--b1);
    padding: 3rem 1.75rem 4rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }

.form-badge {
  display: flex;              
  width: fit-content;         
  margin: 0 auto 10px;       
  align-items: center;
  gap: 4px;
}

.form-badge span {
  color: var(--e2)
}


  .mob-orb1 {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 107, 53, .22) 0%, transparent 70%);
    border-radius: 50%;
    top: -120px;
    right: -80px;
    pointer-events: none
  }
  .form-sub{
    margin-bottom: 1rem;
    text-align: center;
    margin-top: -14px;
  }

  .mob-orb2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(123, 94, 167, .2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -60px;
    left: -60px;
    pointer-events: none
  }

  .mob-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none
  }

.mob-logo {
  position: relative;
  display: flex;
  justify-content: center; /* image center */
  align-items: center;
}

.mob-logo img {
  width: 20%;
}

.mob-logo i {
  position: absolute;  /* 👈 key fix */
  right: 160px;            /* right side */
  font-size: 90px; 
  color: #33333338;
  transform: rotate(10deg);
}



.mob-badge {
  display: none !important;
  
}


.mob-form-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.mob-form-title {
  text-transform: uppercase;
  font-family: "DM Serif Display", serif;
  font-size: 1.6rem;
  line-height: 1.2;
}
.mob-form em {
  font-style: italic;
  background: linear-gradient(90deg, var(--e1), var(--e2), var(--e3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}


  .mob-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--e1);
    animation: pulse 2.5s infinite
  }

  .mob-h1 {
    display: none;
    position: relative;
    z-index: 2;
    font-family: 'DM Serif Display', serif;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -.03em;
    text-align: center;
  }

  .mob-h1 em {
    font-style: italic;
    background: linear-gradient(90deg, var(--e1), var(--e2), var(--e3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
  }

  .mob-p {
    display: none;
  }

  .mob-stats {
    display: none !important;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden
  }

  .mob-stat {
    padding: .85rem .5rem;
    text-align: center;
    border-right: 1px solid var(--border)
  }

  .mob-stat:last-child {
    border-right: none
  }

  .mob-stat-num {
    font-size: 16px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--e1), var(--e2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
  }

  .mob-stat-lbl {
    font-size: 9.5px;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-top: 2px
  }

  .mob-form {
    flex: 1;
    background: var(--b1);
    border-radius:5px;
    margin-top: -24px;
    padding: 10px 5.75rem 2.5rem;
    position: relative;
    z-index: 3;
  }

  .mob-form-handle {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .15);
    margin: 0 auto 1.75rem
  }
  .panel-divider{
    display: none;
  }
  .panel-l{
    padding: 1rem 2rem;
  }
  .panel-mid{
    padding: 1rem 0;
  }


.mob-logo-mark{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.mob-logo-mark svg{
  width: 20px;
  height: 20px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.mob-logo-text{
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.mob-logo-text span{
  color: #f7931e;
}
.inp{
  padding: 11px 11px 10px 40px;
}
.btn-cta{
  border-radius: 5px;
  font-size: 12px;
  padding: 12px;
}


}


@media (min-width:390px) and (max-width:575px){
.mob-form{
  padding: 16px 50px !important;
}
.mob-form-title{
  font-size: 20px;
}

}




@media (max-width:576px){

.mob-hero{
  
  padding:5rem 1px 30px;
}
.mob-logo img{
  width: 25%;
}
.mob-form{
  padding:10px 25px 15px 25px;
  margin-top: -3px;
  border-radius: 5px;
}
.mob-form-handle{
  display: none;
}

.mob-logo-text{
  font-size: 16px;
}
.mob-logo-mark{
  width: 30px;
  height: 30px;
}
    .mob-logo-mark svg {
    width: 16px;
    height: 16px;
    }
.mob-badge{
  padding: 3px 6px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.mob-h1{
  font-size: 21px;
}
.f-lbl{
  font-size: 10px;
}
.btn-cta {
font-size: 11px;
padding: 9px;
border-radius: 5px;
margin-bottom: 4px;

}
.cb-label{
  font-size: 11px;
}
.cb{
  width: 14px;
  height: 14px;
}
.f-link{
  font-size: 11px;
}
.form-badge{
  padding: 4px 8px;
  font-size: 10px;
  letter-spacing: 1px;
}
.inp {
  padding: 8px 12px 10px 40px;
}

}

@media (max-width:450px){
  .mob-logo img{
    object-fit: cover;
    width: 32%;
  }
}

@media (max-width:390px){
.mob-form-title{
  text-align: center;
  font-size: 17px;
}
.form-sub{
  font-size: 12px;
}
}
