/* ==========================================================================
   FREE MIGRATION — Google Ads landing page
   One goal: the form. Everything else exists to remove a reason not to fill it.
   ========================================================================== */

/* :: SHELL :: */
.ld-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* :: HEADER :: */
.ld-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.ld-header .ld-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.ld-logo img {
  width: 168px;
  height: auto;
  display: block;
}
.ld-header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.ld-header-note {
  font-size: 13px;
  color: var(--lightBlue);
}
.ld-header-btn {
  padding: 10px 20px !important;
  font-size: 14px;
}

/* :: HERO :: */
.ld-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f6f9fd 0%, #eef2fb 100%);
  padding: 64px 0 72px;
}
.ld-hero .ld-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#d9dff6 1.5px, transparent 1.6px);
  background-size: 26px 26px;
  mask-image: radial-gradient(80% 70% at 30% 20%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(80% 70% at 30% 20%, #000 30%, transparent 100%);
  pointer-events: none;
}
.ld-hero .ld-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  top: -220px;
  left: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 79, 235, 0.13) 0%, transparent 70%);
  pointer-events: none;
}
.ld-hero .ld-wrap {
  position: relative;
  z-index: 2;
}
.hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: start;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-shadow);
  border-radius: 999px;
  padding: 7px 15px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.14;
  color: var(--darkBlue);
  margin-bottom: 18px;
}
.hero-title span {
  color: var(--primary);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--lightBlue);
  max-width: 560px;
  margin-bottom: 26px;
}
.hero-points {
  margin: 0 0 28px;
}
.hero-points li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
  font-size: 15px;
  font-weight: 500;
  color: var(--darkBlue);
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: var(--primary-shadow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234E4FEB' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--lightBlue);
}
.hero-trust span {
  position: relative;
  padding-left: 16px;
}
.hero-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

/* :: FORM CARD :: */
.hero-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(14, 41, 84, 0.10);
  padding: 30px 30px 26px;
  position: sticky;
  top: 24px;
}
.form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--darkBlue);
  margin-bottom: 4px;
}
.form-sub {
  font-size: 13.5px;
  color: var(--lightBlue);
  margin-bottom: 22px;
}
.hero-form .field {
  margin-bottom: 15px;
}
.hero-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--darkBlue);
  margin-bottom: 6px;
}
.hero-form label .opt {
  font-weight: 400;
  color: #9aa7c7;
}
.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--darkBlue);
  background: #fff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.hero-form textarea {
  resize: vertical;
  min-height: 78px;
}
.hero-form input::placeholder,
.hero-form textarea::placeholder {
  color: #9aa7c7;
}
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-shadow);
}
.hero-form .err {
  display: block;
  margin-top: 5px;
  font-size: 12.5px;
  color: var(--tomato);
}
.form-submit {
  margin-top: 8px;
  padding: 14px 20px !important;
  font-size: 15px !important;
}
.form-note {
  margin: 14px 0 0;
  font-size: 11.5px;
  line-height: 1.65;
  color: #9aa7c7;
}
.form-note a {
  color: var(--lightBlue);
  text-decoration: underline;
}

/* honeypot */
.hero-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* success state */
.form-done {
  text-align: center;
  padding: 12px 4px;
}
.form-done .tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(39, 225, 193, 0.14);
  color: #0f9b7f;
  margin-bottom: 18px;
}
.form-done h2 {
  font-size: 21px;
  font-weight: 700;
  color: var(--darkBlue);
  margin-bottom: 12px;
}
.form-done p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--lightBlue);
  margin-bottom: 12px;
}
.form-done .small {
  font-size: 13px;
  color: #9aa7c7;
  margin-bottom: 0;
}
.form-done a {
  color: var(--primary);
  font-weight: 600;
}
/* The one state that is not good news: amber, not red — nothing is broken for
   them, they just need to reach us another way. */
.form-done.is-failed .tick {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

/* :: SECTION FURNITURE :: */
.sec-title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--darkBlue);
  margin-bottom: 14px;
}
.sec-head {
  max-width: 640px;
  margin-bottom: 38px;
}
.sec-sub {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--lightBlue);
  margin: 0;
}

