:root {
  --lr-blue: #1a8cff;
  --lr-blue-dark: #0d6fd4;
  --lr-orange: #ff7a00;
  --lr-orange-soft: #ff9a3c;
  --lr-navy: #0f2a4a;
  --lr-text: #1a2b44;
  --lr-muted: #5a6b85;
  --lr-bg: #f7fbff;
  --lr-white: #ffffff;
  --lr-pill-border: #d7e0ef;
  --lr-radius: 28px;
  --lr-radius-pill: 999px;
  --lr-shadow: 0 14px 40px rgba(15, 42, 74, 0.12);
  --lr-font: "Inter", "Segoe UI", system-ui, sans-serif;
  --lr-danger: #b42318;
  --lr-focus: #9ec5ff;
  --lr-border: #d7e0ef;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.landing-body {
  margin: 0;
  color: var(--lr-text);
  background: var(--lr-bg);
  font-family: var(--lr-font);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-tap-highlight-color: transparent;
}

body.landing-body a { color: var(--lr-blue-dark); }

.lr-container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.lr-circuit {
  background-color: var(--lr-bg);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(26, 140, 255, 0.08), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 122, 0, 0.07), transparent 24%),
    linear-gradient(rgba(26, 140, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 140, 255, 0.05) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
}

/* Header */
.lr-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(215, 224, 239, 0.9);
}

.lr-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.lr-nav-top {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 52px;
}

.lr-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--lr-navy);
  font-weight: 800;
  flex-shrink: 1;
  min-width: 0;
}

.lr-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.lr-brand__tagline {
  display: block;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--lr-navy);
  max-width: 220px;
}

.lr-nav-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex-shrink: 0;
  margin-left: auto;
}

.lr-nav-region {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--lr-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.lr-nav-region__icon {
  flex-shrink: 0;
  color: #4a7ab5;
}

.lr-nav-phone {
  color: var(--lr-blue);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.lr-nav-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}

.lr-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--lr-radius-pill);
  border: 1.5px solid var(--lr-pill-border);
  background: var(--lr-white);
  color: var(--lr-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .15s ease, box-shadow .15s ease, color .15s ease, background .15s ease;
}

.lr-pill:active {
  border-color: var(--lr-blue);
  color: var(--lr-blue-dark);
  background: rgba(26, 140, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(26, 140, 255, 0.12);
}

.lr-pill:focus {
  outline: none;
}

.lr-pill:focus-visible {
  outline: 3px solid var(--lr-focus);
  outline-offset: 2px;
}

.lr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--lr-radius-pill);
  background: var(--lr-blue);
  color: var(--lr-white) !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(26, 140, 255, 0.28);
  -webkit-tap-highlight-color: transparent;
  transition: background .15s ease, transform .15s ease, color .15s ease, border-color .15s ease;
}

.lr-btn:active {
  background: var(--lr-blue-dark);
  transform: translateY(0);
}

.lr-btn:focus {
  outline: none;
}

.lr-btn:focus-visible {
  outline: 3px solid var(--lr-focus);
  outline-offset: 2px;
}

.lr-btn--orange {
  background: var(--lr-orange);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.28);
}

.lr-btn--orange:active {
  background: #e86c00;
}

.lr-btn--ghost {
  background: transparent;
  color: var(--lr-blue-dark) !important;
  border: 1.5px solid var(--lr-blue);
  box-shadow: none;
}

.lr-btn--ghost:active {
  background: var(--lr-blue);
  color: var(--lr-white) !important;
}

.lr-nav-cta { flex-shrink: 0; margin-left: 0; }

/* Hover только на устройствах с настоящим курсором — иначе на touch «залипает» синий */
@media (hover: hover) and (pointer: fine) {
  .lr-pill:hover {
    border-color: var(--lr-blue);
    color: var(--lr-blue-dark);
    box-shadow: 0 0 0 3px rgba(26, 140, 255, 0.12);
  }

  .lr-btn:hover {
    background: var(--lr-blue-dark);
    transform: translateY(-1px);
  }

  .lr-btn--orange:hover {
    background: #e86c00;
  }

  .lr-btn--ghost:hover {
    background: var(--lr-blue);
    color: var(--lr-white) !important;
  }

  .lr-nav-phone:hover {
    color: var(--lr-blue-dark);
    text-decoration: underline;
  }

  .lr-social:hover {
    background: var(--lr-blue-dark);
    transform: translateY(-1px);
  }

  .lr-carousel__btn:hover {
    background: var(--lr-blue-dark);
  }

  .lr-contacts-card a:hover {
    color: var(--lr-blue-dark);
  }

  .lr-footer a:hover {
    color: var(--lr-blue-dark);
  }
}

