/* Homepage V3 */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap');

:root {
  --lpv3-navy: #0c2d4a;
  --lpv3-navy-deep: #0f1729;
  --lpv3-teal: #1B3A4B;
  --lpv3-cyan: #2a8f9e;
  --lpv3-green: #7cb342;
  --lpv3-green-bright: #8dc63f;
  --lpv3-green-dark: #689f38;
  --lpv3-brand-green: #4CAF50;
  --lpv3-sky: #c5e4f3;
  --lpv3-sky-soft: #e8f4fa;
  --lpv3-form-border: #9ec9de;
  --lpv3-text: #1e293b;
  --lpv3-text-soft: #64748b;
  --lpv3-max-width: 1400px;
  --lpv3-gutter: 2rem;
  --lpv3-rail-width: 108px;
  --lpv3-rail-gap: 1.5rem;
  --lpv3-header-height: var(--site-header-height, 124px);
  --lpv3-brand-width: 200px;
  --lpv3-brand-padding-x: 1rem;
  --lpv3-logo-max-width: 140px;
  --lpv3-service-card-min: 10.75rem;
  --lpv3-logo-align: calc(
    var(--lpv3-brand-padding-x) +
    max(0px, (var(--lpv3-brand-width) - (2 * var(--lpv3-brand-padding-x)) - var(--lpv3-logo-max-width)) / 2)
  );
}

.lpv3-page {
  background: #ffffff;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.lpv3-shell {
  max-width: var(--lpv3-max-width);
  margin: 0 auto;
  padding: 0 var(--lpv3-gutter);
  width: 100%;
}

/* ── Hero ── */

section.lpv3-hero {
  position: relative;
  overflow: hidden;
  background: var(--lpv3-navy-deep);
  padding: 0;
}

.lpv3-hero__body {
  position: relative;
  min-height: clamp(520px, 72vh, 780px);
}

.lpv3-hero__body > .lpv3-shell {
  position: relative;
  z-index: 1;
}

.lpv3-hero__form-shell {
  position: absolute;
  top: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--lpv3-max-width);
  padding: 0 var(--lpv3-gutter);
  box-sizing: border-box;
  z-index: 2;
  pointer-events: none;
}

.lpv3-hero__media,
.lpv3-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lpv3-hero__media {
  background-image: url('/static/corporate_lobby_4800x2700_true_double.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.lpv3-hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(12, 45, 74, 0.06) 40%,
    rgba(12, 45, 74, 0.16) 100%
  );
}

.lpv3-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--lpv3-brand-width) minmax(0, 1fr) minmax(360px, 480px);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
  padding: 3.5rem 0 2.5rem;
}

.lpv3-hero__content {
  grid-column: 1 / 3;
  grid-row: 1;
  padding-top: 0.5rem;
  padding-left: var(--lpv3-logo-align);
}

.lpv3-hero__form-wrap {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  position: relative;
  pointer-events: auto;
}

@media (min-width: 1025px) {
  section.lpv3-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 0;
    overflow: hidden;
  }

  .lpv3-hero__body {
    grid-column: 1;
    grid-row: 1;
    min-height: clamp(520px, 72vh, 780px);
  }

  .lpv3-hero__form-shell {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: var(--lpv3-max-width);
    justify-self: center;
    height: auto;
    min-height: clamp(520px, 72vh, 780px);
    padding: 3.5rem var(--lpv3-gutter) 2.5rem;
    display: grid;
    grid-template-columns: var(--lpv3-brand-width) minmax(0, 1fr) minmax(360px, 480px);
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: start;
    align-self: start;
    box-sizing: border-box;
    margin-top: 0;
  }

  .lpv3-hero__form-shell .lpv3-hero__form-wrap {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 100%;
    max-width: 480px;
    margin-left: 0;
    margin-inline: 0;
    transform: translateX(1rem);
  }

  .lpv3-trust-band {
    grid-column: 1;
    grid-row: 2;
  }
}

.lpv3-hero__title-line--mobile {
  display: none;
}

