.get-started-page {
  background: #fff;
  padding: 30px 16px;
}

.get-started-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: stretch;
}

.get-started-form-panel {
  background: #0054a6;
  color: #fff;
  border-radius: 28px;
  padding: 40px;
}

.get-started-form-panel h1,
.get-started-form-panel p,
.get-started-form-panel label {
  color: #fff;
}

.get-started-eyebrow {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.get-started-form-panel h1 {
  font-size: 40px;
  max-width: 720px;
  margin-top: 8px;
  margin-bottom: 14px;
}


#leadform {
  display: grid;
  gap: 16px;
}

.field-wrap label {
  font-size: 16px;
  margin-bottom: 6px;
  display: inline-block;
}

.field-wrap input {
  width: 100%;
  min-height: 30%;
  border-radius: 8px;
  border: 1px solid #b9c4d6;
  padding: 12px 14px;
  font-size: 16px;
}

.field-wrap input:focus {
  outline: 2px solid #0f6fff;
}

.field-wrap input {
  color: #1f2f46;
}

.field-wrap input::placeholder {
  color: #aeb9c9;
}

.field-error {
  display: none;
  color: #ffd5d5;
  font-size: 14px;
  margin-top: 6px;
}

.field-error.visible {
  display: block;
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
}

.consent-row a {
  color: #fff;
  text-decoration: underline;
}

.consent-row input {
  margin-top: 0;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  cursor: pointer;
  accent-color: #ffffff;
}

.consent-row {
  cursor: pointer;
}

#leadform .primary-btn {
  margin-top: 6px;
  font-size: 18px;
  background: #ff6a00;
  border-color: #ff6a00;
}

#leadform .primary-btn:hover {
  background: #ea6200;
  border-color: #ea6200;
}

#formsuccess {
  background: #0054a6;
  border-radius: 12px;
  padding: 18px 16px;
}

#formsuccess h3,
#formsuccess p {
  color: #fff;
}

.get-started-info-panel {
  background: transparent;
  border: 1px solid #d9e0ed;
  border-radius: 24px;
  padding: 38px;
}

.get-started-info-panel h2 {
  color: #1d4071;
  font-size: 42px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.get-started-info-panel p {
  font-size: 21px;
  color: #4f5d73;
}

.info-card {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid #d9e0ed;
  border-radius: 16px;
}

.info-card strong {
  font-size: 26px;
  color: #1d4071;
  font-weight: 600;
}

.info-card ul {
  margin-top: 12px;
  padding-left: 18px;
}

.info-card li {
  list-style: disc;
  font-size: 19px;
  color: #425268;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .get-started-grid {
    grid-template-columns: 1fr;
  }

  .get-started-form-panel,
  .get-started-info-panel {
    border-radius: 20px;
    padding: 24px;
  }

  .get-started-form-panel h1 {
    font-size: 32px;
  }

  .get-started-info-panel h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .get-started-page {
    padding: 24px 10px;
  }

  .get-started-form-panel h1,
  .get-started-info-panel h2 {
    font-size: 24px;
  }

  .get-started-info-panel p {
    font-size: 17px;
  }

  .field-wrap label,
  .field-wrap input {
    font-size: 16px;
  }

  #leadform .primary-btn {
    width: 100%;
    font-size: 20px;
  }
}

.phone-field .iti,
.phone-field input[type="tel"] {
  display: block;
  width: 100%;
}

.phone-field .iti {
  margin-top: 6px;
}

.testimonials-card {
  overflow: hidden;
}

.testimonial-slider {
  margin-top: 14px;
  position: relative;
  min-height: 150px;
}

.testimonial-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(16px);
  animation: testimonial-rotate 30s ease-in-out infinite;
}

.testimonial-quote {
  font-size: 17px;
  color: #425268;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial-item span {
  font-size: 16px;
  font-weight: 700;
  color: #18355c;
}

.testimonial-item.t1 {
  animation-delay: -1s;
}

.testimonial-item.t2 {
  animation-delay: 9s;
}

.testimonial-item.t3 {
  animation-delay: 19s;
}

@keyframes testimonial-rotate {
  0% {
    opacity: 0;
    transform: translateX(12px);
  }
  3.333%, 30% {
    opacity: 1;
    transform: translateX(0);
  }
  33.333%, 100% {
    opacity: 0;
    transform: translateX(-12px);
  }
}

@media (max-width: 576px) {
  .testimonial-slider {
    min-height: 180px;
  }

  .testimonial-quote {
    font-size: 15px;
  }
}
