
    /* Minimal extra styles so the form looks native with your theme */
    .lp_section { padding: 60px 0; }
    .lp_grid {
      display: grid;
      grid-template-columns: 6fr 3fr;
      gap: 28px;
      align-items: start;
    }

    .small_subline {
      font-size: medium;
      color: #5d5d5d;
      opacity: .85;
      margin-top: 8px;
      line-height: 1.4;
      text-align: center;
    }

    @media (max-width: 768px)
    { .lp_grid
      { grid-template-columns: 1fr; gap: 0px; }
    .lp_card {
         padding-top: 0px;
  margin-top: 10px;
    }

    .small_subline {
      font-size: 12px;
    }


    }

    .lp_card {
      background: #fff;
      border-radius: 18px;
     padding-left: 10px;
     padding-right: 10px;
     padding-top: 5px;
     padding-bottom: 30px; /* ensures hint text has room */
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.06);
      height: auto !important;
      max-height: none !important;
      overflow: visible !important;
    }
    .lp_form .field { margin-bottom: 14px; }
    .lp_form label { display:block; font-size: 13px; margin-bottom: 6px; opacity: .85; }
    .lp_form input[type="text"],
    .lp_form input[type="email"] {
      width: 100%;
      padding: 12px 12px;
      border-radius: 12px;
      border: 1px solid rgba(0,0,0,0.14);
      outline: none;
      font-size: 15px;
      background: #fff;
    }
    .lp_form input:focus {
      border-color: #F9822E;
      box-shadow: 0 0 0 4px rgba(13,153,255,0.14);
    }

    .lp_consent {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 12px;
      border-radius: 14px;
      border: 1px solid rgba(0,0,0,0.10);
      background: rgba(13,153,255,0.04);
      margin-top: 6px;
    }
    .lp_consent input { margin-top: 3px; }

    .lp_btn {
      width: 100%;
      padding: 12px 14px;
      border-radius: 14px;
      border: none;
      cursor: pointer;
      font-weight: 700;
      font-size: 15px;
      color: #fff;
      background: linear-gradient(90deg, #fdcb2b, #F9822E, #fdcb2b);
      transition: transform .05s ease;
    }
    .lp_btn:disabled { opacity: .65; cursor:not-allowed; }
    .lp_btn:active { transform: translateY(1px); }

    .lp_msg {
      display: none;
      margin: 12px 0 0;
      padding: 12px;
      border-radius: 14px;
      font-size: 14px;
      line-height: 1.4;
    }
    .lp_msg.error { background:#ffebee; color:#b71c1c; border:1px solid #ffcdd2; }
    .lp_msg.success { background:#e8f5e9; color:#1b5e20; border:1px solid #c8e6c9; }

    .lp_hint { font-size: 12.5px; opacity: .75; margin-top: 10px; line-height: 1.45; }
    .lp_bullets { margin-top: 16px; }
    .lp_bullets li { margin: 8px 0; }

    .lp_turnstile { margin: 10px 0 6px;; }

    .lp_video_shell{
      width:100%;
      aspect-ratio:4/3;           /* locks video + poster to same size */
      border-radius:18px;
      overflow:hidden;
      box-shadow:0 10px 30px rgba(0,0,0,.08);
      border:1px solid rgba(0,0,0,.06);
    }

    .lp_video_shell video{
      width:100%;
      height:100%;
      object-fit:cover;            /* ensures poster fills perfectly */
      display:block;
    }


    /* Allow the landing section + grid to grow with the form */
    .hero_section.lp_section{
      height: auto !important;
      min-height: auto !important;
      overflow: visible !important;
      padding-bottom: 80px; /* extra breathing room */
    }

/* If the theme sets a fixed height on hero containers, override it */
.lp_grid{
  align-items: start;
  overflow: visible !important;
}



/* If some theme rule is clipping form content, force it visible */
.lp_form{
  overflow: visible !important;
}

.lp_form select,
.lp_form textarea {
  width: 100%;
   color: #222;               /* normal text colour */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 12px 40px 12px 12px;        /* reserve space on right for chevron */
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.14);
  outline: none;
  font-size: 15px;
  background: #fff 
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='14' height='14' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>")
    no-repeat calc(100% - 12px) center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}



/* ensure textarea has no background image */
.lp_form textarea {
  background-image: none;
  background-color: #fff;
  resize: vertical; /* helpful UX */
}

/* focus state (matches input:focus) */
.lp_form select:focus,
.lp_form textarea:focus {
  border-color: #F9822E;
  box-shadow: 0 0 0 4px rgba(13,153,255,0.14);
}

/* hide default IE/Edge dropdown arrow */
.lp_form select::-ms-expand { display: none; }