.lpv3-section-tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--lpv3-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lpv3-hero__content h1 {
  margin: 0;
  max-width: 11.5ch;
  color: var(--lpv3-navy);
  font-size: clamp(2.15rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.lpv3-hero__lead {
  margin: 1.35rem 0 0;
  max-width: 36rem;
  color: var(--lpv3-cyan);
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
  font-weight: 600;
  line-height: 1.55;
}

.lpv3-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.lpv3-hero__mobile-photo {
  display: none;
  margin: 0;
}

.lpv3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 0.72rem 1.65rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lpv3-btn--primary {
  background: var(--lpv3-navy);
  border: 2px solid var(--lpv3-navy);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(12, 45, 74, 0.18);
}

.lpv3-btn--primary:hover {
  background: #0a2540;
  color: #ffffff;
}

.lpv3-btn--outline {
  background: #ffffff;
  border: 2px solid var(--lpv3-green-bright);
  color: var(--lpv3-green);
  box-shadow: 0 4px 14px rgba(12, 45, 74, 0.14);
}

.lpv3-btn--outline:hover {
  background: rgba(141, 198, 63, 0.08);
  color: var(--lpv3-green-dark);
}

/* ── Trust band (full-width, below hero grid) ── */

.lpv3-trust-band {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, var(--lpv3-sky-soft) 0%, #f8fafc 100%);
  border-top: 1px solid rgba(158, 201, 222, 0.45);
  border-bottom: 1px solid rgba(158, 201, 222, 0.35);
}

.lpv3-trust-band__inner {
  display: grid;
  gap: 0;
}

.lpv3-trust-band__credentials,
.lpv3-trust-band__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.lpv3-trust-band__credentials {
  padding: 1rem 0;
}

.lpv3-trust-band__proof {
  padding: 0.85rem 0 1.05rem;
  border-top: 1px solid rgba(158, 201, 222, 0.35);
}

.lpv3-trust-band__item,
.lpv3-trust-band__proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
}

.lpv3-trust-band__item {
  color: var(--lpv3-navy);
}

.lpv3-trust-band__item i {
  color: var(--lpv3-green-dark);
  font-size: 0.92rem;
}

.lpv3-trust-band__proof-label {
  color: var(--lpv3-text-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lpv3-trust-band__proof-item {
  color: var(--lpv3-text);
}

.lpv3-trust-band__proof-item i {
  color: var(--lpv3-cyan);
  font-size: 0.85rem;
}

.lpv3-trust-band__divider {
  width: 1px;
  height: 14px;
  background: rgba(12, 45, 74, 0.14);
  flex-shrink: 0;
}

.lpv3-trust-band__divider--proof {
  background: rgba(12, 45, 74, 0.1);
}

/* ── Hero form ── */

.lpv3-hero__form-card {
  position: relative;
  z-index: 2;
  padding: 2rem 2rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 44px rgba(12, 45, 74, 0.22);
  backdrop-filter: blur(6px);
}

.lpv3-hero-form__head {
  margin-bottom: 1.5rem;
}

.lpv3-hero-form__head h2 {
  margin: 0;
  color: var(--lpv3-navy);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: left;
}

.lpv3-hero-form__head p {
  margin: 0.45rem 0 0;
  color: var(--lpv3-text-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.lpv3-hero-form {
  display: grid;
  gap: 1.15rem;
}

.lpv3-hero-form__error {
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(229, 57, 53, 0.35);
  border-radius: 8px;
  background: #fff5f5;
  color: #b71c1c;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
}

.lpv3-hero-form__field label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--lpv3-navy);
  font-size: 0.9rem;
  font-weight: 600;
}

.lpv3-hero-form__field label .lpv3-required {
  color: #e53935;
  font-weight: 700;
}

.lpv3-hero-form__field input,
.lpv3-hero-form__field select {
  width: 100%;
  padding: 0.35rem 0 0.5rem;
  border: none;
  border-bottom: 1px solid var(--lpv3-navy);
  border-radius: 0;
  background: transparent;
  color: var(--lpv3-text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.lpv3-hero-form__field input::placeholder {
  color: transparent;
}

.lpv3-hero-form__field input:focus,
.lpv3-hero-form__field select:focus {
  outline: none;
  border-bottom-width: 2px;
  border-bottom-color: var(--lpv3-cyan);
  padding-bottom: calc(0.5rem - 1px);
}

.lpv3-hero-form__field select {
  cursor: pointer;
  color: var(--lpv3-text-soft);
}

.lpv3-hero-form__field select:valid {
  color: var(--lpv3-text);
}

.lpv3-hero-form__notice {
  margin-top: 0.35rem;
  padding-top: 0.5rem;
}

.lpv3-hero-form__notice-title {
  margin: 0 0 0.45rem;
  color: var(--lpv3-navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.lpv3-hero-form__legal {
  margin: 0;
  color: #78909c;
  font-size: 0.78rem;
  line-height: 1.55;
}

.lpv3-hero-form__submit {
  margin-top: 1.25rem;
}

.lpv3-hero-form__submit button {
  width: 100%;
  padding: 0.82rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: var(--lpv3-navy);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(12, 45, 74, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lpv3-hero-form__submit button:hover {
  background: #0a2540;
  transform: translateY(-1px);
}

.lpv3-hero__form-secure {
  margin: 0.85rem 0;
  padding: 0 0.35rem;
  color: rgba(203, 213, 225, 0.88);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

/* ── Floating action rail ── */

.lpv3-hero-rail {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 900;
  display: flex;
  flex-direction: column;
  width: 108px;
  transform: translateY(-50%);
  box-shadow: -4px 0 18px rgba(12, 45, 74, 0.12);
}

.lpv3-hero-rail__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 88px;
  padding: 0.75rem 0.5rem;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  transition: filter 0.2s ease;
}

.lpv3-hero-rail__item:hover {
  filter: brightness(1.06);
  color: #ffffff;
}

.lpv3-hero-rail__item i {
  font-size: 1.35rem;
}

.lpv3-hero-rail__item--quote {
  background: var(--lpv3-navy-deep);
}

.lpv3-hero-rail__item--story {
  background: var(--lpv3-teal);
}

.lpv3-hero-rail__item--contact {
  background: var(--lpv3-brand-green);
}

/* ── Services ── */

section.lpv3-services {
  scroll-margin-top: var(--lpv3-header-height);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: #ffffff;
}

.lpv3-services__layout {
  display: grid;
  grid-template-columns: var(--lpv3-brand-width) minmax(0, 1fr) minmax(420px, 560px);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.lpv3-services__head,
.lpv3-services__grid {
  grid-column: 1 / 3;
  padding-left: var(--lpv3-logo-align);
}

.lpv3-services__head {
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
  text-align: left;
}

.lpv3-services__tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--lpv3-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lpv3-services__head h2 {
  margin: 0;
  color: var(--lpv3-navy);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-align: left;
}

.lpv3-services__head p {
  margin: 1rem 0 0;
  max-width: 36rem;
  color: var(--lpv3-text-soft);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
}

.lpv3-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(var(--lpv3-service-card-min), 1fr));
  gap: 1.25rem;
  align-items: start;
  width: 100%;
}

.lpv3-services__media {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: stretch;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  min-height: clamp(280px, 42vw, 520px);
  padding: 0.5rem;
  border: 1px solid rgba(158, 201, 222, 0.55);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(12, 45, 74, 0.08);
}

.lpv3-services__media-panel {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(158, 201, 222, 0.35);
}

.lpv3-services__media-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 45, 74, 0) 55%, rgba(12, 45, 74, 0.12) 100%);
  pointer-events: none;
}

.lpv3-services__media-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lpv3-services__media-panel--janitorial img {
  object-position: 52% 88%;
  transform: scale(1.18);
  transform-origin: 52% 88%;
}

.lpv3-service-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 1.15rem 1.1rem 1rem;
  border: 1px solid rgba(158, 201, 222, 0.55);
  border-radius: 6px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lpv3-service-card:hover {
  border-color: rgba(42, 143, 158, 0.45);
  box-shadow: 0 8px 24px rgba(12, 45, 74, 0.08);
}

.lpv3-service-card__icon {
  display: inline-flex;
  flex: 0 0 2.5rem;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: var(--lpv3-sky-soft);
  color: var(--lpv3-green-dark);
}

.lpv3-service-card__icon i {
  display: block;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
}

.lpv3-service-card h3 {
  margin: 0;
  color: var(--lpv3-navy);
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  font-weight: 700;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.lpv3-service-card__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.lpv3-service-card__summary {
  display: none;
  margin: 0;
}

.lpv3-service-card ul {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0.55rem 0 0.5rem;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.lpv3-service-card li {
  position: relative;
  padding-left: 0.85rem;
  color: var(--lpv3-text);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.4;
}

.lpv3-service-card li + li {
  margin-top: 0.35rem;
}

.lpv3-service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lpv3-cyan);
}

.lpv3-service-card a {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 0.15rem;
  color: var(--lpv3-cyan);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.lpv3-service-card a::after {
  content: '\2192';
  font-size: 0.95em;
}

.lpv3-service-card a:hover {
  color: var(--lpv3-navy);
  gap: 0.45rem;
}

/* ── Why (Facility Managers) ── */

section.lpv3-why {
  scroll-margin-top: var(--lpv3-header-height);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: linear-gradient(180deg, var(--lpv3-sky-soft) 0%, #f8fafc 100%);
  border-top: 1px solid rgba(158, 201, 222, 0.35);
}

.lpv3-why__layout {
  display: grid;
  grid-template-columns: var(--lpv3-brand-width) minmax(0, 1fr);
}

.lpv3-why__head,
.lpv3-why__grid {
  grid-column: 1 / -1;
  padding-left: calc(var(--lpv3-brand-width) + var(--lpv3-logo-align));
}

.lpv3-why__head {
  max-width: 42rem;
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
  text-align: left;
}

.lpv3-why__tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--lpv3-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lpv3-why__head h2 {
  margin: 0;
  color: var(--lpv3-navy);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-align: left;
}

.lpv3-why__head p {
  margin: 1rem 0 0;
  color: var(--lpv3-text-soft);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
}

.lpv3-why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  padding-right: 0;
}

.lpv3-why-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.2rem 1.25rem;
  border: 1px solid rgba(158, 201, 222, 0.55);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(12, 45, 74, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lpv3-why-card:hover {
  border-color: rgba(42, 143, 158, 0.45);
  box-shadow: 0 10px 28px rgba(12, 45, 74, 0.08);
  transform: translateY(-2px);
}

.lpv3-why-card__icon {
  display: inline-flex;
  flex: 0 0 2.5rem;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--lpv3-sky-soft);
  color: var(--lpv3-green-dark);
}

.lpv3-why-card__icon i {
  display: block;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
}

.lpv3-why-card__body {
  flex: 1 1 auto;
}

.lpv3-why-card__body h3 {
  margin: 0;
  color: var(--lpv3-navy);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
}

.lpv3-why-card__body p {
  margin: 0.65rem 0 0;
  color: var(--lpv3-text);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}

/* ── Our Work ── */

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

.lpv3-work__layout {
  display: grid;
  grid-template-columns: var(--lpv3-brand-width) minmax(0, 1fr);
}

.lpv3-work__head,
.lpv3-work__featured,
.lpv3-work__highlights {
  grid-column: 1 / -1;
  padding-left: calc(var(--lpv3-brand-width) + var(--lpv3-logo-align));
}

.lpv3-work__head {
  max-width: 42rem;
  margin: 0 0 clamp(2rem, 4vw, 2.5rem);
  text-align: left;
}

.lpv3-work__tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--lpv3-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lpv3-work__head h2 {
  margin: 0;
  color: var(--lpv3-navy);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-align: left;
}

.lpv3-work__head p {
  margin: 1rem 0 0;
  color: var(--lpv3-text-soft);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
}

.lpv3-work__featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

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

.lpv3-work-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(158, 201, 222, 0.55);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(12, 45, 74, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lpv3-work-card:hover {
  border-color: rgba(42, 143, 158, 0.45);
  box-shadow: 0 10px 28px rgba(12, 45, 74, 0.08);
  transform: translateY(-2px);
}

.lpv3-work-card__photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--lpv3-sky-soft);
}

.lpv3-work-card--featured .lpv3-work-card__photo {
  aspect-ratio: 4 / 3;
}

.lpv3-work-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lpv3-work-card__chip {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  background: rgba(12, 45, 74, 0.82);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.lpv3-work-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 0.45rem;
  padding: 1.1rem 1.15rem 1.2rem;
}

.lpv3-work-card__service {
  color: var(--lpv3-cyan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lpv3-work-card__body h3 {
  margin: 0;
  color: var(--lpv3-navy);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

.lpv3-work-card__body p {
  margin: 0;
  color: var(--lpv3-text);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
}

/* ── Google Reviews ── */

section.lpv3-reviews {
  scroll-margin-top: var(--lpv3-header-height);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: linear-gradient(180deg, var(--lpv3-sky-soft) 0%, #f8fafc 100%);
  border-top: 1px solid rgba(158, 201, 222, 0.35);
}

.lpv3-reviews__layout {
  display: grid;
  grid-template-columns: var(--lpv3-brand-width) minmax(0, 1fr);
}

.lpv3-reviews__head,
.lpv3-reviews__summary,
.lpv3-reviews__banner,
.lpv3-reviews__grid {
  grid-column: 1 / -1;
  padding-left: calc(var(--lpv3-brand-width) + var(--lpv3-logo-align));
}

.lpv3-reviews__head {
  max-width: 42rem;
  margin: 0 0 clamp(1.75rem, 3vw, 2.25rem);
  text-align: left;
}

.lpv3-reviews__tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--lpv3-cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lpv3-reviews__head h2 {
  margin: 0 0 0.85rem;
  color: var(--lpv3-navy);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
}

.lpv3-reviews__head p {
  margin: 0;
  color: var(--lpv3-text-soft);
  font-size: 1rem;
  line-height: 1.65;
  text-align: left;
}

.lpv3-reviews__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(158, 201, 222, 0.55);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(12, 45, 74, 0.06);
}

.lpv3-reviews__rating {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lpv3-reviews__google-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(158, 201, 222, 0.45);
}

.lpv3-reviews__rating-copy p {
  margin: 0.2rem 0 0;
  color: var(--lpv3-text-soft);
  font-size: 0.92rem;
}

.lpv3-reviews__rating-copy strong {
  color: var(--lpv3-navy);
  font-size: 1.05rem;
}

.lpv3-reviews__stars {
  display: inline-flex;
  gap: 0.12rem;
  color: #fbbc04;
  font-size: 0.95rem;
}

.lpv3-reviews__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1.15rem;
  border-radius: 8px;
  background: var(--lpv3-navy);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lpv3-reviews__cta:hover {
  background: #0a243c;
  color: #ffffff;
  transform: translateY(-1px);
}

.lpv3-reviews__banner {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.22);
}

.lpv3-reviews__banner i {
  margin-top: 0.15rem;
  color: var(--lpv3-brand-green);
  font-size: 1.1rem;
}

.lpv3-reviews__banner strong {
  display: block;
  color: var(--lpv3-navy);
  font-size: 0.96rem;
}

.lpv3-reviews__banner p {
  margin: 0.25rem 0 0;
  color: var(--lpv3-text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

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

.lpv3-review-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.15rem 1.2rem 1.2rem;
  border: 1px solid rgba(158, 201, 222, 0.45);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(12, 45, 74, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lpv3-review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(12, 45, 74, 0.08);
}

.lpv3-review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.lpv3-review-card__source {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--lpv3-text-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lpv3-review-card__source i {
  color: #4285f4;
  font-size: 0.85rem;
}

.lpv3-review-card__stars {
  color: #fbbc04;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.lpv3-review-card blockquote {
  margin: 0;
  flex: 1;
}

.lpv3-review-card blockquote p {
  margin: 0;
  color: var(--lpv3-text);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.65;
  text-align: left;
}

.lpv3-review-card__author {
  margin-top: 0.85rem;
  color: var(--lpv3-navy);
  font-size: 0.86rem;
  font-weight: 700;
}

/* ── FAQ ── */

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

.lpv3-faq__layout,
.lpv3-location__layout {
  display: grid;
  grid-template-columns: var(--lpv3-brand-width) minmax(0, 1fr);
}

.lpv3-faq__head,
.lpv3-faq__grid,
.lpv3-location__head,
.lpv3-location__coverage,
.lpv3-location__note,
.lpv3-location__office {
  grid-column: 1 / -1;
  padding-left: calc(var(--lpv3-brand-width) + var(--lpv3-logo-align));
}

.lpv3-faq__head,
.lpv3-location__head {
  max-width: 42rem;
  margin: 0 0 clamp(1.75rem, 3vw, 2.25rem);
  text-align: left;
}

.lpv3-faq__tag,
.lpv3-location__tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--lpv3-cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lpv3-faq__head h2,
.lpv3-location__head h2 {
  margin: 0 0 0.85rem;
  color: var(--lpv3-navy);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
}

.lpv3-faq__head p,
.lpv3-location__head p {
  margin: 0;
  color: var(--lpv3-text-soft);
  font-size: 1rem;
  line-height: 1.65;
  text-align: left;
}

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

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

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

.lpv3-faq-card {
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(158, 201, 222, 0.45);
  border-radius: 12px;
  background: #f8fafc;
}

.lpv3-faq-card h3 {
  margin: 0 0 0.65rem;
  color: var(--lpv3-navy);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.lpv3-faq-card p {
  margin: 0;
  color: var(--lpv3-text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
  text-align: left;
}

/* ── Location & Coverage ── */

section.lpv3-location {
  scroll-margin-top: var(--lpv3-header-height);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: linear-gradient(180deg, var(--lpv3-sky-soft) 0%, #f8fafc 100%);
  border-top: 1px solid rgba(158, 201, 222, 0.35);
}

.lpv3-location__coverage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.lpv3-location-card {
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(158, 201, 222, 0.45);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(12, 45, 74, 0.05);
}

.lpv3-location-card h3 {
  margin: 0;
  color: var(--lpv3-navy);
  font-size: 0.98rem;
  font-weight: 800;
  text-align: left;
}

.lpv3-location-card__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.lpv3-location-card__cities span,
.lpv3-location-card__cities a {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--lpv3-sky-soft);
  color: var(--lpv3-text);
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration: none;
}

.lpv3-location-card__cities a:hover {
  background: rgba(42, 143, 158, 0.12);
  color: var(--lpv3-navy);
}

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

.lpv3-location__head p a:hover {
  text-decoration: underline;
}

.lpv3-location__note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(158, 201, 222, 0.45);
  border-radius: 10px;
  background: #ffffff;
}

.lpv3-location__note i {
  margin-top: 0.15rem;
  color: var(--lpv3-cyan);
}

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

.lpv3-location__office {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.lpv3-location__details {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.3rem;
  border: 1px solid rgba(158, 201, 222, 0.45);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(12, 45, 74, 0.05);
}

.lpv3-location__details h3 {
  margin: 0 0 1rem;
  color: var(--lpv3-navy);
  font-size: 1.05rem;
  font-weight: 800;
  text-align: left;
}

.lpv3-location__details address {
  font-style: normal;
  margin-bottom: 1.25rem;
}

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

.lpv3-location__details address p:last-child {
  margin-bottom: 0;
}

.lpv3-location__details address i {
  width: 1rem;
  margin-top: 0.2rem;
  color: var(--lpv3-cyan);
  text-align: center;
}

.lpv3-location__details address a {
  color: var(--lpv3-navy);
  font-weight: 600;
  text-decoration: none;
}

.lpv3-location__details address a:hover {
  color: var(--lpv3-cyan);
}

.lpv3-location__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.lpv3-location__maps-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(158, 201, 222, 0.65);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--lpv3-navy);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lpv3-location__maps-link:hover {
  background: var(--lpv3-sky-soft);
  border-color: var(--lpv3-cyan);
  color: var(--lpv3-navy);
}

.lpv3-location__map {
  min-height: 320px;
  border: 1px solid rgba(158, 201, 222, 0.45);
  border-radius: 12px;
  overflow: hidden;
  background: #e2e8f0;
  box-shadow: 0 6px 18px rgba(12, 45, 74, 0.05);
}

.lpv3-location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

/* ── Responsive ── */

@media (min-width: 1281px) {
  .lpv3-hero__grid,
  .lpv3-services__layout {
    grid-template-columns:
      var(--lpv3-brand-width)
      minmax(0, 1fr)
      minmax(420px, 560px)
      calc(var(--lpv3-rail-width) + var(--lpv3-rail-gap));
    gap: clamp(1.5rem, 2.5vw, 3rem);
  }

  .lpv3-why__layout {
    grid-template-columns:
      var(--lpv3-brand-width)
      minmax(0, 1fr)
      calc(var(--lpv3-rail-width) + var(--lpv3-rail-gap));
  }

  .lpv3-why__head,
  .lpv3-why__grid {
    grid-column: 1 / 3;
    padding-left: var(--lpv3-logo-align);
  }

  .lpv3-work__layout {
    grid-template-columns:
      var(--lpv3-brand-width)
      minmax(0, 1fr)
      calc(var(--lpv3-rail-width) + var(--lpv3-rail-gap));
  }

  .lpv3-work__head,
  .lpv3-work__featured,
  .lpv3-work__highlights {
    grid-column: 1 / 3;
    padding-left: var(--lpv3-logo-align);
  }

  .lpv3-reviews__layout {
    grid-template-columns:
      var(--lpv3-brand-width)
      minmax(0, 1fr)
      calc(var(--lpv3-rail-width) + var(--lpv3-rail-gap));
  }

  .lpv3-reviews__head,
  .lpv3-reviews__summary,
  .lpv3-reviews__banner,
  .lpv3-reviews__grid {
    grid-column: 1 / 3;
    padding-left: var(--lpv3-logo-align);
  }

  .lpv3-faq__layout,
  .lpv3-location__layout {
    grid-template-columns:
      var(--lpv3-brand-width)
      minmax(0, 1fr)
      calc(var(--lpv3-rail-width) + var(--lpv3-rail-gap));
  }

  .lpv3-faq__head,
  .lpv3-faq__grid,
  .lpv3-location__head,
  .lpv3-location__coverage,
  .lpv3-location__note,
  .lpv3-location__office {
    grid-column: 1 / 3;
    padding-left: var(--lpv3-logo-align);
  }

  .lpv3-hero__form-shell {
    grid-template-columns:
      var(--lpv3-brand-width)
      minmax(0, 1fr)
      minmax(420px, 560px)
      calc(var(--lpv3-rail-width) + var(--lpv3-rail-gap));
    gap: clamp(1.5rem, 2.5vw, 3rem);
  }

  .lpv3-hero__form-shell .lpv3-hero__form-wrap {
    max-width: 560px;
  }
}

@media (max-width: 1280px) {
  .lpv3-hero-rail {
    display: none;
  }
}

@media (max-width: 960px) {
  .lpv3-services__grid {
    grid-template-columns: repeat(2, minmax(var(--lpv3-service-card-min), 1fr));
  }
}

@media (max-width: 1024px) {
  .lpv3-services__layout {
    grid-template-columns: 1fr;
  }

  .lpv3-hero__grid {
    grid-template-columns: 1fr;
    padding-top: 1.75rem;
    padding-bottom: 0.5rem;
  }

  .lpv3-services__head,
  .lpv3-services__grid,
  .lpv3-why__head,
  .lpv3-why__grid,
  .lpv3-work__head,
  .lpv3-work__featured,
  .lpv3-work__highlights,
  .lpv3-reviews__head,
  .lpv3-reviews__summary,
  .lpv3-reviews__banner,
  .lpv3-reviews__grid,
  .lpv3-faq__head,
  .lpv3-faq__grid,
  .lpv3-location__head,
  .lpv3-location__coverage,
  .lpv3-location__note,
  .lpv3-location__office {
    grid-column: 1;
    grid-row: auto;
    padding-left: var(--lpv3-logo-align);
  }

  .lpv3-hero__content {
    grid-column: 1;
    grid-row: auto;
    padding-left: 0;
  }

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

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

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

  .lpv3-faq__layout,
  .lpv3-location__layout {
    grid-template-columns: 1fr;
  }

  .lpv3-why__head,
  .lpv3-why__grid,
  .lpv3-work__head,
  .lpv3-work__featured,
  .lpv3-work__highlights {
    padding-left: var(--lpv3-logo-align);
  }

  .lpv3-services__grid {
    grid-template-columns: repeat(3, minmax(var(--lpv3-service-card-min), 1fr));
  }

  .lpv3-services__media {
    display: none;
  }
}

/* Mobile hero: form overlaps photo band (phones + small tablets) */
@media (max-width: 1024px) {
  .lpv3-hero__content h1 {
    max-width: none;
    color: #ffffff;
    font-size: clamp(1.75rem, 7.5vw, 2.15rem);
    line-height: 1.08;
  }

  .lpv3-hero__title-line--mobile {
    line-height: 1.08;
  }

  section.lpv3-hero .lpv3-hero__content .lpv3-section-tag {
    color: rgba(197, 228, 243, 0.88);
  }

  .lpv3-hero__title-line--desktop {
    display: none;
  }

  .lpv3-hero__title-line--mobile {
    display: block;
  }

  section.lpv3-hero {
    --lpv3-mobile-form-overlap: 3.5rem;
    --lpv3-mobile-hero-cta-form-gap: 1.5rem;
    --lpv3-mobile-hero-copy-pad: 0.85rem;
    --lpv3-mobile-hero-card-width: 100%;
    display: block;
    overflow: visible;
    background: #f8fafc;
  }

  .lpv3-hero__body {
    min-height: 0;
    overflow: hidden;
    padding-bottom: calc(var(--lpv3-mobile-form-overlap) + var(--lpv3-mobile-hero-cta-form-gap));
  }

  section.lpv3-hero::before,
  section.lpv3-hero::after {
    display: none;
  }

  .lpv3-hero__media {
    background-size: cover;
    background-position: center 35%;
  }

  .lpv3-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(12, 45, 74, 0.5) 0%,
      rgba(12, 45, 74, 0.68) 58%,
      rgba(12, 45, 74, 0.84) 100%
    );
  }

  .lpv3-hero .lpv3-shell,
  .lpv3-hero__grid {
    position: relative;
    z-index: 1;
  }

  .lpv3-hero__lead {
    color: rgba(197, 228, 243, 0.96);
    margin-top: 1rem;
    font-size: clamp(0.98rem, 3.8vw, 1.08rem);
    line-height: 1.6;
  }

  .lpv3-hero__content {
    padding-bottom: 0;
    max-width: none;
  }

  .lpv3-hero__copy {
    padding: var(--lpv3-mobile-hero-copy-pad);
  }

  .lpv3-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: var(--lpv3-mobile-hero-card-width);
    margin-inline: auto;
  }

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

  .lpv3-hero__form-shell {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 3;
    margin-top: calc(-1 * var(--lpv3-mobile-form-overlap));
    pointer-events: auto;
  }

  .lpv3-hero__form-wrap {
    width: var(--lpv3-mobile-hero-card-width);
    max-width: var(--lpv3-mobile-hero-card-width);
    margin-inline: auto;
    margin-left: auto;
  }

  .lpv3-hero__form-card {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(158, 201, 222, 0.48);
    border-radius: 10px;
    background: #ffffff;
    box-shadow:
      0 4px 8px rgba(12, 45, 74, 0.05),
      0 20px 44px rgba(12, 45, 74, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
    padding: 1.15rem 1.2rem 1.1rem;
  }

  .lpv3-hero-form__head {
    margin-bottom: 0.85rem;
  }

  .lpv3-hero-form__head .lpv3-section-tag {
    display: none;
  }

  .lpv3-hero-form__head h2 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.25;
  }

  .lpv3-hero-form__head p {
    display: block;
    margin: 0.45rem 0 0;
    color: var(--lpv3-text-soft);
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .lpv3-hero-form__notice {
    display: none;
  }

  .lpv3-hero-form {
    gap: 0;
  }

  .lpv3-hero-form__field {
    margin: 0;
    position: relative;
  }

  .lpv3-hero-form__field + .lpv3-hero-form__field,
  .lpv3-hero-form__field + .lpv3-hero-form__notice {
    margin-top: 0.85rem;
  }

  .lpv3-hero-form__field label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .lpv3-hero-form__field input,
  .lpv3-hero-form__field select {
    padding: 0.78rem 0.9rem;
    border: 1px solid rgba(158, 201, 222, 0.7);
    border-radius: 8px;
    background: #ffffff;
    font-size: 0.92rem;
  }

  .lpv3-hero-form__field input::placeholder {
    color: #94a3b8;
  }

  .lpv3-hero-form__field input:focus,
  .lpv3-hero-form__field select:focus {
    border-color: var(--lpv3-cyan);
    border-width: 1px;
    padding: 0.78rem 0.9rem;
    box-shadow: 0 0 0 3px rgba(42, 143, 158, 0.12);
  }

  .lpv3-hero__mobile-photo {
    display: none;
    margin: 0;
  }

  .lpv3-hero__form-secure {
    color: var(--lpv3-text-soft);
  }
}

@media (max-width: 1100px) {
  :root {
    --lpv3-brand-width: 180px;
  }

  .lpv3-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .lpv3-work__highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .lpv3-reviews__summary {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

@media (max-width: 768px) {
  :root {
    --lpv3-gutter: 1.5rem;
    --lpv3-logo-align: var(--lpv3-brand-padding-x);
    --lpv3-header-height: 68px;
    --lpv3-mobile-hero-card-width: min(100%, calc(100vw - (2 * var(--lpv3-gutter))));
  }

  section.lpv3-hero {
    --lpv3-mobile-hero-card-width: min(100%, calc(100vw - (2 * var(--lpv3-gutter))));
  }

  .lpv3-trust-band {
    position: relative;
    z-index: 2;
    padding: 0.85rem 0;
  }

  .lpv3-trust-band__credentials {
    display: none;
  }

  .lpv3-trust-band__proof {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    border: 1px solid rgba(158, 201, 222, 0.55);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(12, 45, 74, 0.06);
  }

  .lpv3-trust-band__proof-label {
    flex: none;
    width: 100%;
    padding-bottom: 0.85rem;
    text-align: center;
    border-bottom: 1px solid rgba(158, 201, 222, 0.35);
  }

  .lpv3-trust-band__divider {
    display: none;
  }

  .lpv3-trust-band__proof-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(158, 201, 222, 0.22);
    color: var(--lpv3-navy);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.45;
    text-align: left;
    white-space: normal;
    justify-content: flex-start;
  }

  .lpv3-trust-band__proof-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .lpv3-trust-band__proof-item i {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(158, 201, 222, 0.2);
    font-size: 0.82rem;
  }

  .lpv3-services__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .lpv3-service-card {
    aspect-ratio: auto;
    min-height: 0;
    padding: 1.15rem 1.1rem 1rem;
    box-shadow: 0 4px 16px rgba(12, 45, 74, 0.05);
  }

  .lpv3-service-card__icon {
    flex: 0 0 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    margin-bottom: 0.85rem;
  }

  .lpv3-service-card__icon i {
    font-size: 1rem;
  }

  .lpv3-service-card h3 {
    font-size: 1rem;
    line-height: 1.3;
    display: block;
    -webkit-line-clamp: unset;
  }

  .lpv3-service-card__summary {
    display: block;
    margin: 0.55rem 0 0;
    color: var(--lpv3-text);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.5;
  }

  .lpv3-service-card ul {
    display: none;
  }

  .lpv3-service-card a {
    margin-top: 0.85rem;
    font-size: 0.88rem;
  }

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

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

@media (max-width: 480px) {
  :root {
    --lpv3-logo-align: var(--lpv3-brand-padding-x);
  }
}
