.lpv3-industry-hero__media {
  background-image: url('/static/hero-lobby.png');
  background-position: 75% center;
}

.lpv3-industry-hero__grid {
  align-items: start;
  min-height: 0;
  padding: 0.5rem 0 1.35rem;
}

.lpv3-contact-hero__lead--mobile {
  display: none;
}

.lpv3-contact-hero__actions {
  display: none;
}

/* ── Contact form layout ── */

section.lpv3-contact-main {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: #f8fafc;
  border-top: 1px solid rgba(158, 201, 222, 0.35);
}

.lpv3-contact-main__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem;
  align-items: start;
}

.lpv3-contact-info,
.lpv3-contact-form-card {
  border: 1px solid rgba(158, 201, 222, 0.45);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(12, 45, 74, 0.06);
}

.lpv3-contact-info {
  padding: 1.35rem 1.3rem;
}

.lpv3-contact-info h2 {
  margin: 0;
  color: var(--lpv3-navy);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
}

.lpv3-contact-steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.lpv3-contact-step {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.lpv3-contact-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: var(--lpv3-sky-soft);
  color: var(--lpv3-cyan);
  font-size: 0.78rem;
  font-weight: 800;
}

.lpv3-contact-step h3 {
  margin: 0 0 0.25rem;
  color: var(--lpv3-navy);
  font-size: 0.95rem;
  font-weight: 700;
}

.lpv3-contact-step p {
  margin: 0;
  color: var(--lpv3-text-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

.lpv3-contact-details {
  margin-top: 1.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(158, 201, 222, 0.35);
}

.lpv3-contact-details address {
  font-style: normal;
}

.lpv3-contact-details p {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 0.65rem;
  color: var(--lpv3-text);
  font-size: 0.9rem;
  line-height: 1.55;
}

.lpv3-contact-details p:last-child {
  margin-bottom: 0;
}

.lpv3-contact-details i {
  margin-top: 0.15rem;
  color: var(--lpv3-green-dark);
}

.lpv3-contact-details a {
  color: var(--lpv3-cyan);
  font-weight: 700;
  text-decoration: none;
}

.lpv3-contact-details a:hover {
  text-decoration: underline;
}

.lpv3-contact-form-card {
  padding: 1.35rem 1.3rem 1.25rem;
}

.lpv3-contact-form-card__head h2 {
  margin: 0;
  color: var(--lpv3-navy);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
}

.lpv3-contact-form-card__head p {
  margin: 0.55rem 0 0;
  color: var(--lpv3-text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.lpv3-contact-success {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1rem 0 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(76, 175, 80, 0.25);
  border-radius: 10px;
  background: #ecfdf3;
}

.lpv3-contact-success i {
  margin-top: 0.1rem;
  color: var(--lpv3-brand-green);
}

.lpv3-contact-success h3 {
  margin: 0 0 0.2rem;
  color: var(--lpv3-navy);
  font-size: 0.95rem;
  font-weight: 800;
}

.lpv3-contact-success p {
  margin: 0;
  color: var(--lpv3-text-soft);
  font-size: 0.88rem;
}

.lpv3-contact-form {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.lpv3-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.lpv3-contact-form__field {
  display: grid;
  gap: 0.35rem;
}

.lpv3-contact-form__field label {
  color: var(--lpv3-navy);
  font-size: 0.84rem;
  font-weight: 600;
}

.lpv3-contact-form__field label .lpv3-required {
  color: #e53935;
}

.lpv3-contact-form input,
.lpv3-contact-form select,
.lpv3-contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(158, 201, 222, 0.55);
  border-radius: 8px;
  background: #ffffff;
  color: var(--lpv3-text);
  font-size: 0.92rem;
  font-family: inherit;
}

.lpv3-contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.lpv3-contact-form input:focus,
.lpv3-contact-form select:focus,
.lpv3-contact-form textarea:focus {
  outline: none;
  border-color: var(--lpv3-cyan);
  box-shadow: 0 0 0 2px rgba(42, 143, 158, 0.15);
}

.lpv3-contact-form__notice {
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(158, 201, 222, 0.45);
  border-radius: 8px;
  background: var(--lpv3-sky-soft);
}

.lpv3-contact-form__notice-title {
  margin: 0 0 0.35rem;
  color: var(--lpv3-navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.lpv3-contact-form__notice p {
  margin: 0;
  color: var(--lpv3-text-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.lpv3-contact-form__submit {
  width: 100%;
  min-width: 0;
  margin-top: 0.25rem;
}

.lpv3-contact-form__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.55rem 0 0;
  color: #78909c;
  font-size: 0.74rem;
  line-height: 1.45;
}

.lpv3-contact-form__secure i {
  color: var(--lpv3-green-dark);
}

/* ── Office & map ── */

section.lpv3-contact-office {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: #ffffff;
  border-top: 1px solid rgba(158, 201, 222, 0.35);
}

.lpv3-contact-office__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.25rem;
  align-items: stretch;
}

.lpv3-contact-office__details {
  padding: 1.35rem 1.3rem;
  border: 1px solid rgba(158, 201, 222, 0.45);
  border-radius: 12px;
  background: #f8fafc;
}

.lpv3-contact-office__details h2 {
  margin: 0 0 0.85rem;
  color: var(--lpv3-navy);
  font-size: 1.15rem;
  font-weight: 800;
}

.lpv3-contact-office__details address {
  font-style: normal;
}

.lpv3-contact-office__details p {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 0.65rem;
  color: var(--lpv3-text);
  font-size: 0.92rem;
  line-height: 1.55;
}

.lpv3-contact-office__details i {
  margin-top: 0.15rem;
  color: var(--lpv3-green-dark);
}

.lpv3-contact-office__details a {
  color: var(--lpv3-cyan);
  font-weight: 700;
  text-decoration: none;
}

.lpv3-contact-office__map {
  min-height: 280px;
  border: 1px solid rgba(158, 201, 222, 0.45);
  border-radius: 12px;
  overflow: hidden;
  background: var(--lpv3-sky-soft);
}

.lpv3-contact-office__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.lpv3-contact-office__actions {
  margin-top: 1rem;
}

@media (max-width: 960px) {
  .lpv3-contact-main__grid,
  .lpv3-contact-office__grid {
    grid-template-columns: 1fr;
  }

  .lpv3-contact-form-card {
    order: 1;
  }

  .lpv3-contact-info {
    order: 2;
  }
}

@media (max-width: 768px) {
  .lpv3-industry-hero__trust {
    display: none;
  }

  .lpv3-contact-hero__lead--desktop {
    display: none;
  }

  .lpv3-contact-hero__lead--mobile {
    display: block;
  }

  .lpv3-contact-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.25rem;
  }

  .lpv3-contact-hero__actions .lpv3-btn {
    width: 100%;
    min-width: 0;
  }

  .lpv3-contact-form__row {
    grid-template-columns: 1fr;
  }
}
