@charset "UTF-8";
.landing-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: calc(var(--header-height, 100px) + var(--space-4, 3rem)) var(--container-padding) calc(var(--space-4, 3rem) + 100px);
  color: var(--color-white, #fff);
  overflow: hidden;
}
.landing-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: #F8B425;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}
.landing-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(248, 180, 37, 0.75) 0%, rgba(248, 180, 37, 0.85) 100%);
  z-index: 1;
}
.landing-hero__wave {
  position: absolute !important;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  margin: 0;
  padding: 0;
}
.landing-hero__trust-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding: 1.5rem 0 0;
  margin-top: 2rem;
}
.landing-hero__trust-strip img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.landing-hero__trust-strip img:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .landing-hero__trust-strip {
    gap: 1rem;
  }
  .landing-hero__trust-strip img {
    height: 28px;
  }
}
.landing-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4, 3rem);
  align-items: center;
}
@media (min-width: 992px) {
  .landing-hero__inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 5vw;
  }
}
.landing-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.landing-hero__logo {
  height: auto;
  max-height: 80px;
  margin-bottom: var(--space-3, 2rem);
}
.landing-hero__rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: var(--space-3, 2rem);
  font-family: var(--font-primary, sans-serif);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}
.landing-hero__rating-badge .stars {
  color: #FFD700;
  letter-spacing: 2px;
}
.landing-hero__rating-badge .shield {
  color: #57803A;
  display: flex;
  align-items: center;
}
.landing-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: var(--space-2, 1.5rem);
  font-weight: 800;
  color: var(--color-text-light);
}
.landing-hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-4, 3rem);
  font-weight: 600;
  opacity: 0.9;
}
.landing-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3, 2rem);
  flex-wrap: wrap;
}
.landing-hero__actions .btn-call {
  background-color: #ffffff;
  color: var(--color-brand-green-dark, #57803A);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.landing-hero__actions .btn-call:hover {
  background-color: var(--color-brand-green, #72A250);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.landing-hero__actions .btn-call:hover .btn-icon-wrap {
  background-color: var(--color-brand-green-dark, #57803A);
  transform: rotate(45deg);
}
.landing-hero__actions .btn-call .btn-icon-wrap {
  background-color: var(--color-brand-green-dark, #57803A);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-hero__actions .btn-call .btn-icon-wrap svg {
  width: 14px;
  height: 14px;
}
.landing-hero__form-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.landing-hero__form-card {
  background: #ffffff;
  border-radius: 8px;
  border-top: 4px solid #57803A;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  color: var(--color-text-dark, #4F4F4F);
  text-align: center;
}
.landing-hero__form-card .status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2e7d32;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.landing-hero__form-card .status-indicator .dot {
  width: 6px;
  height: 6px;
  background-color: #4caf50;
  border-radius: 50%;
  display: inline-block;
}
.landing-hero__form-card .form-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.landing-hero__form-card .form-subtitle {
  color: var(--color-text-medium, #666);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.landing-hero__form-card .form-container {
  margin-bottom: 2rem;
}
.landing-hero__form-card .form-container .wpforms-container {
  margin: 0;
}
.landing-hero__form-card .form-container .wpforms-container .wpforms-field {
  padding: 0;
  margin-bottom: 1rem;
}
.landing-hero__form-card .form-container .wpforms-container input[type=text],
.landing-hero__form-card .form-container .wpforms-container input[type=email],
.landing-hero__form-card .form-container .wpforms-container input[type=tel] {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  width: 100%;
  font-size: 1rem;
}
.landing-hero__form-card .form-container .wpforms-container input[type=text]::placeholder,
.landing-hero__form-card .form-container .wpforms-container input[type=email]::placeholder,
.landing-hero__form-card .form-container .wpforms-container input[type=tel]::placeholder {
  color: #999;
}
.landing-hero__form-card .form-container .wpforms-container button[type=submit] {
  background: var(--color-brand-gold, #F8B425);
  color: var(--color-brand-green-dark, #57803A);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  width: 100%;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  margin-top: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.landing-hero__form-card .form-container .wpforms-container button[type=submit]::after {
  content: "↗";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--color-brand-green-dark, #57803A);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.8rem;
  line-height: 1;
  font-family: sans-serif;
  margin-left: 8px;
}
.landing-hero__form-card .form-container .wpforms-container button[type=submit]:hover {
  background: rgb(247.2066666667, 171.5, 12.2933333333);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(248, 180, 37, 0.3);
}
.landing-hero__form-card .trust-badges {
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}
.landing-hero__form-card .trust-badges .icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.landing-hero__form-card .trust-badges .badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-medium, #4F4F4F);
  font-size: 0.75rem;
  font-weight: 600;
}
.landing-hero__form-card .trust-badges .badge svg {
  width: 12px;
  height: 12px;
  fill: #57803A;
}
.landing-hero__form-card .trust-badge {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing-hero__form-card .trust-badge img {
  height: 24px;
  width: auto;
}

/*# sourceMappingURL=landing-hero.css.map */