/* Hero */
.lr-hero {
  padding: 56px 0 64px;
}

.lr-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.lr-hero h1 {
  margin: 0 0 18px;
  color: var(--lr-navy);
  font-size: clamp(34px, 5.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.lr-accent-pill {
  display: inline-block;
  padding: 0.12em 0.45em;
  border-radius: 16px;
  background: var(--lr-orange);
  color: var(--lr-white);
  white-space: nowrap;
}

.lr-hero-lead {
  margin: 0 0 12px;
  max-width: 34rem;
  color: var(--lr-muted);
  font-size: 18px;
}

.lr-hero-hook {
  margin: 0 0 24px;
  color: var(--lr-navy);
  font-size: 17px;
  font-weight: 700;
}

.lr-hero-hook strong {
  color: var(--lr-orange);
}

.lr-contacts-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 224, 239, 0.95);
  box-shadow: var(--lr-shadow);
  max-width: 420px;
}

.lr-contacts-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.lr-contacts-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--lr-navy);
  font-size: 15px;
}

.lr-contacts-card a {
  display: block;
  text-decoration: none;
  font-weight: 700;
  color: var(--lr-text);
}

.lr-contacts-card a.lr-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-weight: inherit;
}

.lr-socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.lr-social {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--lr-blue);
  color: white !important;
  text-decoration: none;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lr-social:active {
  background: var(--lr-blue-dark);
  transform: translateY(0);
}
.lr-social__icon {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

.lr-hero-panel {
  position: relative;
  min-height: 320px;
  border-radius: var(--lr-radius);
  background: url("/img/landing/hero-bg.webp") center / cover no-repeat;
  box-shadow: var(--lr-shadow);
  overflow: hidden;
}

.lr-hero-panel::after {
  content: none;
}

.lr-hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.lr-note {
  margin-top: 18px;
  color: var(--lr-muted);
  font-size: 14px;
}

/* Footer */
.lr-main { flex: 1; }

.lr-footer {
  margin-top: auto;
  padding: 36px 0 28px;
  background: var(--lr-white);
  border-top: 1px solid var(--lr-pill-border);
  color: var(--lr-text);
}

.lr-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

.lr-footer h3 {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--lr-navy);
}

.lr-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lr-footer li { margin: 0 0 8px; }

.lr-footer a {
  color: var(--lr-muted);
  text-decoration: none;
  font-weight: 600;
}

.lr-footer-brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.lr-footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.lr-footer-copy {
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid var(--lr-pill-border);
  color: var(--lr-muted);
  font-size: 14px;
}

.lr-footer-copy a { color: var(--lr-muted); }

/* Sections */
.lr-section { padding: 56px 0; }
.lr-section--alt { background: rgba(255, 255, 255, 0.55); }
.lr-section--orange {
  background: linear-gradient(135deg, #ff8a1a, #ff6a00);
  color: white;
}
.lr-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.lr-section-head h2 {
  margin: 0;
  color: var(--lr-navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}
.lr-section-head--light h2 { color: white; }
.lr-section-note {
  margin: 8px 0 0;
  width: 100%;
  flex-basis: 100%;
  color: var(--lr-muted);
  font-size: 16px;
  line-height: 1.45;
}
.lr-age-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.lr-age-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--lr-white);
  border: 1px solid var(--lr-border);
}
.lr-age-card h3 {
  margin: 0;
  color: var(--lr-navy);
  font-size: 18px;
  line-height: 1.25;
}
.lr-age-card p {
  margin: 0;
  flex: 1;
  color: var(--lr-muted);
  line-height: 1.45;
  font-size: 15px;
}
.lr-age-card__cta {
  align-self: flex-start;
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}
.lr-section-lead {
  margin: -8px 0 24px;
  color: var(--lr-muted);
  max-width: 40rem;
}
.lr-accent-pill--white {
  background: white;
  color: var(--lr-orange);
}