/* :: STEPS :: */
.ld-steps {
  background: #fff;
  padding: 76px 0;
}
.ld-steps .sec-title {
  margin-bottom: 38px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.step {
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--darkBlue);
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lightBlue);
  margin: 0;
}

/* :: SAFETY :: */
.ld-safety {
  background: var(--light);
  padding: 76px 0;
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 40px;
}
.safety-item {
  display: flex;
  gap: 14px;
}
.safety-item .ic {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--primary);
  margin-top: 2px;
}
.safety-item h3 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--darkBlue);
  margin-bottom: 6px;
}
.safety-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lightBlue);
  margin: 0;
}

/* :: AGENCY :: */
.ld-agency {
  background: #fff;
  padding: 76px 0;
}
.agency-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 50px;
  align-items: center;
  padding: 44px 46px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(135deg, #f8faff 0%, #eef2fb 100%);
}
.agency-copy h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.28;
  color: var(--darkBlue);
  margin-bottom: 14px;
}
.agency-copy > p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--lightBlue);
  margin-bottom: 20px;
}
.agency-copy ul {
  margin: 0 0 26px;
}
.agency-copy li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--darkBlue);
}
.agency-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--primary);
}
.agency-visual {
  height: 340px;
}

/* :: INCLUDED :: */
.ld-included {
  background: var(--light);
  padding: 76px 0;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 26px;
  margin: 0 0 26px;
}
.included-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--darkBlue);
}
.included-grid svg {
  flex-shrink: 0;
  color: var(--primary);
}
.included-note {
  font-size: 14.5px;
  color: var(--lightBlue);
  margin: 0;
}
.included-note a {
  color: var(--primary);
  font-weight: 600;
}

/* :: FAQ :: */
.ld-faq {
  background: #fff;
  padding: 76px 0;
}
.ld-faq .sec-title {
  margin-bottom: 30px;
}
.faq-list {
  max-width: 800px;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--darkBlue);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item .chev {
  flex-shrink: 0;
  display: inline-flex;
  color: var(--primary);
  transition: transform 0.2s ease;
}
.faq-item[open] .chev {
  transform: rotate(180deg);
}
.faq-item p {
  margin: 0;
  padding: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--lightBlue);
  max-width: 700px;
}

/* :: FINAL CTA :: */
.ld-final {
  background: linear-gradient(135deg, var(--primary) 0%, #3c3dd6 100%);
  padding: 72px 0;
  text-align: center;
  color: #fff;
}
.ld-final h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  line-height: 1.28;
  color: #fff;
  max-width: 760px;
  margin: 0 auto 16px;
}
.ld-final > .ld-wrap > p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin: 0 auto 30px;
}
.ld-final .theme-btn {
  background: #fff !important;
  border-color: #fff !important;
  color: var(--primary) !important;
  padding: 15px 34px !important;
  font-size: 16px !important;
}
.ld-final .final-note {
  margin: 26px auto 0;
  max-width: 620px;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}
.ld-final .final-note a {
  color: #fff;
  text-decoration: underline;
}

/* :: FOOTER :: */
.ld-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 30px 0;
  text-align: center;
}
.ld-company {
  font-size: 12.5px;
  line-height: 1.8;
  color: #9aa7c7;
  margin-bottom: 12px;
}
.ld-company strong {
  color: var(--lightBlue);
}
.ld-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0;
  font-size: 13px;
}
.ld-links a {
  color: var(--lightBlue);
}
.ld-links a:hover {
  color: var(--primary);
}

/* :: RESPONSIVE :: */
@media (max-width: 1199px) {
  .hero-row {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 36px;
  }
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .hero-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .hero-form {
    position: static;
    max-width: 520px;
  }
  .agency-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding: 34px 30px;
  }
  .agency-visual {
    height: 280px;
    max-width: 240px;
  }
  .included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .ld-hero {
    padding: 42px 0 52px;
  }
  .ld-steps,
  .ld-safety,
  .ld-agency,
  .ld-included,
  .ld-faq,
  .ld-final {
    padding: 52px 0;
  }
  .steps-grid,
  .safety-grid,
  .included-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-form {
    padding: 24px 22px 22px;
  }
  .ld-header-btn {
    padding: 9px 16px !important;
    font-size: 13px;
  }
  .ld-logo img {
    width: 140px;
  }
}
