/* Native La Centrale du RDV storefront. All rules are module-scoped. No build step. */

.lcrdv {
  --navy: #102b50;
  --blue: #155bd7;
  --blue-soft: #e9f2ff;
  --red: #b73535;
  --coral: #ff6b5f;
  --ink: #10233f;
  --muted: #52647a;
  --line: #dfe8f4;
  --surface: #f5f8fc;
  --white: #ffffff;
  --background: #ffffff;
  --foreground: #10233f;
  --card: #ffffff;
  --card-foreground: #10233f;
  --popover: #ffffff;
  --popover-foreground: #10233f;
  --primary: #062a5e;
  --primary-foreground: #ffffff;
  --secondary: #e9f2ff;
  --secondary-foreground: #062a5e;
  --muted-foreground: #5d6e84;
  --accent: #e9f2ff;
  --accent-foreground: #062a5e;
  --destructive: #d92f32;
  --border: #dfe8f4;
  --input: #dfe8f4;
  --ring: #0b63ce;
  --radius: 0.875rem;
  --shadow: 0 18px 48px rgba(6, 42, 94, 0.11);
}
.lcrdv * { box-sizing: border-box; }
.lcrdv { scroll-behavior: smooth; }
.lcrdv {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.lcrdv button, .lcrdv input, .lcrdv select { font: inherit; }
.lcrdv a { color: inherit; }
.lcrdv .site-shell { min-height: 100vh; overflow: hidden; }
.lcrdv .page-wrap { width: min(1440px, calc(100% - 32px)); margin: 0 auto; }
.lcrdv .site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(223, 232, 244, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(6, 42, 94, 0.06);
  backdrop-filter: blur(18px);
}
.lcrdv .header-inner {
  display: grid;
  width: min(1440px, calc(100% - 32px));
  min-height: 88px;
  align-items: center;
  margin: 0 auto;
  grid-template-columns: minmax(270px, 1fr) auto minmax(270px, 1fr);
  gap: 28px;
}
.lcrdv .brand {
  display: block;
  width: 320px;
  height: 68px;
  overflow: hidden;
}
.lcrdv .brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.lcrdv .main-nav { display: flex; align-items: center; gap: 34px; }
.lcrdv .main-nav a { color: var(--navy); font-size: 0.95rem; font-weight: 800; text-decoration: none; }
.lcrdv .main-nav a:hover { color: var(--red); }
.lcrdv .header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.lcrdv .language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.lcrdv .language-switch a {
  min-width: 40px;
  height: 34px;
  padding: 0 9px;
  border: 0;
  border-radius: 9px;
  color: var(--muted);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 900;
  cursor: pointer;
}
.lcrdv .language-switch a.active { color: #fff; background: var(--navy); box-shadow: 0 5px 12px rgba(6, 42, 94, 0.15); }
.lcrdv .cart-indicator {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--navy);
  background: #fff;
  cursor: pointer;
}
.lcrdv .cart-indicator span {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 0.65rem;
  font-weight: 900;
}
.lcrdv .hero {
  position: relative;
  display: grid;
  min-height: 680px;
  overflow: hidden;
  margin: 24px 0 26px;
  border: 1px solid rgba(11, 99, 206, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 28%, rgba(255, 77, 79, 0.12), transparent 23%),
    radial-gradient(circle at 62% 108%, rgba(11, 99, 206, 0.18), transparent 36%),
    linear-gradient(135deg, #f8fbff 0%, #edf5ff 55%, #fff 100%);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
}
.lcrdv .hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(6, 42, 94, 0.11) 1px, transparent 1px);
  background-size: 26px 26px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 58%, #000);
  opacity: 0.45;
  pointer-events: none;
}
.lcrdv .hero-copy { position: relative; z-index: 2; align-self: center; padding: clamp(48px, 6vw, 92px); padding-right: 24px; }
.lcrdv .eyebrow { margin: 0 0 10px; color: var(--red); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.13em; line-height: 1.3; text-transform: uppercase; }
.lcrdv .hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 1.02;
}
.lcrdv .hero-lead { max-width: 750px; margin: 26px 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.65; }
.lcrdv .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.lcrdv .primary-cta, .lcrdv .secondary-cta { min-height: 54px; padding: 0 25px; border-radius: 14px; font-size: 0.92rem; font-weight: 850; }
.lcrdv .primary-cta { color: #fff !important; background: linear-gradient(135deg, var(--blue), var(--navy)); box-shadow: 0 12px 26px rgba(11, 99, 206, 0.24); }
.lcrdv .primary-cta:hover, .lcrdv .primary-cta:focus-visible { color: #fff !important; background: linear-gradient(135deg, #0c72e8, var(--navy)); }
.lcrdv .secondary-cta { border-color: rgba(6, 42, 94, 0.17); color: var(--navy); background: rgba(255, 255, 255, 0.82); }
.lcrdv .benefits { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 32px 0 0; padding: 0; list-style: none; }
.lcrdv .benefits li { display: flex; align-items: center; gap: 8px; color: var(--navy); font-size: 0.88rem; font-weight: 750; }
.lcrdv .benefits img.lcrdv-icon { width: 20px; height: 20px; color: var(--red); }
.lcrdv .hero-simulator {
  position: relative;
  z-index: 2;
  min-width: 0;
  align-self: center;
  margin: 38px 40px 38px 16px;
  padding: 0 26px 26px;
  border: 1px solid rgba(6, 42, 94, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 70px rgba(6, 42, 94, 0.18);
  scroll-margin-top: 110px;
}
.lcrdv .hero-simulator::before {
  position: absolute;
  z-index: -1;
  inset: -22px;
  border: 1px dashed rgba(11, 99, 206, 0.18);
  border-radius: 34px;
  content: "";
  pointer-events: none;
}
.lcrdv .hero-simulator-tabs { display: flex; min-height: 65px; align-items: center; justify-content: space-between; gap: 18px; margin: 0 0 22px; border-bottom: 1px solid var(--line); }
.lcrdv .hero-simulator-tabs span, .lcrdv .hero-simulator-tabs strong { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.lcrdv .hero-simulator-tabs span { color: var(--muted); }
.lcrdv .hero-simulator-tabs strong { color: var(--navy); }
.lcrdv .hero-simulator-field { display: flex; min-width: 0; flex-direction: column; gap: 7px; margin-bottom: 15px; }
.lcrdv .hero-simulator-field > span, .lcrdv .hero-simulator-quantity-title > span { color: var(--navy); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.lcrdv .hero-simulator-field > div { width: 100%; }
.lcrdv .hero-simulator-select { width: 100%; height: 52px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: #fff; font-size: 0.9rem; font-weight: 800; }
.lcrdv .hero-simulator-service { display: grid; min-width: 0; align-items: center; gap: 14px; margin-bottom: 15px; padding: 15px; border-radius: 16px; background: var(--surface); grid-template-columns: 66px minmax(0, 1fr); }
.lcrdv .hero-simulator-icon { display: grid; width: 66px; height: 66px; place-items: center; border-radius: 16px; color: #fff; background: linear-gradient(145deg, var(--blue), var(--navy)); box-shadow: 0 10px 22px rgba(6, 42, 94, 0.18); }
.lcrdv .hero-simulator-service small { display: block; overflow: hidden; margin-bottom: 2px; color: var(--muted); font-size: 0.67rem; font-weight: 800; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.lcrdv .hero-simulator-service h2 { overflow: hidden; margin: 0; color: var(--navy); font-size: 1.12rem; font-weight: 900; letter-spacing: -0.02em; text-overflow: ellipsis; white-space: nowrap; }
.lcrdv .hero-simulator-service p { display: -webkit-box; overflow: hidden; margin: 4px 0 0; color: var(--muted); font-size: 0.76rem; line-height: 1.42; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.lcrdv .hero-simulator-base { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 16px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 13px; }
.lcrdv .hero-simulator-base > span { display: flex; flex-direction: column; color: var(--muted); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase; }
.lcrdv .hero-simulator-base small { margin-top: 2px; color: var(--muted); font-size: 0.62rem; font-weight: 650; letter-spacing: 0; text-transform: none; }
.lcrdv .hero-simulator-base strong { color: var(--navy); font-size: 1rem; font-weight: 950; text-align: right; }
.lcrdv .hero-simulator-quantity-title { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 7px; }
.lcrdv .hero-simulator-quantity-title small { color: var(--red); font-size: 0.66rem; font-weight: 800; text-align: right; }
.lcrdv .hero-simulator-quantity { display: grid; margin-bottom: 10px; grid-template-columns: 48px minmax(80px, 1fr) auto 48px; }
.lcrdv .hero-simulator-quantity button, .lcrdv .hero-simulator-quantity input, .lcrdv .hero-simulator-quantity > span { height: 50px; border: 1px solid var(--line); background: #fff; }
.lcrdv .hero-simulator-quantity button { display: grid; place-items: center; color: var(--navy); cursor: pointer; }
.lcrdv .hero-simulator-quantity button:first-child { border-radius: 12px 0 0 12px; }
.lcrdv .hero-simulator-quantity button:last-child { border-radius: 0 12px 12px 0; }
.lcrdv .hero-simulator-quantity button img.lcrdv-icon { width: 18px; height: 18px; }
.lcrdv .hero-simulator-quantity input { width: 100%; border-right: 0; border-left: 0; color: var(--ink); font-size: 1.1rem; font-weight: 900; text-align: center; }
.lcrdv .hero-simulator-quantity > span { display: flex; align-items: center; padding: 0 10px; border-right: 0; border-left: 0; color: var(--muted); font-size: 0.69rem; font-weight: 850; text-transform: uppercase; }
.lcrdv .hero-simulator-tiers { display: grid; gap: 8px; margin-bottom: 14px; grid-template-columns: repeat(3, 1fr); }
.lcrdv .hero-simulator-tiers button { display: flex; min-width: 0; min-height: 48px; align-items: center; justify-content: center; flex-direction: column; border: 1px solid var(--line); border-radius: 11px; color: var(--muted); background: #fff; cursor: pointer; }
.lcrdv .hero-simulator-tiers button:hover, .lcrdv .hero-simulator-tiers button.active { border-color: var(--blue); color: #fff; background: var(--navy); }
.lcrdv .hero-simulator-tiers span { font-size: 0.82rem; font-weight: 950; }
.lcrdv .hero-simulator-tiers small { font-size: 0.64rem; font-weight: 750; }
.lcrdv .hero-simulator-summary { display: grid; gap: 9px; margin-bottom: 14px; grid-template-columns: 1fr 1fr; }
.lcrdv .hero-simulator-summary > div { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 11px 12px; border-radius: 12px; background: #edf5ff; }
.lcrdv .hero-simulator-summary span { color: var(--muted); font-size: 0.65rem; font-weight: 850; text-transform: uppercase; }
.lcrdv .hero-simulator-summary strong { overflow: hidden; color: var(--navy); font-size: 0.84rem; font-weight: 900; text-overflow: ellipsis; white-space: nowrap; }
.lcrdv .hero-simulator-summary .hero-simulator-total { background: rgba(255, 77, 79, 0.11); }
.lcrdv .hero-simulator-summary .hero-simulator-total strong { color: var(--red); font-size: 1.2rem; }
.lcrdv .hero-simulator-button { width: 100%; min-height: 50px; border-radius: 13px; background: linear-gradient(135deg, var(--red), #ec3449); font-size: 0.86rem; font-weight: 900; }
.lcrdv .hero-simulator-button:hover { background: linear-gradient(135deg, #ff655f, #d9293e); }
.lcrdv .category-nav {
  position: sticky;
  z-index: 25;
  top: 100px;
  display: grid;
  margin: 0 0 60px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 10px 24px rgba(6, 42, 94, 0.08);
  backdrop-filter: blur(16px);
  grid-template-columns: repeat(3, 1fr);
}
.lcrdv .category-nav a { display: flex; min-height: 54px; align-items: center; justify-content: center; gap: 10px; border-radius: 12px; color: var(--navy); font-size: 0.9rem; font-weight: 850; text-decoration: none; }
.lcrdv .category-nav a:hover { color: #fff; background: var(--navy); }
.lcrdv .category-nav img.lcrdv-icon { width: 23px; height: 23px; }
.lcrdv .catalog-section { margin: 0 0 94px; scroll-margin-top: 176px; }
.lcrdv .section-header { display: flex; max-width: 920px; align-items: flex-start; gap: 20px; margin-bottom: 34px; }
.lcrdv .section-icon { display: grid; width: 62px; min-width: 62px; height: 62px; place-items: center; border-radius: 18px; color: #fff; background: linear-gradient(145deg, var(--red), #ff7a67); box-shadow: 0 10px 24px rgba(255, 77, 79, 0.2); }
.lcrdv .section-icon img.lcrdv-icon { width: 30px; height: 30px; }
.lcrdv .section-header h2 { margin: -4px 0 4px; color: var(--navy); font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 900; letter-spacing: -0.035em; line-height: 1.15; }
.lcrdv .section-header p { margin: 0; color: var(--muted); font-size: 1.04rem; }
.lcrdv .service-grid { display: grid; gap: 22px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lcrdv .service-card { display: flex; min-width: 0; overflow: hidden; flex-direction: column; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 12px 30px rgba(6, 42, 94, 0.07); transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease; }
.lcrdv .service-card:hover { border-color: rgba(11, 99, 206, 0.28); box-shadow: 0 22px 46px rgba(6, 42, 94, 0.13); transform: translateY(-5px); }
.lcrdv .card-icon { display: grid; height: 72px; place-items: center; color: #fff; background: radial-gradient(circle at 85% 0, rgba(255, 255, 255, 0.24), transparent 35%), linear-gradient(135deg, var(--blue), var(--navy)); }
.lcrdv .catalog-section:nth-of-type(even) .card-icon { background: radial-gradient(circle at 85% 0, rgba(255, 255, 255, 0.2), transparent 34%), linear-gradient(135deg, var(--coral), #ef3f52); }
.lcrdv .card-body { display: flex; min-height: 410px; flex: 1; flex-direction: column; padding: 24px; }
.lcrdv .card-body h3 { min-height: 58px; margin: 0 0 12px; color: var(--navy); font-size: 1.22rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1.28; }
.lcrdv .card-summary { display: -webkit-box; overflow: hidden; margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.58; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.lcrdv .included { display: flex; align-items: flex-start; gap: 7px; margin: 16px 0 0; color: #167652; font-size: 0.82rem; font-weight: 750; line-height: 1.42; }
.lcrdv .included img.lcrdv-icon { width: 19px; min-width: 19px; margin-top: 1px; }
.lcrdv .card-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 5px; margin-top: auto; padding: 22px 0 17px; }
.lcrdv .card-price span { width: 100%; color: var(--muted); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; }
.lcrdv .card-price strong { color: var(--red); font-size: 1.75rem; font-weight: 950; line-height: 1; }
.lcrdv .card-price small { color: var(--muted); font-size: 0.8rem; font-weight: 700; }
.lcrdv .card-button { width: 100%; min-height: 50px; border-radius: 13px; background: var(--navy); font-size: 0.9rem; font-weight: 850; }
.lcrdv .card-button:hover { background: var(--blue); }
.lcrdv .company-section {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  gap: clamp(38px, 6vw, 82px);
  margin: 18px 0 94px;
  padding: clamp(34px, 5vw, 66px);
  border: 1px solid rgba(11, 99, 206, 0.16);
  border-radius: 30px;
  background: radial-gradient(circle at 2% 100%, rgba(255, 77, 79, 0.1), transparent 29%), linear-gradient(135deg, #ffffff 0%, #f2f7ff 100%);
  box-shadow: 0 24px 64px rgba(6, 42, 94, 0.1);
  scroll-margin-top: 105px;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
}
.lcrdv .company-section::after { position: absolute; top: -130px; right: -110px; width: 330px; height: 330px; border: 1px dashed rgba(11, 99, 206, 0.14); border-radius: 50%; content: ""; pointer-events: none; }
.lcrdv .company-copy { position: relative; z-index: 1; }
.lcrdv .company-copy h2 { max-width: 620px; margin: 0 0 18px; color: var(--navy); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.1; }
.lcrdv .company-copy > p:not(.eyebrow) { max-width: 650px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.72; }
.lcrdv .company-cta { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; margin-top: 26px; padding: 0 20px; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--red), #e8374b); box-shadow: 0 13px 28px rgba(255, 77, 79, 0.2); font-size: 0.86rem; font-weight: 900; text-decoration: none; }
.lcrdv .company-cta:hover { background: linear-gradient(135deg, #ff655f, #cf263d); }
.lcrdv .company-cta img.lcrdv-icon { width: 18px; height: 18px; }
.lcrdv .company-commitments { position: relative; z-index: 1; display: grid; gap: 14px; }
.lcrdv .company-commitment { display: grid; align-items: center; gap: 16px; padding: 18px; border: 1px solid rgba(11, 99, 206, 0.13); border-radius: 18px; background: rgba(255, 255, 255, 0.92); box-shadow: 0 10px 26px rgba(6, 42, 94, 0.07); grid-template-columns: 54px minmax(0, 1fr); }
.lcrdv .company-commitment-icon { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 16px; color: #fff; background: linear-gradient(145deg, var(--blue), var(--navy)); box-shadow: 0 10px 22px rgba(6, 42, 94, 0.16); }
.lcrdv .company-commitment:nth-child(2) .company-commitment-icon { background: linear-gradient(145deg, var(--red), #ef3f52); }
.lcrdv .company-commitment-icon img.lcrdv-icon { width: 27px; height: 27px; }
.lcrdv .company-commitment strong, .lcrdv .company-commitment small { display: block; }
.lcrdv .company-commitment strong { margin-bottom: 3px; color: var(--navy); font-size: 1rem; font-weight: 900; }
.lcrdv .company-commitment small { color: var(--muted); font-size: 0.83rem; line-height: 1.48; }
.lcrdv .simulator { margin: 110px 0 94px; padding: clamp(30px, 5vw, 64px); border-radius: 30px; color: #fff; background: radial-gradient(circle at 88% 0, rgba(255, 77, 79, 0.2), transparent 28%), linear-gradient(145deg, #062a5e, #0a3f82); box-shadow: 0 28px 70px rgba(6, 42, 94, 0.22); scroll-margin-top: 105px; }
.lcrdv .simulator-intro { max-width: 780px; margin-bottom: 30px; }
.lcrdv .simulator-intro h2 { margin: 0 0 8px; color: #fff; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; letter-spacing: -0.035em; line-height: 1.15; }
.lcrdv .simulator-intro > p:last-child { margin: 0; color: #bdd4ee; font-size: 1.03rem; }
.lcrdv .simulator-panel { display: grid; align-items: end; gap: 18px; padding: 22px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 22px; background: rgba(255, 255, 255, 0.08); grid-template-columns: 76px minmax(260px, 1fr) minmax(140px, 0.42fr) minmax(290px, 0.9fr); }
.lcrdv .simulator-icon { display: grid; width: 70px; height: 70px; place-items: center; align-self: center; border-radius: 20px; color: #fff; background: var(--red); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14); }
.lcrdv .field { display: flex; min-width: 0; flex-direction: column; gap: 7px; }
.lcrdv .field > span { color: #bdd4ee; font-size: 0.75rem; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.lcrdv .field-service > div { width: 100%; }
.lcrdv .sim-select, .lcrdv .field input { width: 100%; height: 54px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 13px; color: var(--ink); background: #fff; font-size: 0.9rem; font-weight: 700; }
.lcrdv .field input { padding: 0 14px; }
.lcrdv .sim-results { display: grid; gap: 8px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lcrdv .sim-results > div { display: flex; min-width: 0; flex-direction: column; padding: 10px 12px; border-radius: 12px; background: rgba(255, 255, 255, 0.08); }
.lcrdv .sim-results span { color: #bdd4ee; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; }
.lcrdv .sim-results strong { overflow: hidden; color: #fff; font-size: 0.92rem; font-weight: 850; text-overflow: ellipsis; white-space: nowrap; }
.lcrdv .sim-results .sim-total { grid-column: 1 / -1; background: rgba(255, 77, 79, 0.19); }
.lcrdv .sim-results .sim-total strong { color: #fff; font-size: 1.45rem; }
.lcrdv .scenario { display: grid; align-items: center; gap: 40px; margin-top: 24px; padding: 28px; border-radius: 22px; color: var(--ink); background: #fff; grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr); }
.lcrdv .scenario h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.55rem; font-weight: 900; }
.lcrdv .scenario p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 0.93rem; }
.lcrdv .scenario-metrics { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.lcrdv .scenario-metrics > div { display: flex; min-height: 138px; flex-direction: column; justify-content: center; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); text-align: center; }
.lcrdv .scenario-metrics span { color: var(--muted); font-size: 0.72rem; font-weight: 750; line-height: 1.35; }
.lcrdv .scenario-metrics strong { color: var(--red); font-size: 2.15rem; font-weight: 950; line-height: 1.15; }
.lcrdv .scenario-metrics small { color: var(--navy); font-size: 0.75rem; font-weight: 800; }
.lcrdv .contact-section {
  position: relative;
  display: grid;
  overflow: hidden;
  margin: 0 0 92px;
  border: 1px solid rgba(6, 42, 94, 0.13);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(6, 42, 94, 0.14);
  scroll-margin-top: 108px;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
}
.lcrdv .contact-intro { position: relative; z-index: 1; padding: clamp(38px, 5vw, 68px); color: #fff; background: radial-gradient(circle at 100% 0, rgba(255, 77, 79, 0.24), transparent 32%), linear-gradient(145deg, #062a5e, #0a438b); }
.lcrdv .contact-intro::after { position: absolute; right: -80px; bottom: -110px; width: 270px; height: 270px; border: 1px dashed rgba(255, 255, 255, 0.2); border-radius: 50%; content: ""; pointer-events: none; }
.lcrdv .contact-intro .eyebrow { color: #ff8b82; }
.lcrdv .contact-intro h2 { max-width: 620px; margin: 0; color: #fff; font-size: clamp(2rem, 3.4vw, 3.2rem); font-weight: 950; letter-spacing: -0.045em; line-height: 1.08; }
.lcrdv .contact-lead { max-width: 620px; margin: 20px 0 0; color: #c9dcef; font-size: 1rem; line-height: 1.65; }
.lcrdv .contact-points { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.lcrdv .contact-points li { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 0.9rem; font-weight: 800; }
.lcrdv .contact-points img.lcrdv-icon { width: 20px; min-width: 20px; color: #ff6b64; }
.lcrdv .contact-note { display: flex; align-items: flex-start; gap: 11px; margin-top: 34px; padding: 15px 16px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 14px; color: #d7e5f4; background: rgba(255, 255, 255, 0.07); font-size: 0.8rem; line-height: 1.5; }
.lcrdv .contact-note img.lcrdv-icon { width: 21px; min-width: 21px; color: #fff; }
.lcrdv .contact-form { position: relative; z-index: 2; align-self: center; padding: clamp(30px, 4vw, 54px); background: linear-gradient(160deg, #fff, #f8fbff); }
.lcrdv .contact-form-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; color: var(--navy); font-size: 1.1rem; font-weight: 950; }
.lcrdv .contact-form-heading > div { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; color: #fff; background: var(--red); box-shadow: 0 9px 20px rgba(255, 77, 79, 0.2); }
.lcrdv .contact-form-heading img.lcrdv-icon { width: 21px; height: 21px; }
.lcrdv .contact-fields { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lcrdv .contact-fields label { display: flex; min-width: 0; flex-direction: column; gap: 7px; }
.lcrdv .contact-fields label > span { color: var(--navy); font-size: 0.73rem; font-weight: 850; letter-spacing: 0.035em; text-transform: uppercase; }
.lcrdv .contact-fields input, .lcrdv .contact-fields select, .lcrdv .contact-fields textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: #fff; font: inherit; font-size: 0.9rem; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.lcrdv .contact-fields input, .lcrdv .contact-fields select { height: 52px; padding: 0 13px; }
.lcrdv .contact-fields textarea { min-height: 126px; padding: 13px; line-height: 1.55; resize: vertical; }
.lcrdv .contact-fields input:hover, .lcrdv .contact-fields select:hover, .lcrdv .contact-fields textarea:hover { border-color: rgba(11, 99, 206, 0.34); }
.lcrdv .contact-field-wide { grid-column: 1 / -1; }
.lcrdv .contact-consent { display: flex; align-items: flex-start; gap: 9px; margin: 16px 0; color: var(--muted); font-size: 0.76rem; line-height: 1.45; cursor: pointer; }
.lcrdv .contact-consent input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--blue); }
.lcrdv .contact-submit { width: 100%; min-height: 54px; gap: 9px; border-radius: 13px; background: linear-gradient(135deg, var(--red), #e8374b); font-size: 0.9rem; font-weight: 900; box-shadow: 0 13px 28px rgba(255, 77, 79, 0.2); }
.lcrdv .contact-submit:hover { background: linear-gradient(135deg, #ff655f, #cf263d); }
.lcrdv .contact-success { display: flex; align-items: flex-start; gap: 11px; margin-top: 14px; padding: 13px 14px; border: 1px solid rgba(22, 118, 82, 0.18); border-radius: 12px; color: #145f47; background: #effaf5; }
.lcrdv .contact-success > img.lcrdv-icon { width: 20px; min-width: 20px; margin-top: 1px; }
.lcrdv .contact-success div { display: flex; flex-direction: column; gap: 2px; }
.lcrdv .contact-success strong { font-size: 0.82rem; }
.lcrdv .contact-success span { font-size: 0.72rem; line-height: 1.45; }
.lcrdv .site-footer { position: relative; overflow: hidden; padding: 62px 0 0; color: rgba(255, 255, 255, 0.76); background: #041d43; }
.lcrdv .site-footer::before { position: absolute; top: -170px; right: -120px; width: 420px; height: 420px; border: 1px dashed rgba(255, 255, 255, 0.08); border-radius: 50%; content: ""; pointer-events: none; }
.lcrdv .footer-main { position: relative; z-index: 1; display: grid; width: min(1440px, calc(100% - 32px)); align-items: start; gap: clamp(30px, 4vw, 62px); margin: 0 auto; padding-bottom: 48px; grid-template-columns: minmax(260px, 1.25fr) minmax(180px, 0.65fr) minmax(160px, 0.55fr) minmax(270px, 0.9fr); }
.lcrdv .footer-brand > a { display: block; width: min(330px, 100%); padding: 12px 15px; border-radius: 13px; background: #fff; box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16); }
.lcrdv .footer-brand img { display: block; width: 100%; height: auto; }
.lcrdv .footer-brand > p { max-width: 390px; margin: 18px 0 0; color: #b8cee5; font-size: 0.87rem; line-height: 1.6; }
.lcrdv .footer-column { display: flex; flex-direction: column; gap: 10px; }
.lcrdv .footer-column h2 { margin: 2px 0 8px; color: #fff; font-size: 0.76rem; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }
.lcrdv .footer-column a { display: flex; align-items: center; justify-content: space-between; gap: 8px; color: #b8cee5; font-size: 0.82rem; font-weight: 720; text-decoration: none; transition: color 0.2s ease, transform 0.2s ease; }
.lcrdv .footer-column a:hover { color: #fff; transform: translateX(3px); }
.lcrdv .footer-column img.lcrdv-icon { width: 15px; min-width: 15px; color: #ff756d; }
.lcrdv .footer-trust { padding: 20px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 18px; background: rgba(255, 255, 255, 0.06); }
.lcrdv .footer-trust-title { display: flex; align-items: flex-start; gap: 11px; }
.lcrdv .footer-trust-title > img.lcrdv-icon { width: 23px; min-width: 23px; color: #ff756d; }
.lcrdv .footer-trust-title div { display: flex; flex-direction: column; gap: 2px; }
.lcrdv .footer-trust-title strong { color: #fff; font-size: 0.84rem; }
.lcrdv .footer-trust-title span { color: #9eb9d4; font-size: 0.7rem; line-height: 1.4; }
.lcrdv .payments { display: flex; align-items: center; gap: 12px; margin-top: 18px; font-size: 0.68rem; font-weight: 800; }
.lcrdv .payments > img { width: 40px; height: 24px; object-fit: contain; }
.lcrdv .bank { display: inline-flex; align-items: center; gap: 5px; color: #fff; }
.lcrdv .bank img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.lcrdv .footer-bottom { position: relative; z-index: 1; display: flex; width: min(1440px, calc(100% - 32px)); min-height: 58px; align-items: center; justify-content: space-between; gap: 20px; margin: 0 auto; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.lcrdv .footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.48); font-size: 0.69rem; }
.lcrdv .footer-bottom a { color: #fff; font-size: 0.72rem; font-weight: 850; text-decoration: none; }
.lcrdv .service-dialog { display: block; width: min(1120px, calc(100vw - 32px)); max-width: 1120px; max-height: min(88vh, 900px); overflow: auto; gap: 0; padding: 0; border: 0; border-radius: 24px; }
.lcrdv .service-dialog > button { z-index: 3; top: 18px; right: 18px; display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: #fff; background: rgba(255, 255, 255, 0.12); opacity: 1; }
.lcrdv .dialog-heading { display: flex; flex-direction: row; align-items: center; gap: 16px; padding: 26px 68px 26px 30px; color: #fff; background: linear-gradient(135deg, var(--navy), #0b4b9e); text-align: left; }
.lcrdv .dialog-heading-icon { display: grid; width: 62px; min-width: 62px; height: 62px; place-items: center; border-radius: 18px; background: rgba(255, 255, 255, 0.11); }
.lcrdv .dialog-heading p { margin: 0 0 2px; color: #bdd4ee; font-size: 0.82rem; font-weight: 750; }
.lcrdv .dialog-heading [data-slot="dialog-title"] { margin: 0; color: #fff; font-size: clamp(1.55rem, 3vw, 2.35rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.15; }
.lcrdv .dialog-columns { display: grid; gap: 34px; padding: 36px; grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr); }
.lcrdv .dialog-copy h3, .lcrdv .dialog-order h3 { margin: 0 0 9px; color: var(--navy); font-size: 1.18rem; font-weight: 900; }
.lcrdv .dialog-copy h3:not(:first-child) { margin-top: 26px; }
.lcrdv .dialog-copy > p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.lcrdv .dialog-copy ol { display: grid; gap: 12px; margin: 18px 0 0; padding: 0; list-style: none; }
.lcrdv .dialog-copy li { display: flex; align-items: flex-start; gap: 13px; color: var(--muted); font-size: 0.88rem; }
.lcrdv .dialog-copy li > span { display: grid; width: 31px; min-width: 31px; height: 31px; place-items: center; border-radius: 10px; color: #fff; background: var(--red); font-size: 0.74rem; font-weight: 900; }
.lcrdv .dialog-order { align-self: start; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.lcrdv .base-price { display: flex; flex-direction: column; margin: 0 0 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.75rem; font-weight: 750; }
.lcrdv .base-price strong { color: var(--navy); font-size: 1.15rem; }
.lcrdv .tier-table { overflow: hidden; margin-bottom: 20px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.lcrdv .tier-table > div { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 13px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.8rem; }
.lcrdv .tier-table > div:last-child { border-bottom: 0; }
.lcrdv .tier-table strong { color: var(--navy); text-align: right; }
.lcrdv .qty-label { display: block; margin-bottom: 7px; color: var(--navy); font-size: 0.8rem; font-weight: 850; }
.lcrdv .quantity-control { display: grid; margin-bottom: 14px; grid-template-columns: 48px 1fr 48px; }
.lcrdv .quantity-control button, .lcrdv .quantity-control input { height: 50px; border: 1px solid var(--line); background: #fff; }
.lcrdv .quantity-control button { display: grid; place-items: center; color: var(--navy); cursor: pointer; }
.lcrdv .quantity-control button:first-child { border-radius: 12px 0 0 12px; }
.lcrdv .quantity-control button:last-child { border-radius: 0 12px 12px 0; }
.lcrdv .quantity-control input { width: 100%; border-right: 0; border-left: 0; color: var(--ink); text-align: center; }
.lcrdv .order-total { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; color: var(--muted); font-size: 0.78rem; }
.lcrdv .order-total strong { color: var(--red); font-size: 1.3rem; font-weight: 950; }
.lcrdv .add-button { width: 100%; min-height: 52px; border-radius: 13px; background: linear-gradient(135deg, var(--blue), var(--navy)); font-size: 0.88rem; font-weight: 850; }
.lcrdv .cart-message { display: flex; align-items: center; gap: 7px; margin: 12px 0 0; color: #167652; font-size: 0.78rem; font-weight: 750; }
.lcrdv .cart-message img.lcrdv-icon { width: 18px; height: 18px; }
.lcrdv button:focus-visible, .lcrdv a:focus-visible, .lcrdv input:focus-visible, .lcrdv select:focus-visible, .lcrdv textarea:focus-visible { outline: 3px solid rgba(11, 99, 206, 0.4); outline-offset: 3px; }

@media (max-width: 1180px) {
.lcrdv .header-inner { grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr); }
.lcrdv .brand { width: 275px; }
.lcrdv .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.lcrdv .hero { grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr); }
.lcrdv .hero-copy { padding-right: 18px; }
.lcrdv .hero-simulator { margin-right: 26px; margin-left: 8px; }
.lcrdv .simulator-panel { grid-template-columns: 70px minmax(250px, 1fr) minmax(140px, 0.5fr); }
.lcrdv .sim-results { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); padding-top: 17px; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.lcrdv .sim-results .sim-total { grid-column: auto; }
.lcrdv .contact-section { grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr); }
.lcrdv .footer-main { gap: 34px; grid-template-columns: minmax(250px, 1.15fr) minmax(165px, 0.62fr) minmax(150px, 0.56fr) minmax(245px, 0.85fr); }
}

@media (max-width: 920px) {
.lcrdv { font-size: 17px; }
.lcrdv .page-wrap { width: min(100% - 24px, 760px); }
.lcrdv .header-inner { width: min(100% - 24px, 760px); grid-template-columns: 1fr auto; }
.lcrdv .main-nav { display: none; }
.lcrdv .brand { width: 265px; height: 62px; }
.lcrdv .hero { min-height: 0; grid-template-columns: 1fr; }
.lcrdv .hero-copy { padding: 52px 34px 32px; }
.lcrdv .hero-simulator { width: auto; margin: 0 34px 42px; }
.lcrdv .category-nav { position: static; top: auto; }
.lcrdv .category-nav a { flex-direction: column; gap: 3px; font-size: 0.78rem; }
.lcrdv .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lcrdv .company-section { grid-template-columns: 1fr; }
.lcrdv .company-commitments { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.lcrdv .company-commitment { align-items: flex-start; grid-template-columns: 1fr; }
.lcrdv .scenario { grid-template-columns: 1fr; }
.lcrdv .dialog-columns { grid-template-columns: 1fr; }
.lcrdv .contact-section { grid-template-columns: 1fr; }
.lcrdv .contact-intro { padding: 48px 40px; }
.lcrdv .contact-form { padding: 40px; }
.lcrdv .footer-main { width: min(100% - 24px, 760px); grid-template-columns: minmax(0, 1.15fr) minmax(170px, 0.85fr); }
.lcrdv .footer-brand { grid-column: 1 / -1; }
.lcrdv .footer-trust { grid-column: 1 / -1; align-self: start; }
.lcrdv .footer-bottom { width: min(100% - 24px, 760px); }
.lcrdv .payments { justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 640px) {
.lcrdv { font-size: 16px; }
.lcrdv .page-wrap { width: calc(100% - 20px); }
.lcrdv .header-inner { width: calc(100% - 20px); min-height: 76px; gap: 10px; }
.lcrdv .brand { width: 175px; height: 50px; }
.lcrdv .language-switch a { min-width: 32px; height: 32px; padding: 0 6px; }
.lcrdv .cart-indicator { display: none; }
.lcrdv .hero { margin-top: 10px; border-radius: 22px; }
.lcrdv .hero-copy { padding: 40px 24px 26px; }
.lcrdv .hero h1 { font-size: clamp(2.15rem, 12vw, 3.2rem); }
.lcrdv .hero-actions { flex-direction: column; }
.lcrdv .hero-actions a { width: 100%; }
.lcrdv .benefits { flex-direction: column; }
.lcrdv .hero-simulator { margin: 0 14px 20px; padding: 0 16px 18px; border-radius: 18px; }
.lcrdv .hero-simulator::before { display: none; }
.lcrdv .hero-simulator-tabs { min-height: 56px; margin-bottom: 17px; }
.lcrdv .hero-simulator-tabs span, .lcrdv .hero-simulator-tabs strong { font-size: 0.63rem; }
.lcrdv .hero-simulator-service { padding: 12px; grid-template-columns: 54px minmax(0, 1fr); }
.lcrdv .hero-simulator-icon { width: 54px; height: 54px; border-radius: 14px; }
.lcrdv .hero-simulator-base { align-items: flex-start; flex-direction: column; gap: 5px; }
.lcrdv .hero-simulator-base strong { text-align: left; }
.lcrdv .hero-simulator-quantity-title { align-items: flex-start; flex-direction: column; gap: 3px; }
.lcrdv .hero-simulator-quantity-title small { text-align: left; }
.lcrdv .hero-simulator-quantity { grid-template-columns: 44px minmax(70px, 1fr) auto 44px; }
.lcrdv .hero-simulator-summary { grid-template-columns: 1fr; }
.lcrdv .category-nav { margin-bottom: 44px; grid-template-columns: 1fr; }
.lcrdv .category-nav a { min-height: 48px; flex-direction: row; }
.lcrdv .catalog-section { margin-bottom: 64px; scroll-margin-top: 92px; }
.lcrdv .section-header { gap: 13px; }
.lcrdv .section-icon { width: 52px; min-width: 52px; height: 52px; border-radius: 15px; }
.lcrdv .section-header h2 { font-size: 1.9rem; }
.lcrdv .service-grid { grid-template-columns: 1fr; }
.lcrdv .card-body { min-height: 350px; }
.lcrdv .company-section { margin-bottom: 64px; padding: 32px 22px; border-radius: 22px; }
.lcrdv .company-commitments { grid-template-columns: 1fr; }
.lcrdv .company-commitment { align-items: center; grid-template-columns: 52px minmax(0, 1fr); }
.lcrdv .company-commitment-icon { width: 52px; height: 52px; }
.lcrdv .simulator { margin-top: 72px; padding: 26px 18px; border-radius: 22px; }
.lcrdv .simulator-panel { grid-template-columns: 62px 1fr; padding: 18px; }
.lcrdv .simulator-icon { width: 62px; height: 62px; }
.lcrdv .field-service { min-width: 0; }
.lcrdv .field-quantity { grid-column: 1 / -1; }
.lcrdv .sim-results { grid-template-columns: 1fr; }
.lcrdv .sim-results .sim-total { grid-column: auto; }
.lcrdv .scenario { padding: 22px 18px; }
.lcrdv .scenario-metrics { grid-template-columns: 1fr; }
.lcrdv .contact-section { margin-bottom: 62px; border-radius: 22px; }
.lcrdv .contact-intro { padding: 36px 24px; }
.lcrdv .contact-intro h2 { font-size: 2rem; }
.lcrdv .contact-form { padding: 28px 20px; }
.lcrdv .contact-fields { grid-template-columns: 1fr; }
.lcrdv .contact-field-wide { grid-column: auto; }
.lcrdv .site-footer { padding-top: 44px; }
.lcrdv .footer-main { width: calc(100% - 32px); gap: 30px; padding-bottom: 36px; grid-template-columns: 1fr; }
.lcrdv .footer-brand { grid-column: auto; }
.lcrdv .footer-brand > a { width: 100%; max-width: 330px; }
.lcrdv .footer-trust { grid-column: auto; padding: 17px; }
.lcrdv .footer-bottom { width: calc(100% - 32px); min-height: 70px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 4px; padding: 15px 0; }
.lcrdv .service-dialog { width: calc(100vw - 16px); max-height: calc(100vh - 16px); border-radius: 18px; }
.lcrdv .dialog-heading { padding: 24px 54px 22px 18px; }
.lcrdv .dialog-heading-icon { width: 50px; min-width: 50px; height: 50px; }
.lcrdv .dialog-columns { padding: 21px 17px; }
.lcrdv .dialog-order { padding: 17px; }
}

@media (prefers-reduced-motion: reduce) {
.lcrdv *, .lcrdv *::before, .lcrdv *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
.lcrdv .skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 12px 18px; color: #fff; background: var(--navy); border-radius: 8px; transform: translateY(-150%); }
.lcrdv .skip-link:focus { transform: translateY(0); }
.lcrdv .preview-notice { margin: 16px 0; padding: 12px; border: 1px solid var(--line); border-radius: 10px; color: var(--navy); background: #f0f6ff; font-size: .875rem; line-height: 1.5; }
.lcrdv .price-threshold { margin: -4px 0 14px; color: var(--muted); font-size: .75rem; }
.lcrdv .hero-simulator-field > span, .lcrdv .hero-simulator-quantity-title > span, .lcrdv .field > span, .lcrdv .contact-fields label > span, .lcrdv .contact-consent { font-size: .875rem; }
.lcrdv .hero-simulator-tabs span, .lcrdv .hero-simulator-tabs strong, .lcrdv .hero-simulator-service small, .lcrdv .hero-simulator-base small, .lcrdv .hero-simulator-quantity-title small, .lcrdv .hero-simulator-tiers small, .lcrdv .hero-simulator-summary span, .lcrdv .sim-results span, .lcrdv .scenario-metrics span, .lcrdv .contact-success span, .lcrdv .footer-trust-title span, .lcrdv .payments, .lcrdv .footer-bottom p, .lcrdv .footer-bottom a { font-size: .75rem; }
.lcrdv .sim-results strong { overflow: visible; white-space: normal; overflow-wrap: anywhere; }
.lcrdv .hero-simulator-summary strong, .lcrdv .order-total strong { overflow-wrap: anywhere; min-width: 0; }
.lcrdv .payments { flex-wrap: wrap; }
.lcrdv .payments > img { flex: 0 0 40px; }
.lcrdv .bank { min-width: 0; }
.lcrdv .bank img { flex: 0 0 22px; }
.lcrdv .dialog-close { position: absolute; top: 16px; right: 16px; display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: var(--navy); background: #eef4fc; cursor: pointer; }
.lcrdv .cart-dialog { width: min(640px, calc(100vw - 24px)); max-width: 640px; max-height: 88dvh; overflow: auto; padding: 28px; }
.lcrdv .cart-dialog [data-slot="dialog-title"] { padding-right: 38px; color: var(--navy); }
.lcrdv .cart-items { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.lcrdv .cart-items li { padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.lcrdv .cart-items h3 { margin: 0 0 12px; color: var(--navy); font-size: 1rem; font-weight: 800; }
.lcrdv .cart-items label { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: .875rem; }
.lcrdv .cart-items input { width: 140px; max-width: 45%; min-height: 44px; padding: 8px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.lcrdv .cart-items p { margin: 12px 0 0; font-size: .875rem; overflow-wrap: anywhere; }
.lcrdv .cart-items button { min-height: 44px; color: #a51e32; text-decoration: underline; font-size: .875rem; cursor: pointer; }
@media (min-width: 921px) and (max-width: 1100px) {
.lcrdv .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
.lcrdv .header-inner { grid-template-columns: 1fr auto; }
.lcrdv .header-actions { gap: 6px; }
.lcrdv .brand { width: min(145px, 100%); }
.lcrdv .cart-indicator { display: flex; min-width: 38px; padding: 4px; gap: 2px; }
.lcrdv .language-switch a { min-width: 28px; padding: 0 4px; }
.lcrdv .hero-simulator-quantity { grid-template-columns: 36px minmax(50px, 1fr) minmax(0, auto) 36px; }
.lcrdv .hero-simulator-quantity > span { overflow-wrap: anywhere; }
.lcrdv .cart-dialog { padding: 22px 16px; }
}
.lcrdv { font-size: 1.125rem; background: #f7f9fc; }
.lcrdv .page-wrap, .lcrdv .header-inner { max-width: 1320px; }
.lcrdv .site-header { box-shadow: none; background: #fff; }
.lcrdv .header-inner { min-height: 86px; grid-template-columns: minmax(240px,1fr) auto auto; }
.lcrdv .brand { width: 270px; height: 62px; }
.lcrdv .main-nav a { font-size: 1rem; font-weight: 650; }
.lcrdv .language-switch a { min-width: 44px; min-height: 44px; font-size: .875rem; }
.lcrdv .hero { margin: 32px 0 40px; min-height: 0; border-radius: 24px; background: #edf3fc; box-shadow: none; grid-template-columns: minmax(0,1fr) minmax(430px,.96fr); }
.lcrdv .hero::before { background-image: linear-gradient(#155bd709 1px,transparent 1px),linear-gradient(90deg,#155bd709 1px,transparent 1px); background-size: 56px 56px; opacity: 1; mask-image: linear-gradient(90deg,transparent,#000); }
.lcrdv .hero-copy { padding: 58px 32px 58px 48px; }
.lcrdv .hero-since { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 36px; padding: 8px 13px; border: 1px solid #cad7eb; border-radius: 100px; color: var(--navy); background: #fff; font-size: .875rem; font-weight: 650; }
.lcrdv .hero-since span { width: 7px; height: 7px; border-radius: 50%; background: #23795d; }
.lcrdv .eyebrow { font-size: .875rem; color: var(--blue); letter-spacing: .07em; font-weight: 750; }
.lcrdv .hero h1 { font-size: clamp(2.7rem,4.1vw,3.7rem); font-weight: 750; letter-spacing: -.045em; line-height: 1.08; }
.lcrdv .hero h1 span { display: block; margin-top: 6px; color: var(--blue); }
.lcrdv .hero-lead { margin-top: 24px; font-size: 1.125rem; line-height: 1.75; max-width: 31rem; }
.lcrdv .hero-actions { margin-top: 30px; gap: 12px; }
.lcrdv .primary-cta, .lcrdv .secondary-cta { min-height: 52px; font-size: 1rem; border-radius: 10px; padding: 0 18px; }
.lcrdv .primary-cta, .lcrdv .hero-simulator-button, .lcrdv .add-button { background: var(--blue); box-shadow: none; color: #fff !important; }
.lcrdv .primary-cta:hover, .lcrdv .hero-simulator-button:hover, .lcrdv .add-button:hover { background: #1046ae; }
.lcrdv .benefits { flex-direction: column; gap: 12px; margin-top: 28px; }
.lcrdv .benefits li { font-size: .9375rem; font-weight: 600; }
.lcrdv .benefits img.lcrdv-icon { color: #23795d; }
.lcrdv .hero-simulator { margin: 28px 28px 28px 12px; padding: 0 24px 18px; border-radius: 18px; box-shadow: 0 14px 40px #102b5010; border-color: #dbe4ef; background: #fff; }
.lcrdv .hero-simulator::before { display: none; }
.lcrdv .hero-simulator-tabs { min-height: 60px; margin-bottom: 20px; gap: 12px; }
.lcrdv .hero-simulator-tabs span, .lcrdv .hero-simulator-tabs strong { font-size: .875rem; letter-spacing: 0; text-transform: none; }
.lcrdv .hero-simulator-tabs strong { font-size: 1.05rem; }
.lcrdv .hero-simulator-select, .lcrdv .sim-select { font-size: 1rem; font-weight: 600; min-height: 52px; }
.lcrdv .hero-simulator-service { grid-template-columns: 44px minmax(0,1fr); padding: 12px 0; background: transparent; }
.lcrdv .hero-simulator-icon { width: 44px; height: 44px; border-radius: 12px; color: var(--blue); background: #edf3fc; box-shadow: none; }
.lcrdv .hero-simulator-service h2 { font-size: 1.08rem; white-space: normal; line-height: 1.35; font-weight: 700; }
.lcrdv .hero-simulator-service small { font-size: .875rem; text-transform: none; white-space: normal; }
.lcrdv .hero-simulator-service p { display: none; }
.lcrdv .hero-simulator-base { padding: 10px 0; border: 0; border-top: 1px solid var(--line); border-radius: 0; }
.lcrdv .hero-simulator-base > span { font-size: .875rem; text-transform: none; letter-spacing: 0; font-weight: 500; }
.lcrdv .hero-simulator-base small { display: none; }
.lcrdv .hero-simulator-base strong { font-size: .9375rem; font-weight: 650; }
.lcrdv .hero-simulator-quantity-title { flex-wrap: wrap; }
.lcrdv .hero-simulator-quantity-title > span { letter-spacing: 0; text-transform: none; }
.lcrdv .hero-simulator-quantity-title small { font-size: .875rem; max-width: 100%; }
.lcrdv .hero-simulator-quantity { grid-template-columns: 44px minmax(50px,1fr) minmax(0,auto) 44px; }
.lcrdv .hero-simulator-quantity > span { font-size: .875rem; overflow-wrap: anywhere; }
.lcrdv .hero-simulator-tiers { gap: 8px; }
.lcrdv .hero-simulator-tiers button { min-height: 68px; padding: 10px 4px; border-radius: 10px; box-shadow: none; }
.lcrdv .hero-simulator-tiers button span { font-size: 1.05rem; }
.lcrdv .hero-simulator-tiers button em { display: block; font-size: .875rem; font-weight: 500; font-style: normal; line-height: 1.2; }
.lcrdv .hero-simulator-tiers button small { display: block; font-size: .875rem; line-height: 1.4; margin-top: 5px; }
.lcrdv .hero-simulator-tiers button.active { color: var(--blue); background: #edf3fc; border-color: var(--blue); }
.lcrdv .hero-simulator-tiers button.active small { color: var(--blue); }
.lcrdv .hero-simulator-summary { border-radius: 12px; }
.lcrdv .hero-simulator-summary span { font-size: .875rem; text-transform: none; letter-spacing: 0; }
.lcrdv .hero-simulator-summary strong { font-size: 1rem; }
.lcrdv .hero-simulator-total strong { font-size: 1.65rem; color: var(--blue); }
.lcrdv .hero-simulator-button { min-height: 52px; font-size: 1rem; border-radius: 10px; }
.lcrdv .simulation-savings { display: flex; align-items: center; gap: 7px; margin: 14px 0; color: #1d694b; font-size: .875rem; line-height: 1.4; }
.lcrdv .simulation-savings img.lcrdv-icon { width: 18px; flex: 0 0 18px; }
.lcrdv .simulation-savings strong { margin-left: auto; white-space: nowrap; }
.lcrdv .simulation-details { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; min-height: 44px; margin-top: 4px; color: var(--navy); font-size: .9375rem; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.lcrdv .simulation-details img.lcrdv-icon { width: 16px; }
.lcrdv .simulation-feedback { margin: 5px 0 0; font-size: .875rem; text-align: center; color: var(--muted); line-height: 1.45; }
.lcrdv .category-nav { background: #fff; border: 1px solid var(--line); box-shadow: none; border-radius: 14px; margin-bottom: 56px; }
.lcrdv .category-nav a { font-size: 1rem; min-height: 58px; font-weight: 650; }
.lcrdv .section-header h2 { font-size: clamp(1.9rem,3vw,2.6rem); font-weight: 750; }
.lcrdv .section-header p { font-size: 1.0625rem; }
.lcrdv .service-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.lcrdv .service-card { border: 1px solid var(--line); border-radius: 16px; box-shadow: none; }
.lcrdv .service-card:hover { border-color: #96b3dc; box-shadow: 0 10px 26px #102b500a; transform: translateY(-3px); }
.lcrdv .card-icon { min-height: 76px; height: 76px; background: #eef3fa; color: var(--blue); }
.lcrdv .card-body { padding: 24px; min-height: 0; }
.lcrdv .card-body h3 { font-size: 1.25rem; font-weight: 750; line-height: 1.3; }
.lcrdv .card-summary { font-size: 1rem; line-height: 1.65; }
.lcrdv .included { font-size: .875rem; line-height: 1.45; }
.lcrdv .card-price { padding-bottom: 12px; gap: 6px; }
.lcrdv .card-price span { font-size: .875rem; text-transform: none; letter-spacing: 0; font-weight: 500; }
.lcrdv .card-price strong { color: var(--navy); font-size: 2.15rem; letter-spacing: -.035em; font-weight: 750; }
.lcrdv .card-price small { font-size: 1rem; }
.lcrdv .price-threshold { font-size: .875rem; line-height: 1.5; margin-bottom: 20px; }
.lcrdv .price-threshold span { display: block; margin-top: 3px; }
.lcrdv .card-button { font-size: .9375rem; font-weight: 650; border-radius: 10px; color: var(--blue); background: #edf3fc; border: 1px solid #d4e2f6; }
.lcrdv .card-button:hover { color: #fff; background: var(--blue); }
.lcrdv .company-section { background: #fff; box-shadow: none; border-radius: 20px; }
.lcrdv .company-commitment { box-shadow: none; }
.lcrdv .company-commitment small, .lcrdv .dialog-copy > p, .lcrdv .dialog-copy li { font-size: 1rem; }
.lcrdv .company-cta { background: var(--blue); box-shadow: none; font-size: 1rem; }
.lcrdv .simulator { background: var(--navy); box-shadow: none; border-radius: 20px; }
.lcrdv .sim-results span, .lcrdv .scenario-metrics span, .lcrdv .scenario-metrics small, .lcrdv .footer-trust-title span, .lcrdv .payments, .lcrdv .footer-bottom p, .lcrdv .footer-bottom a { font-size: .875rem; }
.lcrdv .contact-section { box-shadow: none; border-radius: 20px; }
.lcrdv .contact-intro { background: var(--navy); }
.lcrdv .contact-intro .eyebrow { color: #b5d0ff; }
.lcrdv .contact-form { background: #fff; }
.lcrdv .contact-note, .lcrdv .contact-consent { font-size: .9375rem; }
.lcrdv .contact-fields input, .lcrdv .contact-fields select, .lcrdv .contact-fields textarea { font-size: 1rem; }
.lcrdv .dialog-close { width: 44px; height: 44px; }
.lcrdv .tier-table > div, .lcrdv .qty-label, .lcrdv .base-price, .lcrdv .order-total, .lcrdv .cart-message { font-size: .9375rem; }
.lcrdv button:focus-visible, .lcrdv a:focus-visible, .lcrdv input:focus-visible, .lcrdv select:focus-visible, .lcrdv textarea:focus-visible { outline: 3px solid #155bd7; outline-offset: 3px; }
@media (max-width: 1100px) {
.lcrdv .header-inner { grid-template-columns: 1fr auto; }
.lcrdv .main-nav { display: none; }
.lcrdv .hero-copy { padding: 40px 24px; }
.lcrdv .hero h1 { font-size: 2.8rem; }
.lcrdv .hero-simulator { margin-right: 20px; } }
@media (max-width: 920px) {
.lcrdv .hero { grid-template-columns: 1fr; }
.lcrdv .hero-copy { padding: 36px; }
.lcrdv .hero-since { margin-bottom: 22px; }
.lcrdv .hero h1 { font-size: clamp(2.5rem,6vw,3.6rem); }
.lcrdv .hero-lead { max-width: 100%; }
.lcrdv .benefits { flex-direction: row; }
.lcrdv .hero-simulator { margin: 0 28px 28px; }
.lcrdv .service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 640px) {
.lcrdv .header-inner { min-height: 78px; }
.lcrdv .brand { width: min(145px,100%); height: 50px; }
.lcrdv .header-actions { gap: 5px; }
.lcrdv .language-switch { border: 0; gap: 0; padding: 0; }
.lcrdv .language-switch a { min-width: 34px; width: 34px; height: 44px; padding: 0; }
.lcrdv .cart-indicator { min-width: 40px; width: 40px; min-height: 44px; }
.lcrdv .hero { margin-top: 14px; border-radius: 16px; }
.lcrdv .hero-copy { padding: 28px 20px; }
.lcrdv .hero h1 { font-size: clamp(2.3rem,9.4vw,3.2rem); }
.lcrdv .hero-lead { font-size: 1rem; line-height: 1.65; margin-top: 18px; }
.lcrdv .hero-actions { margin-top: 22px; }
.lcrdv .hero-actions .secondary-cta { display: none; }
.lcrdv .benefits { gap: 8px; margin-top: 18px; }
.lcrdv .benefits li { font-size: .875rem; }
.lcrdv .hero-simulator { margin: 0 10px 12px; padding: 0 14px 16px; }
.lcrdv .hero-simulator-tabs { flex-wrap: wrap; padding: 12px 0; gap: 4px; }
.lcrdv .hero-simulator-tabs strong { font-size: 1rem; }
.lcrdv .hero-simulator-summary { grid-template-columns: 1fr 1fr; }
.lcrdv .hero-simulator-base { flex-direction: row; }
.lcrdv .hero-simulator-quantity { grid-template-columns: 44px minmax(40px,1fr) minmax(0,auto) 44px; }
.lcrdv .category-nav { padding: 8px; gap: 4px; }
.lcrdv .category-nav a { justify-content: flex-start; padding: 0 14px; min-height: 50px; }
.lcrdv .service-grid { grid-template-columns: 1fr; gap: 16px; }
.lcrdv .card-body { min-height: 0; }
.lcrdv .catalog-section { margin-bottom: 48px; }
.lcrdv .contact-form { padding: 26px 18px; } }
.lcrdv .simulator-intro .eyebrow { color: #b5d0ff; }

/* Native controls replace the React component layer. */
.lcrdv { font-family: Inter, "Segoe UI", Arial, sans-serif; line-height: 1.6; color: #10233f; text-align: left; }
.lcrdv h1, .lcrdv h2, .lcrdv h3 { text-transform: none; font-family: inherit; }
.lcrdv img { vertical-align: middle; max-width: 100%; }
.lcrdv button, .lcrdv input, .lcrdv select, .lcrdv textarea { font-family: inherit; }
.lcrdv button { border: 0; }
.lcrdv button:disabled { opacity: .55; cursor: not-allowed; }
.lcrdv [hidden] { display: none !important; }
.lcrdv .lcrdv-icon { display: inline-block; flex-shrink: 0; object-fit: contain; filter: invert(31%) sepia(98%) saturate(2267%) hue-rotate(210deg) brightness(84%) contrast(98%); }
.lcrdv .lcrdv-button { display: inline-flex; justify-content: center; align-items: center; gap: 9px; text-decoration: none; cursor: pointer; text-align: center; line-height: 1.35; padding-top: 10px; padding-bottom: 10px; }
.lcrdv .lcrdv-button:hover, .lcrdv .company-cta:hover { text-decoration: none; }
.lcrdv .primary-cta .lcrdv-icon, .lcrdv .hero-simulator-button .lcrdv-icon, .lcrdv .company-cta .lcrdv-icon, .lcrdv .contact-submit .lcrdv-icon, .lcrdv .section-icon .lcrdv-icon, .lcrdv .company-commitment-icon .lcrdv-icon, .lcrdv .simulator-icon .lcrdv-icon, .lcrdv .dialog-heading .lcrdv-icon, .lcrdv .dialog-close .lcrdv-icon, .lcrdv .contact-intro .lcrdv-icon, .lcrdv .contact-form-heading .lcrdv-icon, .lcrdv .category-nav a:hover .lcrdv-icon, .lcrdv .card-button:hover .lcrdv-icon { filter: brightness(0) invert(1); }
.lcrdv .benefits .lcrdv-icon, .lcrdv .included .lcrdv-icon, .lcrdv .simulation-savings .lcrdv-icon { filter: invert(36%) sepia(16%) saturate(1664%) hue-rotate(107deg) brightness(91%) contrast(87%); }
.lcrdv .language-switch a { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; line-height: 1; }
.lcrdv .account-indicator { display: grid; width: 44px; min-width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.lcrdv .cart-indicator { text-decoration: none; }
.lcrdv .hero-simulator-select, .lcrdv .sim-select { display: block; padding: 0 34px 0 12px; appearance: auto; max-width: 100%; }
.lcrdv .hero-simulator-quantity-title label { margin: 0; font-size: .875rem; font-weight: 750; }
.lcrdv .hero-simulator-quantity button { border: 1px solid var(--line); }
.lcrdv .hero-simulator-quantity input { min-width: 0; padding: 0 3px; appearance: textfield; }
.lcrdv .hero-simulator-quantity input::-webkit-inner-spin-button, .lcrdv .hero-simulator-quantity input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.lcrdv .hero-simulator-tiers button { border: 1px solid var(--line); }
.lcrdv .hero-simulator-summary strong { white-space: normal; overflow-wrap: anywhere; }
.lcrdv .hero-simulator-summary .hero-simulator-total { background: #eaf1ff; }
.lcrdv .hero-simulator-summary .hero-simulator-total strong { color: var(--blue); font-size: 1.5rem; }
.lcrdv .estimate-notice { margin: 12px 0; font-size: .8125rem; line-height: 1.5; color: var(--muted); }
.lcrdv .native-product-link { display: block; margin: 10px 0 0; font-size: .875rem; text-align: center; color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.lcrdv .simulation-feedback { overflow-wrap: anywhere; }
.lcrdv .simulation-feedback:empty { display: none; }
.lcrdv .simulation-feedback.is-error { color: #a52934; text-align: left; }
.lcrdv .simulation-feedback.is-success { color: #176343; }
.lcrdv .service-unavailable { flex: 1; display: flex; align-items: end; margin: 22px 0; color: var(--muted); font-size: 1rem; }
.lcrdv .catalog-section:nth-of-type(even) .card-icon { background: #eef3fa; }
.lcrdv .section-icon, .lcrdv .company-commitment:nth-child(2) .company-commitment-icon, .lcrdv .contact-form-heading > div { background: var(--blue); box-shadow: none; }
.lcrdv .card-body h3 { min-height: 0; }
.lcrdv .card-summary { display: block; overflow: visible; }
.lcrdv .card-price { margin-top: auto; }
.lcrdv .simulator-intro h2 { color: #fff; }
.lcrdv .simulator-notice { grid-column: 1 / -1; color: #c5d8ed; margin: 0; }
.lcrdv .simulator-panel > .simulation-feedback { grid-column: 1 / -1; color: #fff; text-align: left; }
.lcrdv .simulator-panel > .simulation-feedback.is-error { color: #ffd3d7; }
.lcrdv .contact-form { margin: 0; }
.lcrdv .contact-submit { background: var(--blue); color: #fff; box-shadow: none; }
.lcrdv .contact-submit:hover { background: #1046ae; }
.lcrdv .contact-fields label { margin: 0; text-align: left; }
.lcrdv .contact-fields label > span { text-transform: none; letter-spacing: 0; }
.lcrdv .contact-consent { text-align: left; }
.lcrdv .contact-consent input { flex-shrink: 0; }
.lcrdv .lcrdv-honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.lcrdv .contact-feedback { margin: 18px 0 0; padding: 16px; border: 1px solid #b9decb; border-radius: 12px; background: #effaf5; color: #145f47; font-size: .9375rem; line-height: 1.5; }
.lcrdv .contact-feedback.is-error { border-color: #eac3c7; background: #fff3f4; color: #922331; }
.lcrdv .footer-column > p { margin: 0; font-size: .875rem; color: #b8cee5; }
.lcrdv .footer-main { max-width: 1320px; }
.lcrdv .payments { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.lcrdv .payment-badge { display: flex; min-width: 0; height: 66px; flex-direction: column; justify-content: center; align-items: center; gap: 3px; border: 1px solid #d9e2ef; border-radius: 7px; background: #fff; }
.lcrdv .payment-badge > img { width: 64px; height: 40px; object-fit: contain; }
.lcrdv .payment-bank > img { width: 24px; height: 24px; }
.lcrdv .payment-bank > span { color: var(--navy); font-size: .63rem; line-height: 1.1; font-weight: 700; text-align: center; padding: 0 3px; }
.lcrdv .service-dialog { position: fixed; inset: 0; margin: auto; color: var(--ink); background: #fff; max-height: 90dvh; overscroll-behavior: contain; }
.lcrdv .service-dialog:not([open]) { display: none; }
.lcrdv .service-dialog::backdrop { background: rgb(7 24 47 / 65%); backdrop-filter: blur(3px); }
.lcrdv .dialog-heading h2 { margin: 0; color: #fff; font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 750; letter-spacing: -.03em; line-height: 1.2; }
.lcrdv .dialog-heading h2:focus { outline: 0; }
.lcrdv .service-dialog > .dialog-close { width: 44px; height: 44px; top: 12px; right: 12px; }
.lcrdv .dialog-copy li > span { background: var(--blue); }
.lcrdv .dialog-copy li { line-height: 1.6; }
.lcrdv .dialog-order .hero-simulator-base { align-items: start; flex-direction: column; }
.lcrdv .dialog-order .hero-simulator-quantity-title { align-items: start; flex-direction: column; gap: 4px; }
.lcrdv .dialog-order .hero-simulator-quantity-title small { text-align: left; }
.lcrdv .dialog-order .hero-simulator-summary { grid-template-columns: 1fr; }
.lcrdv .dialog-order .hero-simulator-tiers { grid-template-columns: 1fr; }
.lcrdv .dialog-order .hero-simulator-tiers button { flex-direction: row; justify-content: space-between; padding: 12px; gap: 10px; }
.lcrdv .dialog-order .hero-simulator-tiers button small { margin-top: 0; }
@media (max-width: 640px) {
  .lcrdv .header-inner { grid-template-columns: minmax(0,1fr) auto; gap: 8px; }
  .lcrdv .header-actions { gap: 4px; }
  .lcrdv .brand { width: min(140px,100%); }
  .lcrdv .account-indicator { width: 36px; min-width: 36px; border: 0; }
  .lcrdv .language-switch a { min-width: 29px; width: 29px; font-size: .75rem; }
  .lcrdv .cart-indicator { width: 36px; min-width: 36px; justify-content: center; }
  .lcrdv .hero-simulator-base { gap: 12px; }
  .lcrdv .hero-simulator-base strong { text-align: right; }
  .lcrdv .hero-simulator-tiers button small { font-size: .8rem; overflow-wrap: anywhere; }
  .lcrdv .hero-simulator-summary .hero-simulator-total strong { font-size: 1.25rem; }
  .lcrdv .hero-simulator-quantity > span { font-size: .75rem; padding: 0 5px; }
  .lcrdv .service-dialog { max-height: calc(100dvh - 16px); }
  .lcrdv .dialog-columns { gap: 24px; }
  .lcrdv .dialog-order .hero-simulator-summary { grid-template-columns: 1fr 1fr; }
}