.lr-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}
.lr-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 320px);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding: 4px 2px 12px;
}
.lr-carousel__slide,
.lr-review-card {
  scroll-snap-align: start;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: white;
  box-shadow: var(--lr-shadow);
}
.lr-carousel__slide img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.lr-carousel__btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--lr-blue);
  color: white;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.lr-carousel__btn:active { background: var(--lr-blue-dark); }

.lr-how-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}
.lr-video-slot,
.lr-placeholder {
  min-height: 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(15, 42, 74, 0.22);
  border: 0;
  display: block;
  text-align: center;
  padding: 0;
}
.lr-placeholder {
  min-height: 220px;
  border: 2px dashed rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  padding: 20px;
}
.lr-video-slot video,
.lr-video-slot img,
.lr-placeholder img {
  width: 100%;
  height: auto;
  max-height: none;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  display: block;
  border: 0;
  background: #0f2a4a;
}
.lr-placeholder img {
  aspect-ratio: auto;
  max-height: 280px;
  width: auto;
  max-width: 100%;
  background: transparent;
}
.lr-feature-list { display: grid; gap: 12px; }
.lr-feature-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: white;
  color: var(--lr-text);
}
.lr-feature-card img { width: 56px; height: 56px; object-fit: contain; }
.lr-feature-card p { margin: 0; font-weight: 700; }

.lr-about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
}
.lr-stat {
  border-radius: 24px;
  padding: 22px;
  color: white;
  min-height: 180px;
  box-shadow: var(--lr-shadow);
}
.lr-stat strong { display: block; font-size: clamp(28px, 4vw, 40px); line-height: 1.1; }
.lr-stat span { display: block; font-weight: 800; margin-top: 6px; }
.lr-stat small { display: block; margin-top: 8px; opacity: 0.9; }
.lr-stat--blue {
  background: var(--lr-blue);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: end;
}
.lr-stat--blue img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
}
.lr-stat--orange { background: var(--lr-orange); }
.lr-stat--purple { background: #5b3fd6; }

.lr-price-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.lr-price-block { margin-top: 28px; }
.lr-price-block:first-of-type { margin-top: 0; }
.lr-price-block__title {
  margin: 0 0 16px;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--lr-navy);
}
.lr-price-card {
  background: white;
  border-radius: 22px;
  padding: 18px 16px;
  box-shadow: var(--lr-shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lr-price-card h3 { margin: 0; font-size: 18px; color: var(--lr-navy); }
.lr-price-total { margin: 0; font-size: 26px; font-weight: 900; color: var(--lr-blue-dark); }
.lr-price-per { margin: 0; color: var(--lr-muted); font-weight: 700; }
.lr-price-save {
  margin: 0 0 8px;
  color: #137a47;
  font-weight: 800;
  font-size: 14px;
}
.lr-price-card .lr-btn { margin-top: auto; width: 100%; }

.lr-reviews-block { margin-bottom: 28px; }
.lr-reviews-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--lr-navy);
}
.lr-review-card { padding: 16px; min-height: 180px; }
.lr-review-card strong { display: block; margin-bottom: 6px; color: var(--lr-navy); }
.lr-stars { color: #f5b400; letter-spacing: 2px; margin-bottom: 8px; }
.lr-review-card p { margin: 0; color: var(--lr-muted); font-size: 14px; }

.lr-filter-pill {
  margin: 0 0 16px;
  display: inline-flex;
  pointer-events: none;
  border-color: var(--lr-blue);
  color: var(--lr-blue-dark);
}
.lr-map-wrap {
  position: relative;
}
.lr-map {
  border-radius: 24px;
  overflow: hidden;
  background: white;
  min-height: 404px;
  box-shadow: var(--lr-shadow);
}
.lr-map > ymaps,
.lr-map iframe,
.lr-map > div { width: 100% !important; }
.lr-branch-list {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: auto;
  z-index: 2;
  display: grid;
  gap: 12px;
  max-width: min(360px, calc(100% - 40px));
  pointer-events: none;
}
.lr-branch-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--lr-border);
  box-shadow: var(--lr-shadow);
  pointer-events: auto;
}
.lr-branch-card__num {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  color: var(--lr-blue);
  letter-spacing: -0.04em;
}
.lr-branch-card__body strong {
  display: block;
  margin-bottom: 6px;
  color: var(--lr-navy);
  font-size: 16px;
}
.lr-branch-card__body p {
  margin: 0;
  color: var(--lr-muted);
  font-size: 14px;
  line-height: 1.4;
}

