/* ================= FINAL CTA PREMIUM DESIGN ================= */

.final{
  position: relative;
  padding: 80px 0;
  background:
    radial-gradient(800px 400px at 10% 10%, rgba(254,88,98,.18), transparent 60%),
    radial-gradient(800px 400px at 90% 20%, rgba(23,35,66,.18), transparent 60%),
    linear-gradient(135deg,#f9fbff,#ffffff);
}

/* subtle animated glow */
.final::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background: radial-gradient(circle, rgba(254,88,98,.15), transparent 70%);
  top:-150px;
  right:-150px;
  filter: blur(60px);
  animation: floatGlow 8s ease-in-out infinite alternate;
}

@keyframes floatGlow{
  from{ transform: translateY(0px);}
  to{ transform: translateY(40px);}
}

.form-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* PANELS */
.panel_reveal_cta,
.panel_reveal_2{
  border-radius: 24px;
  padding: 28px;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(23,35,66,.08);
  box-shadow: 0 20px 60px rgba(23,35,66,.08);
  transition: transform .4s ease, box-shadow .4s ease;
}

.panel_reveal_cta:hover,
.panel_reveal_2:hover{
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(23,35,66,.12);
}

/* BULLETS */
.bullets{
  list-style:none;
  padding:0;
  display:grid;
  gap:14px;
}

.bullets li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background: rgba(254,88,98,.06);
  padding:12px 14px;
  border-radius:14px;
  transition: all .3s ease;
}

.bullets li:hover{
  background: rgba(254,88,98,.12);
  transform: translateX(6px);
}

.bullets i{
  color: var(--coral);
  margin-top:3px;
}

/* BADGES */
.badge{
  padding:8px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight:600;
  background: rgba(23,35,66,.06);
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:.3s;
}

.badge:hover{
  background: rgba(23,35,66,.12);
}

/* FORM */
form{
  display:grid;
  gap:16px;
}

.field{
  display:grid;
  gap:6px;
}

label{
  font-weight:800;
  font-size:13px;
  color: rgba(23,35,66,.85);
}

input, select, textarea{
  width:100%;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(23,35,66,.15);
  background: rgba(255,255,255,.9);
  font: inherit;
  transition: all .3s ease;
  outline:none;
}

textarea{
  min-height:120px;
  resize:vertical;
}

input:hover, select:hover, textarea:hover{
  border-color: rgba(23,35,66,.3);
}

input:focus, select:focus, textarea:focus{
  border-color: rgba(254,88,98,.6);
  box-shadow: 0 0 0 6px rgba(254,88,98,.12);
  transform: translateY(-2px);
}

/* BUTTON */
.btn-primary1{
  padding:14px;
  border-radius:18px;
  font-weight:700;
  font-size:15px;
  background: linear-gradient(135deg,#fe5862,#ff7b86);
  color:rgba(23, 35, 66, .85);
  border:none;
  cursor:pointer;
  transition: all .3s ease;
  box-shadow: 0 10px 25px rgba(254,88,98,.25);
}

.btn-primary1:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(254,88,98,.35);
}

/* ERROR STATE */
.invalid input,
.invalid select,
.invalid textarea{
  border-color: rgba(254,88,98,.8);
  box-shadow: 0 0 0 5px rgba(254,88,98,.1);
}

.error{
  font-size:12px;
  font-weight:600;
  color: var(--coral);
  display:none;
}

.invalid .error{
  display:block;
}

/* TOAST */
.toast{
  position:fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  opacity:0;
  background: linear-gradient(135deg,#172342,#1f2e55);
  color:#fff;
  padding:14px 18px;
  border-radius:18px;
  box-shadow: 0 25px 60px rgba(23,35,66,.3);
  transition: all .4s ease;
  display:flex;
  gap:10px;
  align-items:center;
  z-index:9999;
}

.toast.show{
  opacity:1;
  transform: translateX(-50%) translateY(0);
}

.toast i{
  color:#4ade80;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px){
  .form-wrap{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){

  .final{
    padding:60px 0;
  }

  .panel_reveal_cta,
  .panel_reveal_2{
    padding:20px;
  }

  input, select, textarea{
    font-size:16px; /* iOS zoom fix */
  }

  .toast{
    width: calc(100% - 24px);
    left:12px;
    transform: translateY(40px);
  }

  .toast.show{
    transform: translateY(0);
  }
}

/*  others */

.other-industry {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.35s ease;
}

.other-industry.active {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}