.lr-faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  align-items: start;
}
.lr-faq-aside h2 { margin-top: 0; color: var(--lr-navy); }
.lr-faq-item {
  background: white;
  border-radius: 18px;
  margin-bottom: 10px;
  box-shadow: var(--lr-shadow);
  overflow: hidden;
}
.lr-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 18px;
  font-weight: 800;
  color: white;
  background: var(--lr-blue);
}
.lr-faq-item summary::-webkit-details-marker { display: none; }
.lr-faq-item:not([open]) summary {
  background: white;
  color: var(--lr-navy);
}
.lr-faq-answer {
  padding: 16px 18px 18px;
  color: var(--lr-text);
  background: white;
}
.lr-faq-link {
  display: inline-flex;
  margin-top: 8px;
  margin-right: 10px;
  font-weight: 800;
  color: var(--lr-blue-dark);
}

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

/* ——— Public forms (/zapisatsya, /apply/team, success) ——— */
.lr-form-wrap {
  padding: 40px 0 72px;
}

.lr-form-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--lr-muted);
  font-size: 14px;
}
.lr-form-breadcrumb a {
  color: var(--lr-blue-dark);
  text-decoration: none;
  font-weight: 700;
}
.lr-form-breadcrumb a:hover { text-decoration: underline; }

.lr-form-head {
  max-width: 720px;
  margin-bottom: 28px;
}
.lr-form-eyebrow {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--lr-blue-dark);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lr-form-head h1 {
  margin: 12px 0 14px;
  color: var(--lr-navy);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.lr-form-lead {
  margin: 0 0 8px;
  color: var(--lr-muted);
  font-size: 18px;
}
.lr-form-hint {
  margin: 0;
  color: var(--lr-muted);
  font-size: 14px;
}

.lr-form-card {
  padding: clamp(22px, 4vw, 40px);
  border-radius: var(--lr-radius);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--lr-border);
  box-shadow: var(--lr-shadow);
}

.lr-form-section {
  margin: 0 0 22px;
  padding: 0 0 22px;
  border: 0;
  border-bottom: 1px solid var(--lr-border);
}
.lr-form-section:last-of-type { border-bottom: 0; margin-bottom: 8px; }
.lr-form-section legend {
  padding: 0;
  margin-bottom: 16px;
  color: var(--lr-navy);
  font-weight: 800;
  font-size: 20px;
}

.lr-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}
.lr-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.lr-field--full { grid-column: 1 / -1; }
.lr-field label {
  font-weight: 700;
  color: var(--lr-navy);
  font-size: 14px;
}
.lr-field input,
.lr-field select,
.lr-field textarea,
.lr-form-card > .lr-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1.5px solid #bac6db;
  border-radius: 14px;
  padding: 11px 14px;
  background: var(--lr-white);
  color: var(--lr-text);
  font: inherit;
}
.lr-field textarea { min-height: 108px; resize: vertical; }
.lr-field input:focus,
.lr-field select:focus,
.lr-field textarea:focus {
  outline: 3px solid var(--lr-focus);
  border-color: var(--lr-blue);
}
.lr-field.has-error input,
.lr-field.has-error select,
.lr-field.has-error textarea,
.lr-checkbox.has-error {
  border-color: var(--lr-danger);
}
.lr-field-error {
  color: var(--lr-danger);
  font-size: 13px;
}
.lr-required { color: var(--lr-danger); }

.lr-form-card input[type="checkbox"],
.lr-form-card input[type="radio"] {
  width: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  padding: 0 !important;
  border-radius: 4px;
  flex-shrink: 0;
  accent-color: var(--lr-blue);
}

.lr-checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 14px 0;
  font-weight: 500;
  color: var(--lr-text);
}
.lr-checkbox input {
  margin-top: 2px;
}
.lr-checkbox a {
  font-weight: 700;
  text-decoration: underline;
}

.lr-form-errors {
  padding: 14px 18px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #ffebe9;
  color: var(--lr-danger);
}
.lr-form-errors ul { margin: 6px 0 0; padding-left: 18px; }

.lr-form-card .honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.lr-form-section.conditional[hidden] { display: none; }

.lr-role-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.lr-choice-card,
.choice-card {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 2px solid var(--lr-border);
  border-radius: 18px;
  background: #f7fbff;
  cursor: pointer;
  min-height: 44px;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lr-choice-card input,
.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.lr-choice-card.is-selected,
.lr-choice-card:has(input:checked),
.choice-card.is-selected,
.choice-card:has(input:checked) {
  border-color: var(--lr-blue);
  background: #eaf4ff;
  box-shadow: inset 0 0 0 1px var(--lr-blue);
}
.lr-choice-card__title,
.choice-card__title {
  font-weight: 800;
  color: var(--lr-navy);
}
.lr-choice-card__text,
.choice-card__text {
  color: var(--lr-muted);
  font-size: 14px;
  line-height: 1.45;
}

.lr-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.lr-form-card .lr-btn[type="submit"],
.lr-form-card button.lr-btn {
  border: 0;
  cursor: pointer;
  font: inherit;
  min-width: 200px;
}
.lr-form-card .lr-btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.lr-success {
  max-width: 640px;
  margin: 48px auto 24px;
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
  border-radius: var(--lr-radius);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--lr-border);
  box-shadow: var(--lr-shadow);
}
.lr-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f7ef;
  color: #137a47;
  font-size: 32px;
  font-weight: 800;
}
.lr-success h1 {
  margin: 10px 0 12px;
  color: var(--lr-navy);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}
.lr-success .lr-form-lead { margin: 0 auto 22px; }
.lr-success__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 1100px) {
  .lr-price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1100px) {
  .lr-nav {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .lr-nav-top {
    flex: 1;
    min-width: 0;
  }

  .lr-brand__tagline {
    font-size: 14px;
    max-width: 260px;
  }

  .lr-nav-pills {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

@media (max-width: 920px) {
  .lr-hero-grid { grid-template-columns: 1fr; }
  .lr-hero-panel { min-height: 240px; order: -1; }
  .lr-footer-grid { grid-template-columns: 1fr 1fr; }
  .lr-how-grid,
  .lr-about-grid,
  .lr-faq-layout { grid-template-columns: 1fr; }
  .lr-stat--blue { grid-template-columns: 1fr; }
  .lr-role-cards { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .lr-nav {
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .lr-nav-top {
    flex-wrap: wrap;
    gap: 10px 12px;
    align-items: center;
  }

  .lr-brand {
    flex: 1;
    min-width: 0;
  }

  .lr-brand img {
    width: 40px;
    height: 40px;
  }

  .lr-brand__tagline {
    font-size: 11px;
    max-width: 148px;
  }

  .lr-nav-meta {
    order: 3;
    width: 100%;
    margin-left: 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
  }

  .lr-nav-region {
    font-size: 13px;
  }

  .lr-nav-phone {
    font-size: 14px;
  }

  .lr-nav-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }

  .lr-nav-pills {
    gap: 6px;
  }

  .lr-pill {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .lr-footer-grid { grid-template-columns: 1fr; }
  .lr-price-grid { grid-template-columns: 1fr 1fr; }
  .lr-carousel { grid-template-columns: 1fr; }
  .lr-carousel__btn { display: none; }
  .lr-field-grid { grid-template-columns: 1fr; }
  .lr-field--full { grid-column: auto; }
  .lr-form-card { padding: 18px; border-radius: 22px; }
  .lr-branch-list {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .lr-age-grid {
    grid-template-columns: 1fr;
  }
}
