:root {
  --navy: #080d43;
  --blue: #0675bd;
  --cyan: #14a7df;
  --magenta: #e5004f;
  --ink: #15182f;
  --muted: #60677b;
  --line: #e6e9f2;
  --soft: #f6f8fc;
  --white: #fff;
  --shadow: 0 18px 50px rgba(8, 13, 67, .10);
  --content-wide: 85vw;
  --content-text: 85vw;
  --content-gutter: 7.5vw;
}

/* Pixel-close alarm page refresh */
body:has(.alarm-template-page) {
  background: #fff;
}

.alarm-template-hero {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  border-bottom: 0;
  background: linear-gradient(90deg, #fff 0%, #fff 48%, #f5f8fc 48%, #f5f8fc 100%);
}

.alarm-template-hero-inner {
  width: var(--content-wide);
  min-height: 595px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: stretch;
}

.alarm-template-copy {
  padding: 86px 54px 118px 0;
}

.alarm-template-copy h1 {
  max-width: 560px;
  margin: 24px 0 18px;
  color: var(--navy);
  font-size: clamp(54px, 4.7vw, 84px);
  line-height: .98;
  letter-spacing: 0;
}

.alarm-template-copy > p {
  max-width: 535px;
  margin: 0;
  color: #3d4b69;
  font-size: 17px;
  line-height: 1.58;
}

.alarm-template-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 31px;
}

.alarm-template-actions .btn {
  min-width: 184px;
  height: 56px;
  justify-content: center;
  border-radius: 3px;
  font-size: 13px;
}

.alarm-template-minis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.alarm-template-minis article {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  align-items: center;
  min-width: 0;
}

.alarm-template-minis svg {
  width: 30px;
  height: 30px;
  grid-row: span 2;
  stroke: #6e7890;
  stroke-width: 1.9;
  fill: none;
}

.alarm-template-minis strong {
  color: var(--navy);
  font-size: 12px;
  line-height: 1.15;
}

.alarm-template-minis span {
  color: #7a8498;
  font-size: 11px;
  line-height: 1.15;
}

.alarm-template-media {
  position: relative;
  min-height: 595px;
  margin: 0;
  overflow: hidden;
}

.alarm-template-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.86) 42%, rgba(255,255,255,0) 100%);
}

.alarm-template-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.alarm-template-stats {
  position: relative;
  z-index: 4;
  margin: -54px 0 58px;
}

.alarm-template-stats-inner {
  width: var(--content-wide);
  min-height: 107px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #dce4ef;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(0, 24, 64, .14);
}

.alarm-template-stats article {
  display: grid;
  grid-template-columns: 45px auto;
  justify-content: center;
  align-items: center;
  column-gap: 17px;
  border-right: 1px solid #dce4ef;
}

.alarm-template-stats article:last-child { border-right: 0; }

.alarm-template-stats svg {
  width: 34px;
  height: 34px;
  grid-row: span 2;
  stroke: var(--blue);
  stroke-width: 2;
  fill: none;
}

.alarm-template-stats article:nth-child(2) svg,
.alarm-template-stats article:nth-child(4) svg {
  stroke: var(--pink);
}

.alarm-template-stats strong {
  color: var(--navy);
  font-size: 25px;
  line-height: 1;
}

.alarm-template-stats span {
  color: #68758d;
  font-size: 12px;
}

.alarm-template-page {
  width: var(--content-wide);
  margin: 0 auto 0;
}

.alarm-template-page h2 {
  position: relative;
  margin: 0;
  color: var(--navy);
  font-size: clamp(29px, 2.4vw, 47px);
  line-height: 1.07;
  letter-spacing: 0;
}

.alarm-template-page h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 14px;
  background: var(--pink);
}

.alarm-tranquility-section,
.alarm-risk-section,
.alarm-protection-section,
.alarm-included-section,
.alarm-method-section,
.alarm-equipment-section,
.alarm-faq-section {
  padding: 42px 0 48px;
  border-bottom: 1px solid #e2e8f1;
}

.alarm-tranquility-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 78px;
  align-items: start;
}

.alarm-text-block p {
  max-width: 720px;
  margin: 20px 0 0;
  color: #3b4864;
  font-size: 15px;
  line-height: 1.76;
}

.alarm-expert-card {
  margin-top: 2px;
  padding: 31px 36px 34px;
  border: 1px solid #dce4ef;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 24, 64, .06);
}

.alarm-expert-card > strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 27px;
}

.alarm-expert-card > strong::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 12px;
  background: var(--pink);
}

.alarm-expert-card div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 23px;
  align-items: center;
}

.alarm-expert-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.alarm-expert-card blockquote {
  margin: 0;
  color: #2c3f66;
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.65;
}

.alarm-expert-card p {
  margin: 24px 0 0 107px;
  color: var(--navy);
  font-size: 13px;
}

.alarm-expert-card b,
.alarm-expert-card span {
  display: block;
}

.alarm-risk-grid {
  display: grid;
  grid-template-columns: 44% 1fr 1fr;
  gap: 24px;
  margin-top: 31px;
}

.alarm-plan-card {
  position: relative;
  grid-row: span 2;
  min-height: 285px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dce4ef;
  border-radius: 6px;
  background: #fff;
}

.alarm-plan-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.alarm-plan-card .pin {
  position: absolute;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 10px 24px rgba(234, 0, 76, .25);
}

.alarm-plan-card .pin svg {
  width: 19px;
  height: 19px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

.alarm-plan-card .pin-one { top: 18%; left: 37%; }
.alarm-plan-card .pin-two { top: 29%; right: 20%; }
.alarm-plan-card .pin-three { bottom: 20%; left: 14%; }

.alarm-risk-card,
.alarm-protection-grid article,
.alarm-system-list article,
.alarm-help-card {
  border: 1px solid #dce4ef;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 24, 64, .045);
}

.alarm-risk-card {
  min-height: 137px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 27px;
}

.alarm-risk-card svg,
.alarm-protection-grid svg {
  width: 56px;
  height: 56px;
  stroke: var(--blue);
  stroke-width: 1.75;
  fill: none;
}

.alarm-risk-card strong,
.alarm-protection-grid strong,
.alarm-system-list strong,
.alarm-equipment-grid strong,
.alarm-help-card strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}

.alarm-risk-card p,
.alarm-protection-grid p,
.alarm-system-list p,
.alarm-equipment-grid p,
.alarm-help-card p,
.alarm-final-cta p {
  margin: 8px 0 0;
  color: #43506b;
  font-size: 13px;
  line-height: 1.55;
}

.alarm-protection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 31px;
}

.alarm-protection-grid article {
  min-height: 189px;
  padding: 29px 34px;
}

.alarm-protection-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 63px;
  height: 27px;
  margin-top: 16px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 900;
}

.alarm-protection-grid .mode-green { color: #16894e; background: #dff5e8; }
.alarm-protection-grid .mode-blue { color: #0b75c9; background: #dcefff; }
.alarm-protection-grid .mode-amber { color: #c57900; background: #fff0c6; }

.alarm-included-section {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 54px;
  align-items: start;
}

.alarm-check-list {
  display: grid;
  gap: 19px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.alarm-check-list li {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.alarm-check-list span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
}

.alarm-system-list {
  display: grid;
  gap: 13px;
}

.alarm-system-list article {
  min-height: 94px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
  padding: 13px 20px;
}

.alarm-system-list img {
  width: 54px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
}

.alarm-method-section {
  text-align: center;
}

.alarm-method-section h2::after,
.alarm-equipment-section h2::after {
  margin-left: auto;
  margin-right: auto;
}

.alarm-method-line {
  position: relative;
  width: min(1000px, 92%);
  margin: 35px auto 27px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.alarm-method-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 46px;
  right: 46px;
  height: 4px;
  transform: translateY(-50%);
  background: var(--blue);
}

.alarm-method-line span {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.alarm-method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: left;
}

.alarm-method-grid article {
  min-height: 138px;
  padding: 22px;
  border: 1px solid #dce4ef;
  border-radius: 6px;
  background: #fff;
}

.alarm-method-grid svg {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  stroke: var(--navy);
  stroke-width: 1.65;
  fill: none;
}

.alarm-method-grid strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.alarm-method-grid p {
  margin: 6px 0 0;
  color: #52607a;
  font-size: 12px;
  line-height: 1.45;
}

.alarm-equipment-section {
  text-align: center;
}

.alarm-equipment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 32px;
  text-align: left;
}

.alarm-equipment-grid article {
  overflow: hidden;
  border: 1px solid #dce4ef;
  border-radius: 6px;
  background: #fff;
}

.alarm-equipment-grid img {
  width: 100%;
  height: 173px;
  display: block;
  object-fit: cover;
}

.alarm-equipment-grid div {
  min-height: 120px;
  padding: 18px;
}

.alarm-equipment-grid strong {
  font-size: 15px;
}

.alarm-faq-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 52px;
  align-items: start;
  padding-bottom: 50px;
}

.alarm-faq-list {
  margin-top: 31px;
}

.alarm-faq-list details {
  margin-bottom: 8px;
  border: 1px solid #dce4ef;
  border-radius: 5px;
  background: #fff;
}

.alarm-faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.alarm-faq-list summary::-webkit-details-marker {
  display: none;
}

.alarm-faq-list summary span {
  color: var(--blue);
  font-size: 18px;
}

.alarm-faq-list p {
  margin: 0;
  padding: 0 20px 16px;
  color: #52607a;
  font-size: 13px;
  line-height: 1.55;
}

.alarm-help-card {
  min-height: 209px;
  padding: 36px 39px;
}

.alarm-help-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  stroke: var(--navy);
  stroke-width: 1.8;
  fill: none;
}

.alarm-help-card a {
  display: inline-flex;
  gap: 9px;
  margin-top: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.alarm-final-cta {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  margin: 0 0 42px;
  padding: 32px 50px;
  border: 1px solid #dce4ef;
  border-radius: 6px;
  background: #f7faff;
}

.alarm-final-cta h2 {
  margin-top: 10px;
  font-size: clamp(27px, 2vw, 38px);
}

.alarm-final-cta h2::after {
  display: none;
}

@media (max-width: 1024px) {
  .alarm-template-hero-inner,
  .alarm-tranquility-section,
  .alarm-included-section,
  .alarm-faq-section {
    grid-template-columns: 1fr;
  }

  .alarm-risk-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .alarm-plan-card {
    grid-column: 1 / -1;
  }

  .alarm-protection-grid,
  .alarm-equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .alarm-method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .alarm-template-hero {
    background: #fff;
  }

  .alarm-template-hero-inner {
    min-height: 0;
  }

  .alarm-template-copy {
    padding: 44px 0 30px;
  }

  .alarm-template-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .alarm-template-minis,
  .alarm-template-stats-inner,
  .alarm-risk-grid,
  .alarm-protection-grid,
  .alarm-method-grid,
  .alarm-equipment-grid {
    grid-template-columns: 1fr;
  }

  .alarm-template-media {
    min-height: 310px;
    border-radius: 6px;
  }

  .alarm-template-stats {
    margin: 18px 0 34px;
  }

  .alarm-template-stats article {
    min-height: 82px;
    justify-content: start;
    padding-left: 26px;
    border-right: 0;
    border-bottom: 1px solid #dce4ef;
  }

  .alarm-tranquility-section,
  .alarm-risk-section,
  .alarm-protection-section,
  .alarm-included-section,
  .alarm-method-section,
  .alarm-equipment-section,
  .alarm-faq-section {
    padding: 34px 0;
  }

  .alarm-method-line {
    display: none;
  }

  .alarm-final-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
  }
}

/* Alarm diagnostic template - protection sur mesure */
body:has(.alarm-shortcuts) {
  background: #fff;
}

body:has(.alarm-shortcuts) .site-header {
  border-bottom: 1px solid #edf1f6;
}

body:has(.alarm-shortcuts) .alarm-template-hero {
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 46%, #f4f7fb 46%, #f4f7fb 100%);
}

body:has(.alarm-shortcuts) .alarm-template-hero-inner {
  width: var(--content-wide);
  min-height: 590px;
  grid-template-columns: 46% 54%;
}

body:has(.alarm-shortcuts) .alarm-template-copy {
  padding: 98px 54px 126px 0;
}

body:has(.alarm-shortcuts) .alarm-template-copy h1 {
  max-width: 560px;
  margin: 24px 0 19px;
  font-size: clamp(57px, 4.55vw, 78px);
  line-height: 1.02;
}

body:has(.alarm-shortcuts) .alarm-template-copy > p {
  max-width: 552px;
  font-size: 16px;
  line-height: 1.65;
}

body:has(.alarm-shortcuts) .alarm-template-actions {
  gap: 18px;
  margin-top: 34px;
}

body:has(.alarm-shortcuts) .alarm-template-actions .btn {
  min-width: 226px;
  height: 56px;
  border-radius: 4px;
}

body:has(.alarm-shortcuts) .alarm-template-actions .btn-secondary {
  min-width: 190px;
}

body:has(.alarm-shortcuts) .alarm-template-minis {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 58px;
}

body:has(.alarm-shortcuts) .alarm-template-minis svg {
  stroke: #63718c;
}

body:has(.alarm-shortcuts) .alarm-template-media {
  min-height: 590px;
}

body:has(.alarm-shortcuts) .alarm-template-media img {
  object-position: center;
}

.alarm-shortcuts {
  position: relative;
  z-index: 5;
  margin: -64px 0 54px;
}

.alarm-shortcuts-inner {
  width: var(--content-wide);
  min-height: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #dce4ef;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(0, 24, 64, .14);
}

.alarm-shortcuts article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-content: center;
  align-items: center;
  column-gap: 18px;
  min-height: 112px;
  padding: 0 42px;
  border-right: 1px solid #dce4ef;
}

.alarm-shortcuts article:last-child {
  border-right: 0;
}

.alarm-shortcuts svg {
  width: 42px;
  height: 42px;
  grid-row: span 2;
  stroke: var(--blue);
  stroke-width: 1.7;
  fill: none;
}

.alarm-shortcuts strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.2;
}

.alarm-shortcuts span {
  color: #5f6c84;
  font-size: 12px;
  line-height: 1.35;
}

body:has(.alarm-shortcuts) .alarm-template-page {
  width: var(--content-wide);
}

body:has(.alarm-shortcuts) .alarm-template-page h2 {
  margin-top: 5px;
  font-size: clamp(31px, 2.15vw, 43px);
  line-height: 1.08;
}

body:has(.alarm-shortcuts) .alarm-template-page h2::after {
  display: none;
}

.alarm-section-kicker {
  display: block;
  color: var(--magenta);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

body:has(.alarm-shortcuts) .alarm-risk-section,
.alarm-building-section,
.alarm-schema-section,
body:has(.alarm-shortcuts) .alarm-included-section,
.alarm-modes-section,
body:has(.alarm-shortcuts) .alarm-equipment-section,
.alarm-comparison-section,
body:has(.alarm-shortcuts) .alarm-faq-section {
  padding: 0 0 58px;
  border-bottom: 0;
}

body:has(.alarm-shortcuts) .alarm-risk-section {
  padding-bottom: 54px;
}

body:has(.alarm-shortcuts) .alarm-risk-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 28px;
}

body:has(.alarm-shortcuts) .alarm-risk-card {
  min-height: 232px;
  display: block;
  padding: 34px 32px 28px;
  border-color: #dce4ef;
  border-radius: 6px;
  box-shadow: none;
}

body:has(.alarm-shortcuts) .alarm-risk-card svg {
  width: 45px;
  height: 45px;
  margin-bottom: 30px;
  stroke: var(--blue);
}

body:has(.alarm-shortcuts) .alarm-risk-card:nth-child(4) svg {
  stroke: var(--magenta);
}

body:has(.alarm-shortcuts) .alarm-risk-card strong {
  font-size: 18px;
}

body:has(.alarm-shortcuts) .alarm-risk-card p {
  margin-top: 15px;
  color: #465471;
  font-size: 12px;
  line-height: 1.55;
}

body:has(.alarm-shortcuts) .alarm-risk-card p + p {
  margin-top: 13px;
}

.alarm-building-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 33px;
  margin-top: 30px;
}

.alarm-building-tabs {
  display: grid;
  overflow: hidden;
  border: 1px solid #dce4ef;
  border-radius: 5px;
  background: #fff;
}

.alarm-building-tabs button {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 61px;
  padding: 0 19px;
  border: 0;
  border-bottom: 1px solid #e7edf5;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.alarm-building-tabs button:last-child {
  border-bottom: 0;
}

.alarm-building-tabs button.is-active {
  background: var(--blue);
  color: #fff;
}

.alarm-building-tabs svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.alarm-recommendation-panel {
  min-height: 367px;
  padding: 35px 45px 32px;
  border: 1px solid #dce4ef;
  border-radius: 6px;
  background: #fff;
}

.alarm-recommendation-panel h3 {
  margin: 0 0 28px;
  color: var(--navy);
  font-size: 19px;
}

.alarm-recommendation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px 50px;
}

.alarm-recommendation-grid article {
  position: relative;
  padding-left: 31px;
}

.alarm-recommendation-grid article > span {
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.alarm-recommendation-grid strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.alarm-recommendation-grid p {
  margin: 7px 0 0;
  color: #5f6c84;
  font-size: 12px;
  line-height: 1.45;
}

.alarm-note {
  width: 330px;
  min-height: 68px;
  margin: 23px 0 0 auto;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid #dce4ef;
  border-radius: 5px;
  background: #fafcff;
  color: #4d5b76;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.alarm-note svg {
  width: 30px;
  height: 30px;
  stroke: var(--magenta);
  fill: none;
}

.alarm-schema-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 18px;
}

.alarm-schema-list {
  display: grid;
  gap: 13px;
  padding-top: 8px;
}

.alarm-schema-list article {
  position: relative;
  min-height: 54px;
  padding-left: 43px;
}

.alarm-schema-list article > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.alarm-schema-list strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.alarm-schema-list p {
  margin: 4px 0 0;
  color: #5f6c84;
  font-size: 11px;
  line-height: 1.35;
}

.alarm-schema-visual {
  margin: 0;
}

.alarm-schema-visual img {
  width: 100%;
  display: block;
}

body:has(.alarm-shortcuts) .alarm-included-section {
  display: block;
}

.alarm-included-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.alarm-included-grid article {
  min-height: 138px;
  padding: 23px 17px 20px;
  border: 1px solid #dce4ef;
  border-radius: 6px;
  background: #fff;
  text-align: center;
}

.alarm-included-grid article > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin: 0 auto 21px;
  border-radius: 50%;
  background: var(--magenta);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.alarm-included-grid strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.2;
}

.alarm-included-grid p {
  margin: 8px 0 0;
  color: #5f6c84;
  font-size: 10px;
  line-height: 1.45;
}

.alarm-modes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 29px;
}

.alarm-modes-grid article {
  min-height: 150px;
  padding: 29px 30px 24px;
  border: 1px solid #dce4ef;
  border-radius: 6px;
  background: #fff;
}

.alarm-modes-grid svg {
  width: 38px;
  height: 38px;
  margin-bottom: 17px;
  stroke: var(--blue);
  stroke-width: 1.75;
  fill: none;
}

.alarm-modes-grid strong,
body:has(.alarm-shortcuts) .alarm-equipment-grid strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.alarm-modes-grid p {
  margin: 8px 0 0;
  color: #4d5b76;
  font-size: 12px;
  line-height: 1.45;
}

body:has(.alarm-shortcuts) .alarm-equipment-section {
  text-align: left;
}

body:has(.alarm-shortcuts) .alarm-equipment-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 29px;
}

body:has(.alarm-shortcuts) .alarm-equipment-grid article {
  overflow: hidden;
  border-color: #dce4ef;
  border-radius: 6px;
  box-shadow: none;
}

body:has(.alarm-shortcuts) .alarm-equipment-grid img {
  height: 165px;
  object-fit: cover;
  background: #f5f7fb;
}

body:has(.alarm-shortcuts) .alarm-equipment-grid div {
  min-height: 112px;
  padding: 18px 17px;
}

body:has(.alarm-shortcuts) .alarm-equipment-grid p {
  margin: 8px 0 0;
  color: #4d5b76;
  font-size: 11px;
  line-height: 1.45;
}

.alarm-comparison-table {
  margin-top: 27px;
  overflow: hidden;
  border: 1px solid #dce4ef;
  border-radius: 6px;
  background: #fff;
}

.alarm-comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.alarm-comparison-table th,
.alarm-comparison-table td {
  height: 48px;
  padding: 0 24px;
  border-right: 1px solid #e7edf5;
  border-bottom: 1px solid #e7edf5;
  color: var(--navy);
  font-size: 12px;
  text-align: center;
}

.alarm-comparison-table th:first-child,
.alarm-comparison-table td:first-child {
  width: 30%;
  text-align: left;
}

.alarm-comparison-table th {
  height: 58px;
  background: #fbfcff;
  font-weight: 900;
}

.alarm-comparison-table tr:last-child td {
  border-bottom: 0;
}

.alarm-comparison-table th:last-child,
.alarm-comparison-table td:last-child {
  border-right: 0;
}

.alarm-comparison-table small {
  display: inline-flex;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 3px;
  background: var(--blue);
  color: #fff;
  font-size: 9px;
}

.alarm-comparison-table th:last-child small {
  background: var(--magenta);
}

.alarm-comparison-table .has-check {
  color: #fff;
  font-size: 0;
}

.alarm-comparison-table .has-check::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

body:has(.alarm-shortcuts) .alarm-faq-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 48px;
  align-items: start;
  padding-bottom: 68px;
}

body:has(.alarm-shortcuts) .alarm-faq-list {
  margin-top: 24px;
}

body:has(.alarm-shortcuts) .alarm-faq-list details {
  margin-bottom: 8px;
  border-color: #dce4ef;
  border-radius: 4px;
}

body:has(.alarm-shortcuts) .alarm-faq-list summary {
  min-height: 48px;
  align-items: center;
  padding: 0 22px;
  font-size: 13px;
}

.alarm-final-card {
  min-height: 338px;
  padding: 43px 53px;
  border: 1px solid #dce4ef;
  border-radius: 6px;
  background: #f7faff;
}

.alarm-final-card h2 {
  margin-top: 14px !important;
  font-size: clamp(31px, 2.2vw, 43px) !important;
}

.alarm-final-card p {
  max-width: 430px;
  margin: 17px 0 28px;
  color: #4d5b76;
  font-size: 15px;
  line-height: 1.55;
}

.alarm-final-card .btn {
  min-width: 260px;
  height: 56px;
  justify-content: center;
  border-radius: 4px;
}

.alarm-final-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.alarm-final-card > div span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.alarm-final-card svg {
  width: 24px;
  height: 24px;
  stroke: #63718c;
  fill: none;
}

@media (max-width: 1024px) {
  .alarm-shortcuts-inner,
  body:has(.alarm-shortcuts) .alarm-risk-grid,
  .alarm-building-layout,
  .alarm-schema-layout,
  .alarm-modes-grid,
  body:has(.alarm-shortcuts) .alarm-faq-section {
    grid-template-columns: 1fr;
  }

  .alarm-included-grid,
  body:has(.alarm-shortcuts) .alarm-equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

* { box-sizing: border-box; }
html {
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100vw;
  max-width: 100vw;
  height: 138px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 4vw;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
}
.brand img {
  width: 190px;
  height: auto;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
}
.main-nav { display: flex; align-items: center; gap: 34px; margin-left: 176px; color: var(--navy); font-weight: 750; font-size: 16px; }
.main-nav a,
.nav-parent { position: relative; padding: 38px 0; }
.main-nav a.is-active,
.main-nav a:hover,
.nav-dropdown.is-active .nav-parent,
.nav-dropdown:hover .nav-parent { color: var(--magenta); }
.main-nav a.is-active::after,
.nav-dropdown.is-active .nav-parent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 48px;
  height: 3px;
  background: var(--magenta);
}
.nav-dropdown { position: relative; }
.nav-parent { display: inline-flex; align-items: center; gap: 8px; color: inherit; }
.nav-parent span { color: var(--blue); font-size: 17px; line-height: 1; }
.nav-menu {
  position: absolute;
  top: calc(100% - 12px);
  left: -22px;
  min-width: 245px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 42px rgba(8, 13, 67, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--navy);
  font-weight: 800;
}
.nav-menu a:hover {
  background: var(--soft);
  color: var(--magenta);
}
.nav-menu a::after { display: none; }
.header-actions { display: flex; align-items: center; gap: 26px; margin-left: auto; color: var(--navy); font-weight: 800; font-size: 16px; }
.header-actions .btn {
  min-width: 296px;
  min-height: 67px;
  border-radius: 6px;
}

@media (min-width: 1101px) {
  .site-header {
    padding-left: 7.5vw;
    padding-right: 5vw;
  }
}
.phone-link { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.phone-icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--navy);
}
.phone-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(229, 0, 79, .18); }
.btn-primary { background: var(--magenta); color: var(--white); }
.btn-secondary { border-color: var(--blue); color: var(--blue); background: rgba(255,255,255,.9); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--navy); font-size: 28px; }

.hero {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 590px;
  display: grid;
  grid-template-columns: var(--content-gutter) minmax(0, 1fr) var(--content-gutter);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.98) 34%, rgba(255,255,255,.82) 43%, rgba(255,255,255,.48) 52%, rgba(255,255,255,.16) 61%, rgba(255,255,255,0) 69%),
    url("../img/template-hero-man-back.jpg") right center / auto 106% no-repeat,
    #f4f7fb;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(0deg, rgba(255,255,255,1), rgba(255,255,255,0));
}
.hero-inner { position: relative; z-index: 1; grid-column: 2; padding: 66px 0 126px; }
.hero-copy { width: min(560px, 44vw); }
.eyebrow { color: var(--magenta); font-weight: 900; letter-spacing: 0; text-transform: uppercase; font-size: 13px; }
h1, h2, h3 { line-height: 1.08; color: var(--navy); margin: 0 0 18px; letter-spacing: 0; }
h1 { font-size: clamp(46px, 5vw, 78px); font-weight: 900; }
h2 { font-size: clamp(32px, 3vw, 48px); font-weight: 900; }
h3 { font-size: 24px; font-weight: 900; }
p { margin: 0 0 18px; color: var(--muted); }
.lead { font-size: 20px; color: #4e556b; line-height: 1.45; }
.hero-actions { display: flex; gap: 18px; margin: 28px 0 42px; flex-wrap: wrap; }
.feature-row { display: flex; gap: 0; flex-wrap: nowrap; align-items: center; width: 700px; max-width: calc(100vw - 228px); }
.feature-mini { display: flex; align-items: center; gap: 12px; min-width: 208px; padding: 0 22px 0 0; margin-right: 22px; border-right: 1px solid #d9deea; }
.feature-mini:last-child { border-right: 0; }
.mini-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--magenta);
}
.mini-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-mini strong { display: block; color: var(--navy); font-size: 13px; line-height: 1.25; white-space: nowrap; }
.feature-mini span { display: block; color: var(--muted); font-size: 12px; line-height: 1.35; }
.hero .feature-mini .mini-icon,
.hero .feature-mini .mini-icon svg {
  color: var(--magenta);
  stroke: var(--magenta);
}

.stats-card {
  position: relative;
  z-index: 3;
  width: var(--content-wide);
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(8, 13, 67, .13);
}
.stat { display: flex; align-items: center; justify-content: center; gap: 24px; padding: 28px 22px; border-right: 1px solid #d9deea; }
.stat:last-child { border-right: 0; }
.stat-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}
.stat-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat-icon.is-filled svg {
  fill: currentColor;
  stroke: none;
}
.stat-icon.is-blue { color: var(--blue); }
.stat-icon.is-red { color: var(--magenta); }
.stat strong { display: block; color: var(--navy); font-size: 27px; line-height: 1; }
.stat span { color: var(--muted); font-size: 14px; }

.section { padding: 82px 48px; }
.home-services { padding: 0 0 82px; }
.section.soft { background: var(--soft); }
.container { width: var(--content-wide); margin: 0 auto; }
.section-head { max-width: 780px; margin-bottom: 38px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(8, 13, 67, .06);
}
.service-card img { width: 100%; aspect-ratio: 3.05 / 1; object-fit: cover; }
.service-body {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  column-gap: 22px;
  align-items: start;
  padding: 28px 30px 28px;
  min-height: 142px;
}
.service-icon {
  position: static;
  grid-row: 1 / 4;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--magenta);
  border-radius: 8px;
  background: var(--white);
  color: var(--magenta);
}
.service-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card:nth-child(2) .service-icon, .service-card:nth-child(3) .service-icon { border-color: var(--blue); color: var(--blue); }
.service-body h2 {
  grid-column: 2;
  margin: 2px 0 8px;
  font-size: clamp(24px, 1.8vw, 30px);
}
.service-body p {
  grid-column: 2;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.5;
}
.link-arrow { grid-column: 2; color: var(--blue); font-weight: 900; display: inline-flex; gap: 12px; align-items: center; margin-top: 8px; }
.service-card:first-child .link-arrow { color: var(--magenta); }

.home-template-stack {
  width: 100%;
  background: var(--white);
}
.home-template-visual {
  margin: 0;
  padding: 0;
}
.home-template-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.method-template-section {
  padding: 48px;
  background: #f7f9fd;
}
.method-template-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 395px;
  gap: 44px;
  width: var(--content-wide);
  margin: 0 auto;
  padding: 60px 64px 36px;
  border: 1px solid #dfe5ef;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 48px rgba(8, 13, 67, .08);
}
.method-template-intro {
  max-width: 780px;
}
.method-template-intro .eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--magenta);
  font-size: 14px;
  letter-spacing: 4px;
}
.method-template-intro h2 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(44px, 3.6vw, 58px);
  line-height: .98;
  letter-spacing: 0;
}
.method-template-intro p {
  max-width: 760px;
  margin-bottom: 46px;
  color: #4f5872;
  font-size: 17px;
  line-height: 1.55;
}
.method-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin: 0 104px 24px;
}
.method-timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 50%;
  height: 4px;
  background: var(--blue);
  transform: translateY(-50%);
}
.method-timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 0 5px var(--white);
}
.method-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
}
.method-step-card {
  min-height: 286px;
  padding: 24px 20px;
  border: 1px solid #d8e0ec;
  border-radius: 7px;
  background: var(--white);
}
.method-step-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 20px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  color: var(--navy);
}
.method-step-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.method-step-card h3 {
  position: relative;
  margin: 0 0 30px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.1;
}
.method-step-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -17px;
  width: 34px;
  height: 4px;
  background: var(--magenta);
}
.method-step-card p {
  margin: 0 0 28px;
  color: #525b76;
  font-size: 15px;
  line-height: 1.55;
}
.method-step-card small {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #66708a;
  font-size: 14px;
  line-height: 1.3;
}
.method-step-card small span {
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--magenta);
  border-radius: 50%;
  color: var(--magenta);
  font-size: 14px;
  font-weight: 900;
}
.method-project-card {
  align-self: start;
  min-height: 552px;
  padding: 40px 36px 36px;
  border: 1px solid #d8e0ec;
  border-radius: 7px;
  background: #f7fbff;
}
.method-project-title {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}
.method-project-title > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--magenta);
}
.method-project-title svg,
.method-project-note svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.method-project-title h3 {
  position: relative;
  margin: 0;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.15;
}
.method-project-title h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 50px;
  height: 3px;
  background: var(--magenta);
}
.method-project-card ul {
  display: grid;
  gap: 16px;
  margin: 0 0 30px;
  padding: 0 0 28px;
  border-bottom: 1px solid #d8e0ec;
  list-style: none;
}
.method-project-card li {
  position: relative;
  padding-left: 38px;
  color: #34405d;
  font-size: 15px;
  line-height: 1.35;
}
.method-project-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}
.method-project-note {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 26px;
}
.method-project-note > span {
  color: var(--magenta);
}
.method-project-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.2;
}
.method-project-note p {
  margin: 0;
  color: #525b76;
  font-size: 16px;
  line-height: 1.5;
}
.method-project-card .btn {
  width: 100%;
  min-height: 62px;
  font-size: 18px;
}
.method-photo-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2px;
}
.method-photo-strip img {
  width: 100%;
  aspect-ratio: 1.78 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.building-template-section {
  padding: 72px 48px 56px;
  background: #f7f9fd;
  border-top: 1px solid #dfe5ef;
}
.building-template-panel {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  align-items: stretch;
  gap: 38px;
  width: var(--content-wide);
  margin: 0 auto;
}
.building-template-copy {
  padding-top: 2px;
}
.building-template-copy .eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--magenta);
  font-size: 14px;
  letter-spacing: 0;
}
.building-template-copy h2 {
  max-width: 520px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(38px, 3.2vw, 55px);
  line-height: 1.02;
}
.building-template-copy > p {
  max-width: 520px;
  margin-bottom: 26px;
  color: #4f5872;
  font-size: 17px;
  line-height: 1.55;
}
.building-profile-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(8, 13, 67, .08);
}
.building-profile-card {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 28px;
  gap: 18px;
  min-height: 142px;
  padding: 20px 20px 18px 20px;
  border-top: 1px solid #d8e0ec;
  background: var(--white);
}
.building-profile-card:first-child {
  border-top: 0;
}
.building-profile-card.is-active {
  border-top: 4px solid var(--magenta);
}
.building-profile-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: rgba(6, 117, 189, .08);
  color: var(--blue);
}
.building-profile-icon.is-red {
  background: rgba(229, 0, 79, .10);
  color: var(--magenta);
}
.building-profile-icon svg,
.building-stat svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.building-profile-card h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.1;
}
.building-profile-card p {
  margin: 0 0 18px;
  color: #525b76;
  font-size: 15px;
  line-height: 1.35;
}
.building-profile-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.building-profile-card li {
  position: relative;
  padding-left: 22px;
  color: #525b76;
  font-size: 12px;
  line-height: 1.25;
  white-space: normal;
}
.building-profile-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--blue);
  font-weight: 900;
}
.building-profile-card.is-active li::before {
  color: var(--magenta);
}
.building-arrow {
  align-self: center;
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
}
.building-profile-card.is-active .building-arrow {
  color: var(--magenta);
}

.building-schema-card {
  border-radius: 8px;
}
.building-schema-card.building-schema-card-image {
  min-height: 0;
  height: 100%;
  padding: 0;
  border: 0;
  background: var(--white);
  box-shadow: none;
  overflow: hidden;
}
.building-schema-image {
  height: 100%;
  margin: 0;
  background: var(--white);
}
.building-schema-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 7px 7px 0 0;
}
.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;
}
.building-stats-bar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 320px;
  align-items: center;
  margin-top: 42px;
  padding: 22px 26px;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(8, 13, 67, .06);
}
.building-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 72px;
  border-right: 1px solid #d8e0ec;
}
.building-stat strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}
.building-stat span {
  color: #525b76;
  font-size: 13px;
}
.building-stat-cta {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding-left: 28px;
}
.building-stat-cta .btn {
  width: 100%;
  min-height: 54px;
}
.building-stat-cta small {
  color: #6a7288;
  font-size: 13px;
}

.realisations-template-section {
  padding: 42px 48px 56px;
  background: var(--white);
}
.realisations-template-panel {
  display: grid;
  grid-template-columns: 390px repeat(2, minmax(0, 1fr)) 300px;
  gap: 24px;
  width: var(--content-wide);
  margin: 0 auto;
  padding: 64px 38px 46px;
  border-radius: 8px;
  background: #f7f9fd;
  box-shadow: inset 0 0 0 1px rgba(216, 224, 236, .55);
}
.realisations-intro {
  padding-right: 18px;
}
.realisations-intro .eyebrow {
  display: block;
  margin-bottom: 26px;
  color: var(--magenta);
  font-size: 14px;
}
.realisations-intro h2 {
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(36px, 3vw, 50px);
  line-height: 1.12;
}
.realisations-intro > p {
  max-width: 300px;
  margin-bottom: 32px;
  color: #46516b;
  font-size: 16px;
  line-height: 1.6;
}
.realisations-points {
  display: grid;
  gap: 22px;
  margin-bottom: 44px;
}
.realisations-points article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.realisations-points article > span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid #d8e0ec;
  border-radius: 6px;
  background: var(--white);
  color: var(--magenta);
}
.realisations-points article:nth-child(2) > span {
  color: var(--blue);
}
.realisations-points svg,
.realisation-tags svg,
.local-strip-lead svg,
.local-strip-item svg,
.testimonial-person svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.realisations-points strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 5px;
}
.realisations-points p {
  margin: 0;
  color: #46516b;
  font-size: 14px;
  line-height: 1.45;
}
.realisations-intro .btn {
  min-width: 230px;
}

.realisations-carousel {
  grid-column: 2 / 4;
  min-width: 0;
}
.realisations-carousel-viewport {
  overflow: hidden;
}
.realisations-carousel-track {
  display: flex;
  transition: transform .32s ease;
}
.realisations-carousel-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.realisation-card {
  overflow: hidden;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 13, 67, .06);
}
.realisation-card > img {
  width: 100%;
  aspect-ratio: 1.02 / 1;
  object-fit: cover;
}
.realisation-card-body {
  padding: 24px 22px 28px;
}
.realisation-tags {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.realisation-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 7px 14px;
  border: 1px solid rgba(229, 0, 79, .28);
  border-radius: 6px;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.realisation-tags .is-blue {
  border-color: rgba(6, 117, 189, .28);
  color: var(--blue);
}
.realisation-tags svg {
  width: 18px;
  height: 18px;
}
.realisation-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
}
.realisation-card p {
  margin: 0;
  color: #46516b;
  font-size: 14px;
  line-height: 1.5;
}
.realisation-result {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  margin-top: 30px;
}
.realisation-result > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}
.realisation-result strong {
  color: var(--navy);
}

.realisations-testimonial {
  padding: 42px 34px 30px;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  background: var(--white);
}
.quote-mark {
  height: 72px;
  color: var(--magenta);
  font-size: 108px;
  font-weight: 900;
  line-height: .7;
}
.stars {
  margin: 8px 0 34px;
  color: #ffb624;
  font-size: 20px;
  letter-spacing: 2px;
}
.realisations-testimonial > p {
  margin: 0 0 34px;
  color: var(--navy);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-divider {
  height: 1px;
  margin-bottom: 34px;
  background: #d8e0ec;
}
.testimonial-person {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 44px;
}
.testimonial-person img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-person strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.2;
}
.testimonial-person span {
  display: block;
  color: #46516b;
  font-size: 13px;
  margin: 4px 0;
}
.testimonial-person small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 13px;
}
.testimonial-person svg {
  width: 14px;
  height: 14px;
  color: var(--magenta);
}
.realisations-testimonial .btn {
  width: 100%;
  color: var(--magenta);
  border-color: var(--magenta);
}
.realisations-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 28px 0 6px;
}
.realisations-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c6ccd8;
  cursor: pointer;
}
.realisations-dots .is-active {
  background: var(--magenta);
}
.realisations-local-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  align-items: center;
  margin-top: 18px;
  padding: 34px 44px;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  background: var(--white);
}
.local-strip-lead,
.local-strip-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 92px;
}
.local-strip-item {
  grid-template-columns: 54px minmax(0, 1fr);
  padding-left: 34px;
  border-left: 1px solid #d8e0ec;
}
.local-strip-lead > span {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 1px dashed rgba(229, 0, 79, .45);
  border-radius: 50%;
  color: var(--magenta);
}
.local-strip-lead svg {
  width: 42px;
  height: 42px;
}
.local-strip-item > span {
  color: var(--blue);
}
.local-strip-item:last-child > span {
  color: var(--magenta);
}
.local-strip-lead strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 8px;
}
.local-strip-item strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.local-strip-lead p,
.local-strip-item p {
  margin: 0;
  color: #46516b;
  font-size: 13px;
  line-height: 1.35;
}

.about-template-section {
  padding: 58px 48px 64px;
  background: #f7f9fd;
}
.about-template-panel {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 56px;
  width: var(--content-wide);
  margin: 0 auto;
}
.about-template-image {
  position: relative;
  align-self: start;
}
.about-template-image > img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 13, 67, .12);
}
.about-image-badge {
  position: absolute;
  left: 38px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 360px;
  padding: 20px 28px;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 34px rgba(8, 13, 67, .18);
}
.about-image-badge > span {
  display: grid;
  place-items: center;
  color: var(--magenta);
}
.about-image-badge svg,
.about-benefit-icon svg,
.about-strip-item svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-image-badge strong {
  display: block;
  color: var(--magenta);
  font-size: 28px;
  line-height: 1;
}
.about-image-badge small {
  display: block;
  margin-top: 5px;
  color: var(--navy);
  font-size: 15px;
}
.about-template-copy {
  padding-top: 2px;
}
.about-template-copy .eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--magenta);
  font-size: 14px;
  letter-spacing: 3px;
}
.about-template-copy h2 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(42px, 3.8vw, 64px);
  line-height: 1.04;
}
.about-template-copy > p {
  max-width: 620px;
  margin-bottom: 30px;
  color: #46516b;
  font-size: 17px;
  line-height: 1.55;
}
.about-benefit-list {
  display: grid;
  gap: 14px;
}
.about-benefit-list article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-height: 104px;
  padding: 18px 24px;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(8, 13, 67, .06);
}
.about-benefit-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 2px solid currentColor;
  border-radius: 7px;
}
.about-benefit-icon.is-blue { color: var(--blue); }
.about-benefit-icon.is-red { color: var(--magenta); }
.about-benefit-list article > div {
  position: relative;
  padding-left: 26px;
  border-left: 1px solid #d8e0ec;
}
.about-benefit-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.15;
}
.about-benefit-list p {
  margin: 0;
  color: #46516b;
  font-size: 14px;
  line-height: 1.42;
}
.about-cta-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.35fr 300px 300px 1.15fr;
  gap: 28px;
  align-items: center;
  margin-top: 30px;
  padding: 34px 38px;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(8, 13, 67, .08);
}
.about-strip-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}
.about-strip-proof {
  grid-template-columns: 74px minmax(0, 1fr);
  padding-left: 34px;
  border-left: 1px solid #d8e0ec;
}
.about-strip-location {
  padding-right: 34px;
  border-right: 1px solid #d8e0ec;
}
.about-strip-item > span {
  display: grid;
  place-items: center;
  color: var(--blue);
}
.about-strip-proof > span {
  color: var(--blue);
}
.about-strip-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}
.about-strip-item p {
  margin: 0;
  color: #46516b;
  font-size: 15px;
  line-height: 1.45;
}
.about-cta-strip .btn {
  width: 100%;
  min-height: 64px;
}

.contact-template-section {
  padding: 76px 48px;
  background: #f7f9fd;
}
.contact-template-panel {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 28px;
  width: var(--content-wide);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(8, 13, 67, .08);
}
.contact-template-info {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f6f9fd 100%);
}
.contact-template-info h2 {
  margin-top: 8px;
  margin-bottom: 18px;
  font-size: clamp(38px, 3.2vw, 54px);
}
.contact-template-info > p {
  max-width: 520px;
  color: #46516b;
  font-size: 16px;
  line-height: 1.6;
}
.contact-info-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 26px;
}
.contact-info-list a,
.contact-info-list > div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  background: var(--white);
}
.contact-info-list span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(6, 117, 189, .08);
  color: var(--blue);
}
.contact-info-list svg,
.contact-trust-card svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-list strong {
  display: block;
  color: var(--navy);
  line-height: 1.2;
}
.contact-info-list small {
  color: #65708a;
}
.contact-trust-card {
  margin-top: auto;
  padding: 24px;
  border-radius: 8px;
  background: var(--navy);
}
.contact-trust-card strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  margin-bottom: 10px;
}
.contact-trust-card p {
  color: rgba(255,255,255,.76);
}
.contact-trust-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.contact-trust-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,.84);
  font-weight: 800;
}
.contact-trust-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
}
.contact-template-form {
  padding: 30px;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  background: #fbfdff;
}
.contact-form-head {
  margin-bottom: 20px;
}
.contact-form-head h3 {
  font-size: 30px;
  margin-bottom: 0;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.contact-form-grid .field {
  margin-bottom: 0;
}
.contact-form-grid .is-full {
  grid-column: 1 / -1;
}
.contact-template-form input,
.contact-template-form select,
.contact-template-form textarea {
  min-height: 54px;
  border-color: #d8e0ec;
  background: var(--white);
}
.contact-template-form textarea {
  min-height: 150px;
}
.contact-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 22px;
}
.contact-submit-row .btn {
  min-width: 230px;
}
.contact-submit-row p {
  max-width: 360px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.template-split {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 52px;
  align-items: center;
}
.template-media {
  position: relative;
  min-width: 0;
}
.template-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 13, 67, .12);
}
.template-media-large img {
  aspect-ratio: 1 / .92;
}
.media-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 36px rgba(8, 13, 67, .14);
}
.media-label strong {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.1;
}
.media-label span {
  max-width: 260px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.template-copy h2 {
  margin-top: 8px;
}
.benefit-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 28px;
}
.benefit-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(8, 13, 67, .05);
}
.benefit-list article > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--magenta);
  border-radius: 8px;
  color: var(--magenta);
}
.benefit-list article:nth-child(2) > span,
.benefit-list article:nth-child(3) > span {
  border-color: var(--blue);
  color: var(--blue);
}
.benefit-list svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-list strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 5px;
}
.benefit-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}
.template-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.home-process-block .section-head {
  max-width: 850px;
}
.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: stretch;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.process-steps article {
  position: relative;
  min-height: 230px;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}
.process-steps article:last-child {
  border-right: 0;
}
.process-steps article::after {
  content: "";
  position: absolute;
  top: 45px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--white);
  transform: rotate(45deg);
  z-index: 1;
}
.process-steps article:last-child::after {
  display: none;
}
.process-steps span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}
.process-steps article:nth-child(even) span {
  background: var(--magenta);
}
.process-steps strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.process-steps p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}
.process-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.process-card h3,
.process-card p {
  color: var(--white);
}
.process-card ul {
  display: grid;
  gap: 10px;
  margin: 10px 0 24px;
  padding: 0;
  list-style: none;
}
.process-card li {
  position: relative;
  padding-left: 26px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}
.process-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 900;
}
.template-photo-strip {
  display: grid;
  grid-template-columns: 1.1fr .95fr .95fr;
  gap: 18px;
  margin-top: 24px;
}
.template-photo-strip img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.profile-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: center;
}
.profile-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 20px;
}
.profile-tabs span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  font-size: 14px;
}
.profile-tabs .is-active {
  border-color: var(--magenta);
  background: var(--magenta);
  color: var(--white);
}
.profile-cards {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}
.profile-cards article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.profile-cards strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}
.profile-cards p {
  margin: 0;
  font-size: 15px;
}
.security-preview {
  position: relative;
  min-height: 560px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.security-preview img {
  width: 100%;
  height: 100%;
  min-height: 512px;
  object-fit: cover;
  border-radius: 8px;
}
.preview-pin {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 30px rgba(8, 13, 67, .14);
}
.preview-pin::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 6px rgba(229, 0, 79, .14);
}
.preview-pin strong {
  color: var(--navy);
  line-height: 1.1;
}
.preview-pin span {
  color: var(--muted);
  font-size: 13px;
}
.pin-one { left: 54px; top: 64px; }
.pin-two { right: 48px; top: 42%; }
.pin-three { left: 78px; bottom: 58px; }
.pin-two::before {
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(6, 117, 189, .14);
}

.local-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
}
.local-projects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.local-projects article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(8, 13, 67, .06);
}
.local-projects img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.local-projects div {
  padding: 22px;
}
.local-projects span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(229, 0, 79, .22);
  border-radius: 999px;
  color: var(--magenta);
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
}
.local-projects strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.16;
  margin-bottom: 8px;
}
.local-projects p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}
.testimonial-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.testimonial-panel h3 {
  color: var(--white);
}
.testimonial-panel p {
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.6;
}
.testimonial-panel strong {
  display: block;
  margin: 0 0 24px;
  color: var(--cyan);
}
.local-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.local-band strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}
.local-band span {
  color: var(--muted);
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split img { border-radius: 8px; box-shadow: var(--shadow); }
.check-list { display: grid; gap: 14px; padding: 0; margin: 24px 0; list-style: none; }
.check-list li { padding-left: 34px; position: relative; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -2px; color: var(--magenta); font-weight: 900; }

.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 54px; align-items: start; }
.content-article { font-size: 18px; }
.content-article h2 { margin-top: 52px; font-size: 36px; }
.content-article h3 { margin-top: 34px; font-size: 26px; }
.content-article ul { color: var(--muted); }
.sidebar-box {
  position: sticky;
  top: 126px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.sidebar-box .btn { width: 100%; margin-top: 12px; }
.page-hero { padding: 84px 48px; background: linear-gradient(120deg, #fff 0%, #f4f7fb 55%, #eaf5fb 100%); border-bottom: 1px solid var(--line); }
.page-hero .container { display: grid; grid-template-columns: 1.04fr .96fr; gap: 54px; align-items: center; }
.page-hero img { border-radius: 8px; box-shadow: var(--shadow); width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.service-content-section {
  padding-top: 42px;
}
.service-article {
  max-width: none;
}

.service-template-hero {
  padding: 76px 48px 104px;
  background: linear-gradient(120deg, #fff 0%, #f7f9fd 62%, #edf5fb 100%);
  border-bottom: 1px solid var(--line);
}
.service-template-hero .container {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.service-template-copy h1 {
  font-size: clamp(44px, 4.5vw, 72px);
}
.service-template-media {
  position: relative;
}
.service-template-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(8, 13, 67, .16);
}
.service-template-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 330px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.service-template-badge strong,
.service-template-badge span {
  display: block;
}
.service-template-badge strong {
  color: var(--navy);
}
.service-template-badge span {
  color: var(--muted);
}
.service-hero-minis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}
.service-hero-minis span {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.service-hero-minis svg,
.service-included-grid svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-hero-minis strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
}
.service-template-proof {
  position: relative;
  z-index: 2;
  margin-top: -54px;
  padding: 0 48px;
}
.service-template-proof .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.service-template-proof .container > div {
  padding: 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.service-template-proof .container > div:last-child {
  border-right: 0;
}
.service-template-proof strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
}
.service-template-proof span {
  color: var(--muted);
}
.service-template-page {
  padding: 82px 48px;
  background: var(--white);
}
.service-editorial-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: stretch;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9fd;
}
.service-editorial-intro p {
  font-size: 18px;
  line-height: 1.7;
}
.service-editorial-intro aside {
  padding: 28px;
  border-radius: 8px;
  background: var(--navy);
}
.service-editorial-intro aside span {
  color: var(--cyan);
}
.service-editorial-intro aside svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.service-editorial-intro aside strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--white);
  font-size: 22px;
}
.service-editorial-intro aside p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 16px;
}
.service-text-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) .9fr;
  gap: 34px;
  align-items: start;
  margin-top: 42px;
}
.service-text-feature.is-reverse {
  grid-template-columns: .9fr minmax(0, 1.1fr);
}
.service-text-feature.is-reverse .text-feature-copy {
  order: 2;
}
.text-feature-copy {
  padding: 34px 0;
}
.text-feature-copy p,
.service-rich-text p {
  font-size: 17px;
  line-height: 1.72;
}
.text-feature-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(8, 13, 67, .06);
}
.text-feature-panel strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 18px;
}
.text-feature-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.text-feature-panel li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}
.text-feature-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--magenta);
  font-weight: 900;
}
.service-included-section,
.service-profile-section,
.service-process-template,
.service-single-gallery,
.service-faq-template,
.service-final-cta {
  margin-top: 52px;
}
.service-included-grid,
.service-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-included-grid article,
.service-profile-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 28px rgba(8, 13, 67, .05);
}
.service-included-grid span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border: 1px solid var(--blue);
  border-radius: 8px;
}
.service-included-grid strong,
.service-profile-grid strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.service-profile-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  padding: 36px;
  border-radius: 8px;
  background: #f7f9fd;
}
.service-process-template {
  padding: 38px;
  border-radius: 8px;
  background: var(--navy);
}
.service-process-template h2 {
  color: var(--white);
}
.service-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
}
.service-process-steps article {
  padding: 28px;
  background: rgba(255,255,255,.08);
}
.service-process-steps span {
  color: var(--cyan);
  font-weight: 900;
}
.service-process-steps strong {
  display: block;
  margin: 8px 0;
  color: var(--white);
  font-size: 22px;
}
.service-process-steps p {
  margin: 0;
  color: rgba(255,255,255,.76);
}
.service-rich-text {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 46px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}
.service-single-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-single-gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}
.service-faq-template details {
  padding: 20px 22px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.service-faq-template summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  font-size: 19px;
}
.service-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 40px;
  border-radius: 8px;
  background: #f7f9fd;
  border: 1px solid var(--line);
}

.service-hero {
  position: relative;
  padding: 82px 48px 104px;
  overflow: hidden;
  background: linear-gradient(118deg, #fff 0%, #fff 48%, #f4f8fd 48%, #eef6fb 100%);
  border-bottom: 1px solid var(--line);
}
.service-hero .container {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: center;
}
.service-hero-copy {
  padding: 20px 0;
}
.service-hero h1 {
  font-size: clamp(44px, 4.4vw, 72px);
}
.service-hero-media {
  position: relative;
}
.service-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(8, 13, 67, .18);
}
.service-floating-card {
  position: absolute;
  left: -34px;
  bottom: 28px;
  max-width: 310px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.service-floating-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}
.service-floating-card span {
  color: var(--muted);
}
.service-proof {
  position: relative;
  z-index: 2;
  margin-top: -44px;
  padding: 0 48px;
}
.service-proof .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.service-proof .container > div {
  padding: 26px 30px;
  border-right: 1px solid var(--line);
}
.service-proof .container > div:last-child { border-right: 0; }
.service-proof strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.1;
}
.service-proof span {
  color: var(--muted);
}

.service-intro-panel {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: center;
  padding: 36px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(8, 13, 67, .06);
}
.service-intro-panel h2 { margin-bottom: 16px; }
.service-intro-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 22px 0;
}
.benefit-card {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.benefit-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border: 1px solid var(--magenta);
  border-radius: 8px;
  color: var(--magenta);
  font-size: 22px;
}
.benefit-card strong {
  display: block;
  color: var(--navy);
  line-height: 1.25;
}
.process-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 28px 0;
  border-radius: 8px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
}
.process-band div {
  padding: 28px;
  background: var(--navy);
}
.process-band span {
  color: var(--cyan);
  font-weight: 900;
}
.process-band strong {
  display: block;
  margin: 8px 0;
  color: var(--white);
  font-size: 22px;
}
.process-band p {
  color: rgba(255,255,255,.74);
  margin: 0;
}
.service-editorial {
  display: grid;
  grid-template-columns: .48fr .52fr;
  gap: 38px;
  align-items: center;
  padding: 40px;
  margin: 28px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(8, 13, 67, .06);
}
.service-editorial:nth-of-type(even) {
  background: #fbfdff;
}
.service-editorial + .service-editorial {
  margin-top: 28px;
}
.service-editorial.is-reverse {
  grid-template-columns: .52fr .48fr;
}
.service-editorial.is-reverse .editorial-media { order: 2; }
.service-editorial.is-reverse .editorial-copy { order: 1; }
.editorial-media {
  position: relative;
}
.editorial-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 13, 67, .12);
}
.media-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--magenta);
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 12px 30px rgba(229, 0, 79, .24);
}
.editorial-copy {
  min-width: 0;
}
.editorial-copy h2 {
  margin-top: 8px;
  margin-bottom: 14px;
  font-size: clamp(28px, 2.5vw, 40px);
}
.editorial-copy > p {
  font-size: 17px;
  line-height: 1.7;
}
.key-points {
  margin: 22px 0 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.key-points strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 18px;
}
.key-points ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.key-points li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
.key-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}
.expert-note {
  margin-top: 22px;
  padding: 18px 22px;
  border-left: 4px solid var(--magenta);
  border-radius: 0 8px 8px 0;
  background: var(--navy);
}
.expert-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}
.expert-note p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 16px;
}
.service-checkband {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 22px;
  margin: 28px 0;
  border-radius: 8px;
  background: var(--soft);
}
.service-checkband div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.service-checkband span {
  color: var(--magenta);
  font-weight: 900;
}
.service-checkband strong {
  display: block;
  margin: 8px 0;
  color: var(--navy);
  font-size: 20px;
}
.service-checkband p {
  margin: 0;
  font-size: 15px;
}
.article-block {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.article-block h2 {
  margin-top: 0;
  padding-left: 22px;
  border-left: 4px solid var(--magenta);
}
.service-gallery-strip {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 16px;
  margin: 50px 0;
}
.service-cta-panel {
  display: grid;
  grid-template-columns: 1.2fr .8fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 48px;
  padding: 40px;
  border-radius: 8px;
  background: var(--navy);
}
.service-cta-panel h2,
.service-cta-panel p {
  color: var(--white);
}
.service-cta-panel p {
  color: rgba(255,255,255,.78);
  margin-bottom: 0;
}
.service-cta-panel ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-cta-panel li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}
.service-cta-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
}
.cta-actions {
  display: grid;
  gap: 10px;
  min-width: 210px;
}
.service-gallery-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.service-gallery-strip img:first-child {
  aspect-ratio: 4 / 3;
}
.faq-block details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  margin-bottom: 12px;
  background: var(--white);
}
.faq-block summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  font-size: 19px;
}
.faq-block p { margin-top: 12px; margin-bottom: 0; }
.sidebar-list {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}
.sidebar-list li {
  padding: 11px 0 11px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  position: relative;
}
.sidebar-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--magenta);
  font-weight: 900;
}

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery img { border-radius: 8px; aspect-ratio: 4 / 3; object-fit: cover; }
.home-ibz {
  padding-top: 70px;
  padding-bottom: 70px;
}
.ibz-panel {
  display: grid;
  grid-template-columns: 1.05fr 180px 1fr;
  gap: 34px;
  align-items: center;
  padding: 36px;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.ibz-panel h2,
.ibz-panel p {
  color: var(--white);
}
.ibz-panel p {
  color: rgba(255,255,255,.78);
  margin-bottom: 0;
}
.ibz-proof {
  display: grid;
  place-items: center;
  min-height: 144px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}
.ibz-proof img {
  width: 132px;
  height: auto;
  object-fit: contain;
}
.ibz-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ibz-panel li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}
.ibz-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 900;
}
.home-realisations .gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-realisations .gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.home-contact .contact-panel h2 { margin-top: 8px; }
.home-contact .contact-panel p:last-child { margin-bottom: 0; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--white); }
.post-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.post-card div { padding: 24px; }
.post-meta { color: var(--magenta); font-weight: 800; font-size: 13px; text-transform: uppercase; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; }
.contact-panel, .form-panel, .admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}
label { display: block; color: var(--navy); font-weight: 800; margin-bottom: 8px; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
textarea { min-height: 160px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.rich-editor {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.rich-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  background: #f8fafd;
}

.rich-editor-toolbar > span {
  width: 1px;
  height: 28px;
  margin: 0 3px;
  background: var(--line);
}

.rich-editor-toolbar button {
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dce5ef;
  border-radius: 5px;
  padding: 0 10px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.rich-editor-toolbar button:hover,
.rich-editor-toolbar button.is-active {
  border-color: var(--blue);
  color: var(--blue);
  background: #eef7ff;
}

.rich-editor-surface,
.rich-editor-code {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 0;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  line-height: 1.7;
  outline: none;
}

.rich-editor-surface h2,
.rich-editor-surface h3,
.rich-editor-surface p,
.rich-editor-surface ul,
.rich-editor-surface ol,
.rich-editor-surface blockquote {
  margin-top: 0;
}

.rich-editor-surface blockquote {
  margin-left: 0;
  padding: 14px 18px;
  border-left: 4px solid var(--blue);
  background: #f4f8fd;
}

.rich-editor-surface img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.rich-editor-code {
  display: none;
  resize: vertical;
  font-family: Consolas, Monaco, 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.55;
}

.rich-editor.is-code-mode .rich-editor-surface {
  display: none;
}

.rich-editor.is-code-mode .rich-editor-code {
  display: block;
}

.dashboard-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fafd;
  cursor: pointer;
}

.dashboard-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--magenta);
}

.cookie-admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: start;
}

.cookie-preview-card {
  position: sticky;
  top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f8fc;
}

.cookie-preview-card > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent-banner {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  width: min(460px, calc(100vw - 36px));
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px 18px;
  padding: 24px;
  border: 1px solid rgba(220, 229, 239, .92);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 250, 255, .95), rgba(255, 255, 255, .98)),
    #fff;
  box-shadow: 0 32px 80px rgba(4, 16, 58, .26);
  overflow: hidden;
}

.cookie-consent-banner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--magenta), var(--blue));
}

.cookie-consent-banner.is-hidden {
  display: none;
}

.cookie-consent-banner.is-preview {
  position: static;
  width: 100%;
  margin-top: 12px;
  box-shadow: 0 18px 44px rgba(4, 16, 58, .14);
}

.cookie-consent-logo {
  width: 82px;
  height: 66px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid #edf1f6;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(4, 16, 58, .11);
}

.cookie-consent-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.cookie-consent-banner h2 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
}

.cookie-consent-banner p {
  margin: 9px 0 0;
  color: #53617a;
  font-size: 14.5px;
  line-height: 1.62;
}

.cookie-consent-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 2px;
}

.cookie-consent-actions .btn {
  min-height: 46px;
  padding-inline: 22px;
  border-radius: 4px;
  box-shadow: none;
}

.cookie-consent-actions .btn-secondary {
  border-color: #bfd8ec;
  color: var(--navy);
  background: #fff;
}

.cookie-consent-actions .btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #f4f9fe;
}

.settings-section {
  max-width: 760px;
  margin-bottom: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafd;
}

.settings-section h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 26px;
}

.settings-section p {
    margin: 0 0 18px;
    color: var(--muted);
  }
.two-factor-setup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.totp-secret {
  display: inline-block;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f6f8fc;
  color: var(--navy);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.settings-help {
  padding: 14px 16px;
  border: 1px solid #d8e5f1;
  border-radius: 6px;
  background: #f6faff;
}

.settings-help strong {
  color: var(--navy);
}

.backup-create-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 24px 0 32px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafd;
}

.backup-create-panel h2,
.backup-create-panel p {
  margin: 0;
}

.backup-create-panel p {
  max-width: 720px;
  margin-top: 8px;
  color: var(--muted);
}

.backup-create-panel form {
  flex: 0 0 auto;
}

@media (max-width: 760px) {
  .settings-grid {
    grid-template-columns: 1fr;
  }

  .backup-create-panel {
    align-items: stretch;
    flex-direction: column;
  }
}

.contact-form-notice {
  margin-top: 14px;
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(11, 126, 208, .16), transparent 34%),
    linear-gradient(90deg, var(--navy), #07145f);
  color: var(--white);
}

.footer-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 36px;
  align-items: center;
  width: min(var(--content-wide), calc(100% - 96px));
  margin: 0 auto;
  padding: 58px 0 54px;
}

.footer-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-cta-copy h2 {
  max-width: 790px;
  color: var(--white);
  font-size: clamp(38px, 3.2vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.footer-cta-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.6;
}

.footer-cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  align-items: center;
}

.footer-phone-btn {
  min-height: 56px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.footer-cta-actions .btn {
  min-height: 56px;
  padding-inline: 28px;
  border-radius: 4px;
}

.footer-grid {
  width: min(var(--content-wide), calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr .75fr .75fr 1fr;
  gap: 64px;
  padding: 56px 0 48px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255,255,255,.76);
}

.site-footer h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 18px;
}

.footer-brand-col p {
  max-width: 420px;
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.footer-col a {
  display: block;
  margin-bottom: 13px;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.45;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-logo {
  width: 190px;
  height: 92px;
  padding: 12px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
}

.footer-contact-list {
  display: grid;
  gap: 14px;
}

.footer-contact-list p,
.footer-contact-list a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: center;
  margin: 0;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.45;
}

.footer-contact-list span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(11,126,208,.22);
  color: #8fd4ff;
  font-size: 14px;
  font-weight: 900;
}

.footer-bottom {
  width: min(var(--content-wide), calc(100% - 96px));
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
}

.site-footer .footer-cta-copy h2 {
  max-width: 790px;
  color: var(--white);
  font-size: clamp(38px, 3.2vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.site-footer .footer-phone-btn {
  color: var(--navy);
}

.site-footer .footer-phone-btn:hover {
  color: var(--navy);
}

.dashboard-shell { min-height: 100vh; background: linear-gradient(135deg, #f6f8fc 0%, #eef4fb 100%); padding: 40px; }
.dashboard-shell .container { width: var(--content-wide); max-width: none; }
.dashboard-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(8, 13, 67, .06);
}
.dashboard-brand img {
  width: 168px;
  height: 45px;
  object-fit: contain;
  object-position: center;
}
.dashboard-brand span {
  color: var(--navy);
  font-weight: 900;
  font-size: 22px;
}
.dashboard-brand-inline {
  margin-bottom: 24px;
}
.dashboard-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
  margin: 24px 0;
  padding: 34px;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 20px 50px rgba(8, 13, 67, .18);
}
.dashboard-hero-panel h2,
.dashboard-hero-panel p {
  color: var(--white);
}
.dashboard-hero-panel p {
  max-width: 850px;
  color: rgba(255,255,255,.78);
  margin-bottom: 0;
}
.dashboard-chart-card {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}
.chart-head strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1.1;
}
.chart-head span,
.chart-legend {
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.chart-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.chart-legend span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.chart-legend .visitors { background: var(--cyan); }
.chart-legend .ctas { background: var(--magenta); }
.dashboard-line-chart {
  width: 100%;
  height: 230px;
  display: block;
}
.interactive-chart {
  position: relative;
}
.chart-grid path {
  fill: none;
  stroke: rgba(255,255,255,.12);
  stroke-width: 1;
}
.chart-axis-labels text {
  fill: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 800;
}
.dashboard-line-chart .line {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 1.4s ease forwards;
}
.visitors-line {
  stroke: var(--cyan);
}
.cta-line {
  stroke: var(--magenta);
  animation-delay: .22s;
}
.chart-hover-line {
  opacity: 0;
  stroke: rgba(255,255,255,.45);
  stroke-width: 1;
  stroke-dasharray: 4 5;
  pointer-events: none;
}
.chart-hover-dot {
  opacity: 0;
  stroke: var(--white);
  stroke-width: 3;
  pointer-events: none;
}
.visitors-dot {
  fill: var(--cyan);
}
.cta-dot {
  fill: var(--magenta);
}
.interactive-chart.is-active .chart-hover-line,
.interactive-chart.is-active .chart-hover-dot {
  opacity: 1;
}
.chart-tooltip {
  position: absolute;
  left: 0;
  top: 18px;
  z-index: 3;
  display: none;
  min-width: 150px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  color: var(--navy);
  font-size: 12px;
  line-height: 1.35;
  box-shadow: 0 14px 32px rgba(8, 13, 67, .18);
  opacity: 0;
  transform: translate(-50%, -8px);
  pointer-events: none;
}
.interactive-chart.is-active .chart-tooltip {
  display: block;
  opacity: 1;
}
.chart-tooltip strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
.dashboard-hero-actions {
  display: grid;
  gap: 12px;
}
.maintenance-toggle-card {
  margin: 0;
}
.maintenance-switch {
  width: 100%;
  min-height: 62px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}
.maintenance-switch span {
  position: relative;
  width: 54px;
  height: 30px;
  border-radius: 999px;
  background: #23b26d;
}
.maintenance-switch span::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
}
.maintenance-switch.is-on span {
  background: var(--magenta);
}
.maintenance-switch.is-on span::after {
  right: 28px;
}
.maintenance-switch strong {
  font-size: 15px;
}
.dashboard-overview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.dashboard-overview article,
.dashboard-module-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(8, 13, 67, .06);
}
.dashboard-overview span,
.dashboard-module-card span {
  color: var(--magenta);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}
.dashboard-overview strong {
  display: block;
  margin: 10px 0;
  color: var(--navy);
  font-size: 42px;
  line-height: 1;
}
.dashboard-overview p,
.dashboard-module-card p {
  margin: 0;
}
.dashboard-module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.dashboard-module-card h2 {
  margin-top: 10px;
  font-size: 26px;
}
.dashboard-split-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}
.dashboard-split-summary > div,
.analytics-grid > section {
  min-width: 0;
}
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 8px; overflow: hidden; }
.admin-table th, .admin-table td { padding: 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.notice { padding: 14px 18px; background: #eaf8ef; border: 1px solid #b8e8c5; border-radius: 6px; margin-bottom: 18px; color: #12642a; }
.danger { color: var(--magenta); font-weight: 900; }
.analytics-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 26px;
}
.analytics-kpi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.analytics-chart-panel {
  margin: 0 0 24px;
  padding: 24px;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 18px 42px rgba(8, 13, 67, .14);
}
.analytics-kpi div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.analytics-kpi span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}
.analytics-kpi strong {
  display: block;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.1;
}
.analytics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.analytics-tag-panel {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.analytics-reset-panel {
  margin-top: 16px;
}

.maintenance-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f6f8fc 0%, #eaf3fb 100%);
}
.maintenance-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}
.maintenance-card {
  width: min(760px, 100%);
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(8, 13, 67, .14);
  text-align: center;
}
.maintenance-card img {
  width: 210px;
  height: 108px;
  margin: 0 auto 22px;
  object-fit: cover;
  object-position: center 74%;
}
.maintenance-card h1 {
  font-size: clamp(38px, 4vw, 58px);
}
.maintenance-card p {
  max-width: 560px;
  margin: 0 auto 28px;
}
.maintenance-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  :root {
    --content-wide: calc(100vw - 48px);
    --content-text: calc(100vw - 48px);
    --content-gutter: 24px;
  }
  .site-header { height: auto; min-height: 86px; padding: 18px 24px; flex-wrap: wrap; }
  .brand { flex: 0 0 auto; }
  .brand img { width: clamp(150px, 24vw, 190px); height: auto; object-fit: contain; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav { order: 4; display: none; width: 100%; margin: 0; flex-direction: column; align-items: flex-start; gap: 8px; }
  .main-nav.is-open { display: flex; }
  .main-nav a,
  .nav-parent { padding: 10px 0; }
  .main-nav a.is-active::after,
  .nav-dropdown.is-active .nav-parent::after { bottom: 4px; }
  .nav-dropdown { width: 100%; }
  .nav-menu {
    position: static;
    display: grid;
    gap: 2px;
    width: 100%;
    min-width: 0;
    margin-top: 4px;
    padding: 8px 0 8px 16px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }
  .nav-menu a { padding: 7px 0; }
  .header-actions { margin-left: 0; }
  .hero-copy { width: min(620px, 100%); }
  .feature-row {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 18px 0;
  }
  .feature-mini {
    min-width: 220px;
  }
  .stats-card, .service-grid, .post-grid, .gallery, .footer-grid, .content-layout, .page-hero .container, .split, .contact-grid, .service-hero .container, .service-proof .container, .service-intro-panel, .benefit-grid, .process-band, .service-gallery-strip, .service-editorial, .service-editorial.is-reverse, .service-checkband, .service-cta-panel, .ibz-panel, .template-split, .process-layout, .process-steps, .template-photo-strip, .profile-layout, .local-layout, .local-projects, .method-template-panel, .method-step-grid, .method-photo-strip, .building-template-panel, .building-stats-bar, .realisations-template-panel, .realisations-local-strip, .about-template-panel, .about-cta-strip, .realisations-carousel-slide, .contact-template-panel, .service-template-hero .container, .service-template-proof .container, .service-editorial-intro, .service-text-feature, .service-text-feature.is-reverse, .service-included-grid, .service-profile-section, .service-profile-grid, .service-process-steps, .service-rich-text, .service-single-gallery-grid, .service-final-cta { grid-template-columns: 1fr; }
  .stats-card { margin-top: 24px; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); justify-content: flex-start; }
  .stat:last-child { border-bottom: 0; }
  .service-proof .container > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-proof .container > div:last-child { border-bottom: 0; }
  .service-floating-card { position: static; max-width: none; margin-top: -18px; }
  .service-template-proof {
    margin-top: 24px;
  }
  .service-template-proof .container > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .service-template-proof .container > div:last-child {
    border-bottom: 0;
  }
  .service-text-feature.is-reverse .text-feature-copy {
    order: initial;
  }
  .service-profile-section,
  .service-process-template,
  .service-final-cta {
    padding: 28px;
  }
  .service-editorial.is-reverse .editorial-media,
  .service-editorial.is-reverse .editorial-copy { order: initial; }
  .key-points ul { grid-template-columns: 1fr; }
  .process-steps article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .process-steps article:last-child {
    border-bottom: 0;
  }
  .process-steps article::after {
    display: none;
  }
  .security-preview {
    min-height: 420px;
  }
  .security-preview img {
    min-height: 372px;
  }
  .local-band {
    align-items: flex-start;
    flex-direction: column;
  }
  .method-template-section {
    padding: 34px 24px;
  }
  .method-template-panel {
    width: var(--content-wide);
    padding: 42px 32px 32px;
    gap: 36px;
  }
  .method-template-intro p {
    margin-bottom: 34px;
  }
  .method-timeline {
    display: none;
  }
  .method-step-grid {
    gap: 16px;
  }
  .method-step-card {
    min-height: auto;
  }
  .method-project-card {
    min-height: auto;
  }
  .building-template-section {
    padding: 54px 24px 42px;
  }
  .building-template-panel {
    width: var(--content-wide);
    gap: 28px;
  }
  .building-schema-card.building-schema-card-image,
  .building-schema-image,
  .building-schema-image img {
    height: auto;
  }
  .building-schema-card {
    min-height: auto;
  }
  .building-stats-bar {
    gap: 0;
  }
  .building-stat {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid #d8e0ec;
  }
  .building-stat-cta {
    padding-left: 0;
    padding-top: 18px;
  }
  .realisations-template-section {
    padding: 42px 24px;
  }
  .realisations-template-panel {
    width: var(--content-wide);
    padding: 42px 28px;
  }
  .realisations-intro > p {
    max-width: 680px;
  }
  .realisations-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .realisations-dots {
    grid-column: 1;
  }
  .realisations-carousel {
    grid-column: 1;
  }
  .realisations-local-strip {
    gap: 0;
  }
  .local-strip-item {
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid #d8e0ec;
  }
  .about-template-section {
    padding: 48px 24px;
  }
  .about-template-panel {
    width: var(--content-wide);
    gap: 32px;
  }
  .dashboard-hero-panel,
  .dashboard-overview,
  .dashboard-module-grid,
  .dashboard-split-summary {
    grid-template-columns: 1fr;
  }
  .about-cta-strip {
    gap: 20px;
  }
  .contact-template-panel {
    padding: 24px;
  }
  .contact-template-info,
  .contact-template-form {
    padding: 24px;
  }
  .about-strip-location,
  .about-strip-proof {
    padding: 0;
    border: 0;
  }
}

@media (min-width: 1800px) {
  :root {
    --content-wide: 85vw;
    --content-text: 85vw;
    --content-gutter: 7.5vw;
  }
  .hero {
    background:
      linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.98) 34%, rgba(255,255,255,.82) 43%, rgba(255,255,255,.48) 52%, rgba(255,255,255,.16) 61%, rgba(255,255,255,0) 69%),
      url("../img/template-hero-man-back.jpg") right center / auto 112% no-repeat,
      #f4f7fb;
  }
  .hero::after {
    height: 150px;
  }
}

@media (max-width: 720px) {
  :root {
    --content-wide: calc(100vw - 36px);
    --content-text: calc(100vw - 36px);
    --content-gutter: 18px;
  }
  .dashboard-shell {
    padding: 18px;
  }
  .dashboard-shell .container {
    width: 100%;
  }
  .dashboard-brand {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
  }
  .dashboard-brand img {
    width: 118px;
    height: 56px;
  }
  .dashboard-brand span {
    font-size: 17px;
    text-align: right;
  }
  .admin-panel {
    padding: 22px 16px;
  }
  .dashboard-hero-panel {
    padding: 22px 16px;
  }
  .dashboard-chart-card,
  .analytics-chart-panel {
    padding: 14px;
  }
  .chart-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .chart-legend {
    flex-wrap: wrap;
    white-space: normal;
  }
  .dashboard-line-chart {
    height: 190px;
  }
  .dashboard-hero-actions .btn,
  .analytics-filters .btn,
  .admin-actions .btn {
    width: 100%;
  }
  .analytics-filters,
  .admin-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .dashboard-overview article,
  .dashboard-module-card {
    padding: 18px;
  }
  .dashboard-overview strong {
    font-size: 34px;
  }
  .dashboard-module-card h2 {
    font-size: 22px;
  }
  .admin-table {
    display: block;
    width: 100%;
    overflow: visible;
    white-space: normal;
    border-collapse: separate;
    background: transparent;
    border-radius: 8px;
  }
  .admin-table thead {
    display: none;
  }
  .admin-table tbody,
  .admin-table tr,
  .admin-table td {
    display: block;
    width: 100%;
  }
  .admin-table tr {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }
  .admin-table th,
  .admin-table td {
    padding: 12px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .admin-table td:last-child {
    border-bottom: 0;
  }
  .analytics-tag-panel {
    padding: 18px;
  }
  .brand img { width: 156px; height: auto; object-fit: contain; object-position: center; }
  .analytics-kpi,
  .analytics-grid { grid-template-columns: 1fr; }
  .header-actions { width: 100%; justify-content: space-between; gap: 12px; }
  .phone-link { font-size: 14px; }
  .header-actions .btn { padding: 11px 14px; font-size: 14px; }
  .hero { min-height: 560px; grid-template-columns: 22px 1fr 22px; background-position: 61% center; }
  .hero-inner { padding: 48px 0 96px; }
  .hero::before { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.66); }
  h1 { font-size: 44px; }
  .section, .page-hero { padding: 58px 22px; }
  .stats-card { width: calc(100% - 36px); }
  .feature-row { width: auto; max-width: none; flex-wrap: wrap; }
  .feature-mini { border-right: 0; }
  .media-label {
    position: static;
    margin-top: -10px;
    align-items: flex-start;
    flex-direction: column;
  }
  .benefit-list article {
    grid-template-columns: 1fr;
  }
  .template-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .template-actions .btn,
  .process-card .btn,
  .testimonial-panel .btn {
    width: 100%;
  }
  .profile-tabs span {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }
  .security-preview {
    padding: 14px;
    min-height: auto;
  }
  .security-preview img {
    min-height: 330px;
  }
  .preview-pin {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    min-width: 0;
    margin: 10px 0 0;
  }
  .preview-pin::before {
    top: 14px;
    left: auto;
    right: 14px;
  }
  .method-template-section {
    padding: 28px 18px;
  }
  .method-template-panel {
    width: 100%;
    padding: 32px 22px 22px;
  }
  .method-template-intro .eyebrow {
    font-size: 12px;
    letter-spacing: 2.4px;
  }
  .method-template-intro h2 {
    font-size: 38px;
  }
  .method-template-intro p,
  .method-step-card p,
  .method-project-card li,
  .method-project-note p {
    font-size: 15px;
  }
  .method-project-title {
    grid-template-columns: 1fr;
  }
  .method-project-card {
    padding: 30px 22px;
  }
  .method-project-card .btn {
    min-height: 58px;
    font-size: 16px;
  }
  .building-template-section {
    padding: 42px 18px 34px;
  }
  .building-template-panel {
    width: 100%;
  }
  .building-template-copy h2 {
    font-size: 36px;
  }
  .building-profile-card {
    grid-template-columns: 58px minmax(0, 1fr) 18px;
    gap: 14px;
    padding: 18px 16px;
  }
  .building-profile-icon {
    width: 54px;
    height: 54px;
  }
  .building-profile-icon svg {
    width: 30px;
    height: 30px;
  }
  .building-profile-card ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .building-profile-card li {
    white-space: normal;
  }
  .building-schema-card {
    padding: 30px 18px;
  }
  .building-stats-bar {
    margin-top: 24px;
    padding: 18px;
  }
  .realisations-template-section {
    padding: 34px 18px;
  }
  .realisations-template-panel {
    width: 100%;
    padding: 32px 18px;
  }
  .realisations-intro h2 {
    font-size: 34px;
  }
  .realisations-points {
    grid-template-columns: 1fr;
  }
  .realisation-tags {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .realisations-testimonial {
    padding: 32px 22px;
  }
  .local-strip-lead,
  .local-strip-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .about-template-section {
    padding: 38px 18px;
  }
  .about-template-panel {
    width: 100%;
  }
  .about-template-copy h2 {
    font-size: 38px;
  }
  .about-image-badge {
    position: static;
    min-width: 0;
    margin: -10px 16px 0;
  }
  .about-benefit-list article {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-benefit-list article > div {
    padding-left: 0;
    border-left: 0;
  }
  .about-strip-item {
    grid-template-columns: 1fr;
  }
  .about-cta-strip {
    padding: 24px 20px;
  }
  .contact-template-section {
    padding: 42px 18px;
  }
  .contact-template-panel {
    width: 100%;
    padding: 16px;
  }
  .contact-template-info,
  .contact-template-form {
    padding: 18px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-submit-row {
    align-items: stretch;
    flex-direction: column;
  }
  .contact-submit-row .btn {
    width: 100%;
    min-width: 0;
  }
  .service-template-hero,
  .service-template-page {
    padding: 52px 18px;
  }
  .service-template-proof {
    padding: 0 18px;
  }
  .service-hero-minis {
    grid-template-columns: 1fr;
  }
  .service-template-badge {
    position: static;
    max-width: none;
    margin-top: -12px;
  }
  .service-editorial-intro,
  .service-profile-section,
  .service-process-template,
  .service-final-cta {
    padding: 22px;
  }
  .text-feature-copy {
    padding: 16px 0;
  }
  .service-rich-text {
    gap: 12px;
    padding: 30px 0;
  }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* Pixel-close service pages */
.service-pixel-hero {
  background: linear-gradient(90deg, #fff 0%, #fff 48%, #f4f7fb 48%, #f4f7fb 100%);
  border-bottom: 1px solid var(--line);
  padding: 30px 0 0;
}

.service-pixel-hero-inner {
  width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(560px, 1.12fr);
  min-height: 520px;
  align-items: stretch;
}

.service-pixel-copy { padding: 78px 54px 104px 0; }

.service-pixel-copy h1 {
  max-width: 560px;
  margin: 12px 0 18px;
  font-size: clamp(48px, 4.6vw, 82px);
  line-height: .98;
  color: var(--navy);
  letter-spacing: 0;
}

.service-pixel-copy > p {
  max-width: 520px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

.service-pixel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.service-pixel-minis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
  max-width: 650px;
}

.service-pixel-minis article {
  min-width: 0;
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 12px;
  align-items: center;
  color: var(--navy);
}

.service-pixel-minis svg {
  width: 28px;
  height: 28px;
  stroke: #68758d;
  stroke-width: 1.9;
  fill: none;
  grid-row: span 2;
}

.service-pixel-minis strong { font-size: 12px; line-height: 1.2; }
.service-pixel-minis span { color: var(--muted); font-size: 11px; line-height: 1.2; }

.service-pixel-media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 24, 64, .14);
}

.service-pixel-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.88) 32%, rgba(255,255,255,0) 100%);
}

.service-pixel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-pixel-stats {
  position: relative;
  z-index: 2;
  margin-top: -42px;
  margin-bottom: 58px;
}

.service-pixel-stats-inner {
  width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 22px 52px rgba(0, 24, 64, .13);
}

.service-pixel-stats article {
  display: grid;
  grid-template-columns: 46px auto;
  align-items: center;
  justify-content: center;
  column-gap: 14px;
  min-height: 104px;
  border-right: 1px solid var(--line);
  color: var(--navy);
}

.service-pixel-stats article:last-child { border-right: 0; }

.service-pixel-stats svg {
  width: 34px;
  height: 34px;
  stroke: var(--blue);
  stroke-width: 1.9;
  fill: none;
  grid-row: span 2;
}

.service-pixel-stats article:nth-child(2) svg,
.service-pixel-stats article:nth-child(4) svg { stroke: var(--pink); }

.service-pixel-stats strong { font-size: 28px; line-height: 1; }
.service-pixel-stats span { color: var(--muted); font-size: 13px; }

.service-pixel-page {
  width: var(--content-wide);
  margin: 0 auto 72px;
}

.service-priority-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 76px;
  align-items: start;
  padding-bottom: 66px;
  border-bottom: 1px solid var(--line);
}

.service-priority-copy h2,
.service-text-band h2,
.service-final-panel h2 {
  color: var(--navy);
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.05;
  margin: 0 0 24px;
}

.service-priority-copy p,
.service-long-copy p,
.service-text-band p,
.service-final-panel p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
  margin: 0 0 18px;
}

.service-expert-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 44px;
  box-shadow: 0 18px 48px rgba(0, 24, 64, .08);
  background: #fff;
}

.service-expert-card > strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 22px;
}

.service-expert-card div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: start;
}

.service-expert-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
}

.service-expert-card p {
  margin: 0;
  color: var(--text);
  font-style: italic;
  line-height: 1.75;
}

.service-expert-card > span {
  display: block;
  margin: 26px 0 0 92px;
  color: var(--navy);
  font-weight: 800;
}

.service-expert-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 500;
}

.service-centered-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.service-section-title {
  text-align: center;
  margin: 0 auto 42px;
}

.service-section-title h2 {
  display: inline-block;
  position: relative;
  margin: 0;
  color: var(--navy);
  font-size: clamp(31px, 2.6vw, 42px);
  line-height: 1.1;
}

.service-section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 54px;
  height: 3px;
  transform: translateX(-50%);
  background: var(--pink);
}

.service-why-layout,
.service-includes-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1fr);
  gap: 76px;
  align-items: start;
}

.service-check-column { display: grid; gap: 22px; }

.service-check-column article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  align-items: start;
}

.service-check-column > article > span {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.service-check-column strong,
.service-feature-stack strong,
.service-building-cards strong,
.service-method-cards strong,
.service-equipment-cards strong {
  color: var(--navy);
  font-size: 18px;
}

.service-check-column p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.service-location-note {
  margin-top: 34px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7fbff;
}

.service-location-note svg,
.service-feature-stack svg,
.service-building-cards svg,
.service-method-cards svg {
  width: 34px;
  height: 34px;
  stroke: var(--blue);
  stroke-width: 1.8;
  fill: none;
}

.service-location-note > svg { width: 46px; height: 46px; }
.service-location-note strong { color: var(--navy); font-size: 18px; }
.service-location-note p { margin: 6px 0 0; color: var(--muted); font-size: 15px; line-height: 1.55; }

.service-feature-stack {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 16px 44px rgba(0, 24, 64, .08);
  background: #fff;
}

.service-feature-stack article {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.service-feature-stack article:last-child { border-bottom: 0; }

.service-feature-stack article > span {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(232, 0, 80, .45);
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: #fff5f9;
}

.service-feature-stack article:nth-child(2) > span {
  border-color: rgba(0, 126, 204, .45);
  background: #f2f9ff;
}

.service-feature-stack article > span svg { stroke: var(--pink); }
.service-feature-stack article:nth-child(2) > span svg { stroke: var(--blue); }
.service-feature-stack p { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 6px 0 0; }

.service-building-cards,
.service-method-cards,
.service-equipment-cards {
  display: grid;
  gap: 22px;
}

.service-building-cards { grid-template-columns: repeat(4, 1fr); }

.service-building-cards article,
.service-method-cards article {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(0, 24, 64, .05);
}

.service-building-cards article {
  min-height: 210px;
  padding: 32px;
}

.service-building-cards svg { width: 44px; height: 44px; margin-bottom: 24px; }

.service-building-cards p,
.service-method-cards p,
.service-equipment-cards p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 10px 0 0;
}

.service-method-section { padding-top: 56px; }

.service-method-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(980px, 100%);
  margin: 0 auto 22px;
}

.service-method-line::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  background: var(--blue);
}

.service-method-line span {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.service-method-cards { grid-template-columns: repeat(4, 1fr); }
.service-method-cards article { padding: 28px; }
.service-method-cards svg { width: 40px; height: 40px; margin-bottom: 16px; }

.service-equipment-cards { grid-template-columns: repeat(5, 1fr); }

.service-equipment-cards article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 24, 64, .06);
}

.service-equipment-cards img {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
}

.service-equipment-cards div { padding: 22px; }

.service-recent-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.service-recent-strip img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.service-center-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.service-text-band {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 56px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.service-text-band h2 { position: relative; margin: 0; }

.service-text-band h2::before {
  content: "ADC SÉCURITÉ";
  display: block;
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.service-faq-pixel { padding: 56px 0 0; }

.service-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 42px;
  align-items: stretch;
}

.service-faq-layout details {
  border: 1px solid var(--line);
  border-radius: 5px;
  margin-bottom: 12px;
  background: #fff;
}

.service-faq-layout summary {
  padding: 20px 24px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.service-faq-layout p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--text);
  line-height: 1.65;
}

.service-faq-layout aside {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(0, 24, 64, .06);
}

.service-faq-layout aside strong { display: block; margin-top: 18px; color: var(--navy); }
.service-faq-layout aside span { display: block; margin-top: 6px; color: var(--muted); line-height: 1.55; }

.service-final-panel {
  margin-top: 58px;
  padding: 34px 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f6f9fd;
}

.service-final-panel h2 {
  font-size: clamp(30px, 2.5vw, 42px);
  margin-bottom: 8px;
}

.service-final-panel p { margin-bottom: 0; font-size: 15px; }

.service-final-panel > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Dedicated alarm service template */
.alarm-template-hero {
  background: linear-gradient(90deg, #fff 0%, #fff 48%, #f3f6fb 48%, #f3f6fb 100%);
  border-bottom: 1px solid var(--line);
  padding-top: 24px;
}

.alarm-template-hero-inner {
  width: var(--content-wide);
  min-height: 500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: stretch;
}

.alarm-template-copy {
  padding: 80px 42px 110px 0;
}

.alarm-template-copy h1 {
  max-width: 580px;
  margin: 14px 0 18px;
  color: var(--navy);
  font-size: clamp(46px, 4.4vw, 78px);
  line-height: .99;
  letter-spacing: 0;
}

.alarm-template-copy > p {
  max-width: 520px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}

.alarm-template-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.alarm-template-minis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 680px;
  margin-top: 44px;
}

.alarm-template-minis article {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  align-items: center;
  min-width: 0;
}

.alarm-template-minis svg {
  width: 28px;
  height: 28px;
  grid-row: span 2;
  stroke: #6b758c;
  stroke-width: 1.9;
  fill: none;
}

.alarm-template-minis strong {
  color: var(--navy);
  font-size: 12px;
  line-height: 1.2;
}

.alarm-template-minis span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.alarm-template-media {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
}

.alarm-template-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.84) 36%, rgba(255,255,255,0) 100%);
}

.alarm-template-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.alarm-template-stats {
  position: relative;
  z-index: 3;
  margin: -43px 0 62px;
}

.alarm-template-stats-inner {
  width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(0, 24, 64, .13);
}

.alarm-template-stats article {
  min-height: 98px;
  display: grid;
  grid-template-columns: 44px auto;
  justify-content: center;
  align-items: center;
  column-gap: 14px;
  border-right: 1px solid var(--line);
}

.alarm-template-stats article:last-child { border-right: 0; }

.alarm-template-stats svg {
  width: 32px;
  height: 32px;
  grid-row: span 2;
  stroke: var(--blue);
  stroke-width: 1.9;
  fill: none;
}

.alarm-template-stats article:nth-child(2) svg,
.alarm-template-stats article:nth-child(4) svg { stroke: var(--pink); }

.alarm-template-stats strong {
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
}

.alarm-template-stats span {
  color: var(--muted);
  font-size: 13px;
}

.alarm-template-page {
  width: var(--content-wide);
  margin: 0 auto 70px;
}

.alarm-building-section,
.alarm-included-section,
.alarm-method-section,
.alarm-equipment-section,
.alarm-realisations-section,
.alarm-faq-section {
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}

.alarm-building-section {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}

.alarm-section-intro h2,
.alarm-method-section h2,
.alarm-equipment-section h2,
.alarm-realisations-section h2,
.alarm-faq-head h2 {
  margin: 12px 0 16px;
  color: var(--navy);
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1.06;
  letter-spacing: 0;
}

.alarm-section-intro p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

.alarm-building-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.alarm-building-grid article {
  min-height: 210px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 24, 64, .05);
}

.alarm-building-grid svg,
.alarm-method-grid svg {
  width: 43px;
  height: 43px;
  margin-bottom: 22px;
  stroke: var(--blue);
  stroke-width: 1.8;
  fill: none;
}

.alarm-building-grid strong,
.alarm-included-list strong,
.alarm-method-grid strong,
.alarm-equipment-grid strong,
.alarm-faq-cta strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.alarm-building-grid p,
.alarm-included-list p,
.alarm-method-grid p,
.alarm-equipment-grid p,
.alarm-faq-cta p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.alarm-included-section {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 58px;
}

.alarm-included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 48px;
}

.alarm-included-list article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
}

.alarm-included-list article > span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.alarm-method-section {
  text-align: center;
}

.alarm-method-line {
  position: relative;
  width: min(960px, 100%);
  margin: 34px auto 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.alarm-method-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 42px;
  right: 42px;
  height: 3px;
  transform: translateY(-50%);
  background: var(--blue);
}

.alarm-method-line span {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.alarm-method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: left;
}

.alarm-method-grid article {
  min-height: 238px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 24, 64, .05);
}

.alarm-method-grid small {
  display: block;
  margin-top: 22px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
}

.alarm-equipment-section h2,
.alarm-realisations-section h2 {
  max-width: 720px;
}

.alarm-equipment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.alarm-equipment-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 24, 64, .06);
}

.alarm-equipment-grid img {
  width: 100%;
  height: 150px;
  display: block;
  object-fit: cover;
}

.alarm-equipment-grid div {
  padding: 22px;
}

.alarm-realisations-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.alarm-realisations-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin: 28px 0 28px;
}

.alarm-realisations-grid img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  display: block;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.alarm-realisations-section .btn {
  align-self: center;
}

.alarm-faq-section {
  padding-bottom: 0;
}

.alarm-faq-section {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 42px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7faff;
  box-shadow: 0 18px 45px rgba(0, 24, 64, .06);
}

.alarm-faq-list details {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.alarm-faq-list summary {
  padding: 18px 22px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.alarm-faq-list p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--muted);
  line-height: 1.6;
}

.alarm-faq-cta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.alarm-faq-cta svg {
  width: 48px;
  height: 48px;
  stroke: var(--pink);
  stroke-width: 1.9;
  fill: none;
}

@media (max-width: 1200px) {
  .service-pixel-hero-inner,
  .service-priority-row,
  .service-why-layout,
  .service-includes-layout,
  .service-text-band,
  .service-faq-layout,
  .service-final-panel {
    grid-template-columns: 1fr;
  }

  .service-pixel-copy { padding: 58px 0 42px; }
  .service-pixel-media { min-height: 420px; border-radius: 6px; }

  .service-building-cards,
  .service-method-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-equipment-cards,
  .service-recent-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-final-panel > div:last-child {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .alarm-template-hero-inner,
  .alarm-building-section,
  .alarm-included-section,
  .alarm-faq-section {
    grid-template-columns: 1fr;
  }

  .alarm-template-copy {
    padding: 58px 0 42px;
  }

  .alarm-template-media {
    min-height: 390px;
    border-radius: 6px;
  }

  .alarm-building-grid,
  .alarm-equipment-grid,
  .alarm-realisations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .alarm-method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .alarm-faq-cta {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .alarm-faq-cta .btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .service-pixel-hero {
    background: #fff;
    padding-top: 12px;
  }

  .service-pixel-hero-inner {
    width: var(--content-wide);
    min-height: 0;
  }

  .service-pixel-copy h1 { font-size: clamp(38px, 12vw, 52px); }

  .service-pixel-minis,
  .service-pixel-stats-inner,
  .service-building-cards,
  .service-method-cards,
  .service-equipment-cards,
  .service-recent-strip {
    grid-template-columns: 1fr;
  }

  .service-pixel-media { min-height: 300px; }
  .service-pixel-stats { margin-top: 18px; }

  .service-pixel-stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    justify-content: start;
    padding-left: 26px;
  }

  .service-pixel-stats article:last-child { border-bottom: 0; }

  .service-priority-row,
  .service-centered-section,
  .service-text-band {
    padding: 44px 0;
  }

  .service-expert-card,
  .service-feature-stack,
  .service-final-panel {
    padding: 24px;
  }

  .service-expert-card div,
  .service-location-note,
  .service-feature-stack article {
    grid-template-columns: 1fr;
  }

  .service-expert-card > span { margin-left: 0; }
  .service-method-line { display: none; }
  .service-equipment-cards img { height: 220px; }

  .alarm-template-hero {
    background: #fff;
    padding-top: 12px;
  }

  .alarm-template-hero-inner {
    width: var(--content-wide);
    min-height: 0;
  }

  .alarm-template-copy h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .alarm-template-minis,
  .alarm-template-stats-inner,
  .alarm-building-grid,
  .alarm-included-list,
  .alarm-method-grid,
  .alarm-equipment-grid,
  .alarm-realisations-grid {
    grid-template-columns: 1fr;
  }

  .alarm-template-media {
    min-height: 280px;
  }

  .alarm-template-stats {
    margin-top: 18px;
  }

  .alarm-template-stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    justify-content: start;
    padding-left: 26px;
  }

  .alarm-template-stats article:last-child {
    border-bottom: 0;
  }

  .alarm-building-section,
  .alarm-included-section,
  .alarm-method-section,
  .alarm-equipment-section,
  .alarm-realisations-section,
  .alarm-faq-section {
    padding: 38px 0;
  }

  .alarm-faq-section {
    padding: 24px;
  }

  .alarm-method-line {
    display: none;
  }

  .alarm-faq-cta {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

/* Final overrides for the 2026 alarm mockup */
body:has(.alarm-template-page) {
  --content-wide: 85vw;
  --content-text: 85vw;
  --content-gutter: 7.5vw;
}

.alarm-template-hero { padding-top: 0; border-bottom: 0; background: linear-gradient(90deg, #fff 0%, #fff 48%, #f5f8fc 48%, #f5f8fc 100%); }
.alarm-template-hero-inner { width: var(--content-wide); min-height: 595px; grid-template-columns: 46% 54%; }
.alarm-template-copy { padding: 86px 54px 118px 0; }
.alarm-template-copy h1 { max-width: 560px; margin: 24px 0 18px; font-size: clamp(54px, 4.7vw, 84px); line-height: .98; }
.alarm-template-copy > p { max-width: 535px; font-size: 17px; line-height: 1.58; color: #3d4b69; }
.alarm-template-actions { gap: 18px; margin-top: 31px; }
.alarm-template-actions .btn { min-width: 184px; height: 56px; justify-content: center; border-radius: 3px; font-size: 13px; }
.alarm-template-minis { grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.alarm-template-media { min-height: 595px; border-radius: 0; }
.alarm-template-stats { margin: -54px 0 58px; }
.alarm-template-stats-inner { width: var(--content-wide); min-height: 107px; border-color: #dce4ef; border-radius: 5px; box-shadow: 0 22px 54px rgba(0, 24, 64, .14); }
.alarm-template-stats article { min-height: auto; column-gap: 17px; border-color: #dce4ef; }
.alarm-template-page { width: var(--content-wide); margin: 0 auto; }

@media (min-width: 1101px) {
  body:has(.alarm-shortcuts) .alarm-template-hero-inner {
    width: 100%;
    grid-template-columns:
      minmax(var(--content-gutter), 1fr)
      minmax(0, calc(var(--content-wide) * .46))
      minmax(0, calc((100vw - var(--content-wide)) / 2 + (var(--content-wide) * .54)));
  }

  body:has(.alarm-shortcuts) .alarm-template-copy {
    grid-column: 2;
  }

  body:has(.alarm-shortcuts) .alarm-template-media {
    grid-column: 3;
  }
}

.alarm-tranquility-section,
.alarm-risk-section,
.alarm-protection-section,
.alarm-included-section,
.alarm-method-section,
.alarm-equipment-section,
.alarm-faq-section { padding: 42px 0 48px; border-bottom: 1px solid #e2e8f1; }
.alarm-included-section { display: grid; grid-template-columns: 38% 1fr; gap: 54px; align-items: start; }
.alarm-method-section { text-align: center; }
.alarm-method-grid { grid-template-columns: repeat(4, 1fr); gap: 25px; }
.alarm-equipment-section { text-align: center; }
.alarm-equipment-grid { grid-template-columns: repeat(5, 1fr); gap: 24px; }
.alarm-equipment-grid img { height: 173px; }
.alarm-faq-section { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 52px; align-items: start; padding-bottom: 50px; border-left: 0; border-right: 0; border-radius: 0; background: transparent; box-shadow: none; }

.alarm-template-stats { margin-bottom: 48px; }
.alarm-tranquility-section,
.alarm-risk-section,
.alarm-protection-section,
.alarm-included-section,
.alarm-method-section,
.alarm-equipment-section,
.alarm-faq-section { padding-top: 58px; padding-bottom: 62px; }
.alarm-tranquility-section { min-height: 244px; }
.alarm-text-block p { margin-top: 19px; font-size: 15px; line-height: 1.76; }
.alarm-expert-card { min-height: 205px; padding: 31px 36px 34px; }
.alarm-risk-grid,
.alarm-protection-grid,
.alarm-equipment-grid { margin-top: 31px; }
.alarm-plan-card { min-height: 282px; }
.alarm-risk-card { min-height: 137px; padding: 22px 27px; }
.alarm-risk-card svg,
.alarm-protection-grid svg { width: 56px; height: 56px; }
.alarm-protection-grid article { min-height: 189px; padding: 29px 34px; }
.alarm-check-list { gap: 19px; margin-top: 32px; }
.alarm-system-list article { min-height: 94px; padding: 13px 20px; }
.alarm-system-list img { width: 54px; height: 64px; }
.alarm-method-line { margin-top: 35px; margin-bottom: 27px; }
.alarm-method-grid article { min-height: 138px; padding: 22px; }
.alarm-method-grid svg { width: 44px; height: 44px; margin-bottom: 14px; }
.alarm-equipment-grid img { height: 173px; }
.alarm-equipment-grid div { min-height: 120px; padding: 18px; }
.alarm-equipment-section h2 {
  white-space: nowrap;
  font-size: clamp(30px, 2.5vw, 42px);
}
.alarm-faq-list { margin-top: 31px; }
.alarm-faq-list summary { padding: 16px 20px; }
.alarm-help-card { min-height: 209px; padding: 36px 39px; }
.alarm-final-cta { margin-bottom: 42px; padding: 32px 50px; }
.alarm-tranquility-section { min-height: 288px; align-content: start; }
.alarm-risk-section { min-height: 320px; }
.alarm-protection-section { min-height: 245px; }
.alarm-included-section { min-height: 292px; }
.alarm-method-section { min-height: 285px; }
.alarm-equipment-section { min-height: 332px; }
.alarm-faq-section { min-height: 292px; }

@media (max-width: 1024px) {
  .alarm-template-hero-inner,
  .alarm-tranquility-section,
  .alarm-included-section,
  .alarm-faq-section { grid-template-columns: 1fr; }
  .alarm-risk-grid { grid-template-columns: repeat(2, 1fr); }
  .alarm-plan-card { grid-column: 1 / -1; }
  .alarm-protection-grid,
  .alarm-equipment-grid,
  .alarm-method-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .alarm-template-hero { background: #fff; }
  .alarm-template-hero-inner { min-height: 0; }
  .alarm-template-copy { padding: 44px 0 30px; }
  .alarm-template-copy h1 { font-size: clamp(42px, 13vw, 58px); }
  .alarm-template-minis,
  .alarm-template-stats-inner,
  .alarm-risk-grid,
  .alarm-protection-grid,
  .alarm-method-grid,
  .alarm-equipment-grid { grid-template-columns: 1fr; }
  .alarm-template-media { min-height: 310px; border-radius: 6px; }
  .alarm-template-stats { margin: 18px 0 34px; }
  .alarm-template-stats article { min-height: 82px; justify-content: start; padding-left: 26px; border-right: 0; border-bottom: 1px solid #dce4ef; }
  .alarm-tranquility-section,
  .alarm-risk-section,
  .alarm-protection-section,
  .alarm-included-section,
  .alarm-method-section,
  .alarm-equipment-section,
  .alarm-faq-section { padding: 34px 0; }
  .alarm-method-line { display: none; }
  .alarm-final-cta { flex-direction: column; align-items: stretch; padding: 24px; }
}

/* Homepage mobile polish */
@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
  }

  .brand img {
    width: 116px;
  }

  .menu-toggle {
    margin-left: 0;
    font-size: 24px;
  }

  .header-actions {
    width: auto;
    justify-self: end;
    gap: 8px;
  }

  .phone-link {
    display: none;
  }

  .header-actions .btn {
    min-width: 0;
    min-height: 38px;
    padding: 9px 12px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
  }

  .main-nav.is-open {
    grid-column: 1 / -1;
    padding-top: 10px;
  }

  .hero {
    width: 100%;
    max-width: 100%;
    left: auto;
    right: auto;
    margin: 0;
    min-height: 0;
    display: block;
    background: #fff;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-inner {
    width: var(--content-wide);
    margin: 0 auto;
    padding: 34px 0 26px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 310px;
    margin-bottom: 14px;
    font-size: 38px;
    line-height: 1.03;
  }

  .lead {
    max-width: 320px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 22px 0 24px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .feature-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-mini {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    min-width: 0;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
  }

  .feature-mini .mini-icon,
  .feature-mini .mini-icon svg {
    width: 30px;
    height: 30px;
  }

  .feature-mini strong {
    white-space: normal;
    font-size: 12px;
  }

  .stats-card {
    width: var(--content-wide);
    margin: 12px auto 26px;
    border-radius: 7px;
  }

  .stat {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 20px;
  }

  .stat-icon,
  .stat-icon svg {
    width: 32px;
    height: 32px;
  }

  .stat strong {
    font-size: 24px;
  }

  .stat span {
    font-size: 12px;
  }

  .home-services {
    padding: 0 0 34px;
  }

  .service-grid {
    gap: 14px;
  }

  .service-card {
    border-radius: 7px;
  }

  .service-card img {
    aspect-ratio: 1.78 / 1;
  }

  .service-body {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 18px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    border-radius: 6px;
  }

  .service-icon svg {
    width: 30px;
    height: 30px;
  }

  .service-body h2 {
    margin: 0 0 6px;
    font-size: 21px;
  }

  .service-body p {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .link-arrow {
    margin-top: 2px;
    font-size: 13px;
  }

  .method-template-section,
  .building-template-section,
  .about-template-section,
  .realisations-template-section,
  .contact-template-section {
    padding: 30px 14px;
  }

  .method-template-panel,
  .building-template-panel,
  .about-template-panel,
  .realisations-template-panel,
  .contact-template-panel {
    width: 100%;
    padding: 22px 16px;
    border-radius: 7px;
  }

  .method-template-intro h2,
  .building-template-copy h2,
  .about-template-copy h2,
  .realisations-intro h2,
  .contact-template-info h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .method-template-intro .eyebrow,
  .building-template-copy .eyebrow,
  .about-template-copy .eyebrow,
  .realisations-intro .eyebrow,
  .contact-template-info .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0;
  }

  .method-template-intro p,
  .building-template-copy > p,
  .about-template-copy > p,
  .realisations-intro > p,
  .contact-template-info > p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.55;
  }

  .method-step-grid {
    gap: 12px;
  }

  .method-step-card,
  .method-project-card {
    padding: 18px;
    border-radius: 7px;
  }

  .method-step-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  .method-step-icon svg {
    width: 28px;
    height: 28px;
  }

  .method-step-card h3 {
    margin-bottom: 22px;
    font-size: 18px;
  }

  .method-step-card p,
  .method-step-card small,
  .method-project-card li,
  .method-project-note p {
    font-size: 13px;
  }

  .method-project-title {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 26px;
  }

  .method-project-title h3 {
    font-size: 20px;
  }

  .method-photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .building-profile-list {
    border-radius: 7px;
  }

  .building-profile-card {
    grid-template-columns: 50px minmax(0, 1fr) 16px;
    min-height: 0;
    gap: 12px;
    padding: 16px 14px;
  }

  .building-profile-icon {
    width: 46px;
    height: 46px;
  }

  .building-profile-icon svg {
    width: 26px;
    height: 26px;
  }

  .building-profile-card h3 {
    font-size: 19px;
  }

  .building-profile-card p,
  .building-profile-card li {
    font-size: 12px;
  }

  .building-schema-card {
    padding: 22px 16px;
  }

  .building-stats-bar {
    padding: 14px;
  }

  .building-stat {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
  }

  .building-stat svg {
    width: 30px;
    height: 30px;
  }

  .about-template-image > img {
    aspect-ratio: 1.15 / 1;
  }

  .about-image-badge {
    position: static;
    min-width: 0;
    grid-template-columns: 48px minmax(0, 1fr);
    margin-top: 12px;
    padding: 14px;
  }

  .about-image-badge strong {
    font-size: 22px;
  }

  .about-benefit-list article {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 14px;
  }

  .about-benefit-icon {
    width: 46px;
    height: 46px;
  }

  .about-benefit-icon svg {
    width: 28px;
    height: 28px;
  }

  .about-benefit-list article > div {
    padding-left: 0;
    border-left: 0;
  }

  .about-benefit-list strong {
    font-size: 17px;
  }

  .about-cta-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .realisations-points {
    gap: 12px;
    margin-bottom: 20px;
  }

  .realisations-points article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .realisations-points article > span {
    width: 46px;
    height: 46px;
  }

  .realisations-carousel-slide {
    gap: 14px;
  }

  .realisation-card > img {
    aspect-ratio: 1.6 / 1;
  }

  .realisation-card-body {
    padding: 16px;
  }

  .realisation-card h3 {
    font-size: 20px;
  }

  .realisation-result {
    margin-top: 16px;
  }

  .realisations-testimonial {
    padding: 22px 18px;
  }

  .quote-mark {
    height: 44px;
    font-size: 72px;
  }

  .stars,
  .realisations-testimonial > p,
  .testimonial-divider,
  .testimonial-person {
    margin-bottom: 18px;
  }

  .contact-template-info,
  .contact-template-form {
    padding: 18px;
  }

  .contact-info-list a,
  .contact-info-list > div,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-list a,
  .contact-info-list > div {
    gap: 10px;
  }

  .contact-submit-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-submit-row .btn {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    padding: 9px 10px;
  }

  .brand img {
    width: 104px;
  }

  .header-actions .btn {
    padding: 8px 10px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .service-body {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 15px;
  }
}

/* Final override for the 2026 alarm diagnostic mockup. Kept at EOF so older alarm rules cannot win. */
body:has(.alarm-shortcuts) .alarm-template-copy {
  padding-right: 20px;
}

body:has(.alarm-shortcuts) .alarm-template-hero-inner,
body:has(.alarm-shortcuts) .alarm-template-media {
  min-height: 670px;
}

body:has(.alarm-shortcuts) .alarm-template-copy h1 {
  max-width: 690px;
  font-size: clamp(52px, 3.85vw, 66px);
}

body:has(.alarm-shortcuts) .alarm-shortcuts {
  margin-bottom: 62px;
}

body:has(.alarm-shortcuts) .alarm-template-page h2 {
  display: block;
  text-align: left;
}

body:has(.alarm-shortcuts) .alarm-risk-section,
body:has(.alarm-shortcuts) .alarm-building-section,
body:has(.alarm-shortcuts) .alarm-schema-section,
body:has(.alarm-shortcuts) .alarm-included-section,
body:has(.alarm-shortcuts) .alarm-modes-section,
body:has(.alarm-shortcuts) .alarm-equipment-section,
body:has(.alarm-shortcuts) .alarm-comparison-section,
body:has(.alarm-shortcuts) .alarm-faq-section {
  padding-top: 0;
  padding-bottom: 58px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body:has(.alarm-shortcuts) .alarm-building-section {
  display: block;
}

body:has(.alarm-shortcuts) .alarm-building-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 33px;
  align-items: stretch;
  margin-top: 30px;
}

body:has(.alarm-shortcuts) .alarm-recommendation-panel {
  width: auto;
  min-width: 0;
  min-height: 367px;
  padding: 35px 45px 32px;
}

body:has(.alarm-shortcuts) .alarm-recommendation-stack {
  min-width: 0;
}

body:has(.alarm-shortcuts) .alarm-recommendation-panel:not(.is-active) {
  display: none;
}

body:has(.alarm-shortcuts) .alarm-risk-card {
  min-height: 398px;
}

body:has(.alarm-shortcuts) .alarm-risk-card svg {
  margin-bottom: 52px;
}

body:has(.alarm-shortcuts) .alarm-risk-card p {
  margin-top: 25px;
}

body:has(.alarm-shortcuts) .alarm-recommendation-panel {
  min-height: 430px;
}

body:has(.alarm-shortcuts) .alarm-recommendation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 25px 50px;
}

body:has(.alarm-shortcuts) .alarm-recommendation-grid article {
  min-width: 0;
}

body:has(.alarm-shortcuts) .alarm-schema-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 18px;
}

body:has(.alarm-shortcuts) .alarm-schema-visual img {
  width: 100%;
  max-height: none;
  object-fit: contain;
}

body:has(.alarm-shortcuts) .alarm-schema-visual {
  overflow: hidden;
}

body:has(.alarm-shortcuts) .alarm-schema-visual img[src*="schema-protection-maison-3d"] {
  width: min(100%, 1120px);
  margin: 0 auto;
}

body:has(.alarm-shortcuts) .alarm-included-section {
  display: block;
}

body:has(.alarm-shortcuts) .alarm-included-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 20px;
}

body:has(.alarm-shortcuts) .alarm-included-grid article {
  min-height: 235px;
}

body:has(.alarm-shortcuts) .alarm-modes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

body:has(.alarm-shortcuts) .alarm-modes-grid article {
  min-height: 290px;
}

body:has(.alarm-shortcuts) .alarm-equipment-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

body:has(.alarm-shortcuts) .alarm-equipment-grid img {
  height: 255px;
}

body:has(.alarm-shortcuts) .alarm-equipment-grid div {
  min-height: 155px;
}

body:has(.alarm-shortcuts) .alarm-comparison-section {
  display: block;
}

body:has(.alarm-shortcuts) .alarm-faq-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 48px;
  align-items: start;
  min-height: 0;
}

body:has(.alarm-shortcuts) .alarm-faq-intro {
  max-width: 760px;
  margin: 10px 0 0;
  color: #4d5b76;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  body:has(.alarm-shortcuts) .alarm-building-layout,
  body:has(.alarm-shortcuts) .alarm-schema-layout,
  body:has(.alarm-shortcuts) .alarm-faq-section {
    grid-template-columns: 1fr;
  }

  body:has(.alarm-shortcuts) .alarm-included-grid,
  body:has(.alarm-shortcuts) .alarm-equipment-grid,
  body:has(.alarm-shortcuts) .alarm-modes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Full-width alternating bands for the alarm service page. */
body:has(.alarm-shortcuts) .alarm-template-page {
  width: 100%;
  margin: 0;
}

body:has(.alarm-shortcuts) .alarm-risk-section,
body:has(.alarm-shortcuts) .alarm-building-section,
body:has(.alarm-shortcuts) .alarm-schema-section,
body:has(.alarm-shortcuts) .alarm-included-section,
body:has(.alarm-shortcuts) .alarm-modes-section,
body:has(.alarm-shortcuts) .alarm-equipment-section,
body:has(.alarm-shortcuts) .alarm-comparison-section,
body:has(.alarm-shortcuts) .alarm-faq-section {
  box-sizing: border-box;
  width: 100%;
  padding: 62px var(--content-gutter);
}

body:has(.alarm-shortcuts) .alarm-risk-section,
body:has(.alarm-shortcuts) .alarm-schema-section,
body:has(.alarm-shortcuts) .alarm-modes-section,
body:has(.alarm-shortcuts) .alarm-comparison-section {
  background: #fff;
}

body:has(.alarm-shortcuts) .alarm-building-section,
body:has(.alarm-shortcuts) .alarm-included-section,
body:has(.alarm-shortcuts) .alarm-equipment-section,
body:has(.alarm-shortcuts) .alarm-faq-section {
  background: #f7f9fd;
}

body:has(.alarm-shortcuts) .alarm-risk-section {
  padding-top: 22px;
}

body:has(.alarm-shortcuts) .alarm-faq-section {
  padding-bottom: 74px;
}

body:has(.alarm-shortcuts) .alarm-shortcuts {
  margin-bottom: 0;
}

body:has(.alarm-shortcuts) .alarm-schema-visual img[src*="schema-protection-maison-3d"] {
  width: min(100%, 1180px);
}

body:has(.alarm-shortcuts) .alarm-schema-section {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .footer-cta-band {
    grid-template-columns: 1fr;
  }

  .footer-cta-actions {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .footer-cta-band,
  .footer-grid,
  .footer-bottom {
    width: calc(100% - 36px);
  }

  .footer-cta-band {
    padding: 42px 0 38px;
  }

  .footer-cta-copy h2 {
    font-size: 34px;
  }

  .footer-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-phone-btn,
  .footer-cta-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 38px 0 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-admin-grid {
    grid-template-columns: 1fr;
  }

  .cookie-preview-card {
    position: static;
  }

  .cookie-consent-banner {
    right: 18px;
    bottom: 18px;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .cookie-consent-actions .btn {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  body:has(.alarm-shortcuts) .alarm-risk-section,
  body:has(.alarm-shortcuts) .alarm-building-section,
  body:has(.alarm-shortcuts) .alarm-schema-section,
  body:has(.alarm-shortcuts) .alarm-included-section,
  body:has(.alarm-shortcuts) .alarm-modes-section,
  body:has(.alarm-shortcuts) .alarm-equipment-section,
  body:has(.alarm-shortcuts) .alarm-comparison-section,
  body:has(.alarm-shortcuts) .alarm-faq-section {
    padding-left: var(--content-gutter);
    padding-right: var(--content-gutter);
  }
}

/* Pixel-close videosurveillance page, template 2. */
body:has(.video-template-page) {
  background: #fff;
}

body:has(.video-template-page) > main {
  overflow: hidden;
}

.video-template-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 46% 54%;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0 48%, #f5f8fc 48% 100%);
}

.video-template-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 150px;
  background: linear-gradient(0deg, rgba(255,255,255,1), rgba(255,255,255,0));
  pointer-events: none;
}

.video-template-copy {
  position: relative;
  z-index: 3;
  padding: 76px 54px 72px var(--content-gutter);
}

.video-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.video-template-copy h1,
.video-template-page h2,
.video-template-page h3,
.video-template-page p,
.video-footer-cta h2,
.video-footer-cta p {
  margin: 0;
}

.video-template-copy h1 {
  max-width: 560px;
  color: var(--navy);
  font-size: 62px;
  line-height: 1.02;
  letter-spacing: 0;
}

.video-template-copy > p {
  max-width: 560px;
  margin-top: 22px;
  color: #3d4b69;
  font-size: 17px;
  line-height: 1.62;
}

.video-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.video-hero-minis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
  max-width: 620px;
}

.video-mini {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 56px;
}

.video-mini > span,
.video-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border-radius: 8px;
  background: #eef7ff;
  font-size: 20px;
  font-weight: 900;
}

.video-mini strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.25;
}

.video-mini small {
  display: block;
  margin-top: 3px;
  color: #53617a;
  font-size: 10px;
  line-height: 1.35;
}

.video-template-media {
  position: relative;
  z-index: 1;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

.video-template-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-template-media::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.86) 35%, rgba(255,255,255,0) 100%);
  width: 34%;
  pointer-events: none;
}

.video-shortcut {
  width: var(--content-wide);
  min-height: 94px;
  margin: -46px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid #dce5ef;
  border-radius: 6px;
  box-shadow: 0 24px 52px rgba(5, 22, 74, .14);
}

.video-shortcut article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 32px;
  border-right: 1px solid #dce5ef;
}

.video-shortcut article:last-child {
  border-right: 0;
}

.video-shortcut strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.video-shortcut p {
  margin-top: 4px;
  color: #53617a;
  font-size: 12px;
  line-height: 1.35;
}

.video-template-page {
  width: 100%;
  margin: 0;
}

.video-section {
  width: 100%;
  padding: 60px var(--content-gutter);
}

.video-section:nth-child(odd) {
  background: #fff;
}

.video-section:nth-child(even) {
  background: #f5f8fc;
}

.video-template-page h2 {
  max-width: 1180px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: 0;
}

.video-template-page h3 {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
}

.video-section-lead {
  max-width: 850px;
  margin: 14px 0 0;
  color: #53617a;
  font-size: 15px;
  line-height: 1.7;
}

.video-split {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 34px;
  margin-top: 30px;
}

.video-tabs {
  border: 1px solid #dce5ef;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.video-tabs button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  border: 0;
  border-bottom: 1px solid #dce5ef;
  color: var(--navy);
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.video-tabs button:last-child {
  border-bottom: 0;
}

.video-tabs button.is-active {
  color: #fff;
  background: var(--blue);
}

.video-recommend {
  display: none;
  min-height: 266px;
  padding: 30px;
  border: 1px solid #dce5ef;
  border-radius: 6px;
  background: #fff;
}

.video-recommend.is-active {
  display: block;
}

.video-recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 36px;
  margin-top: 24px;
}

.video-recommend-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
}

.video-check {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f5ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.video-recommend-item strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.video-recommend-item p {
  margin-top: 5px;
  color: #53617a;
  font-size: 12px;
  line-height: 1.45;
}

.video-diagram {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
}

.video-callouts {
  display: grid;
  gap: 13px;
}

.video-callout {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.video-num {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.video-callout strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.video-callout p {
  margin-top: 4px;
  color: #53617a;
  font-size: 11px;
  line-height: 1.35;
}

.video-camera-scene {
  height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    #09112d url("../img/video-surveillance-decision-scene-contained.png") center / contain no-repeat;
}

.video-camera-scene::before {
  content: none;
}

.video-detect-box {
  position: absolute;
  z-index: 1;
  padding: 5px 8px;
  border: 2px solid #19a26b;
  border-radius: 6px;
  color: #fff;
  background: rgba(25, 162, 107, .85);
  font-size: 12px;
  font-weight: 900;
}

.video-detect-box.one {
  left: 52%;
  top: 36%;
}

.video-detect-box.two {
  right: 16%;
  bottom: 21%;
  border-color: #e29b21;
  background: rgba(226, 155, 33, .9);
}

.video-phone-mock {
  width: 168px;
  height: 320px;
  margin: auto;
  padding: 22px 16px;
  border: 10px solid #111827;
  border-radius: 30px;
  color: #fff;
  background: #07112f;
  box-shadow: 0 22px 44px rgba(4, 16, 58, .2);
}

.video-phone-lock {
  width: 92px;
  height: 92px;
  margin: 32px auto 24px;
  display: grid;
  place-items: center;
  border: 8px solid rgba(25, 162, 107, .45);
  border-radius: 50%;
  color: #fff;
  background: #16894e;
  font-size: 34px;
}

.video-phone-mock p {
  color: #cfe7ff;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.video-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.video-card-grid {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.video-card-grid.is-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card-grid.is-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-card {
  min-height: 170px;
  padding: 26px;
  border: 1px solid #dce5ef;
  border-radius: 6px;
  background: #fff;
}

.video-card .video-icon {
  margin-bottom: 22px;
  border-radius: 4px;
}

.video-card strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.25;
}

.video-card p {
  margin-top: 10px;
  color: #53617a;
  font-size: 13px;
  line-height: 1.55;
}

.video-text-card {
  min-height: 190px;
}

.video-law-layout,
.video-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
  margin-top: 28px;
}

.video-law-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin-top: 26px;
}

.video-law-list article {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
}

.video-law-list strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.video-law-list p {
  margin-top: 5px;
  color: #53617a;
  font-size: 12.5px;
  line-height: 1.55;
}

.video-law-note {
  padding: 28px;
  border: 1px solid #dce5ef;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(4, 16, 58, .08);
}

.video-law-note strong {
  display: block;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}

.video-law-note p {
  margin-top: 12px;
  color: #53617a;
  font-size: 14px;
  line-height: 1.65;
}

.video-law-note .btn {
  margin-top: 20px;
}

.video-process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.video-process-steps article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid #dce5ef;
  border-radius: 6px;
  background: #fff;
}

.video-process-steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--magenta);
  font-weight: 900;
}

.video-process-steps strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
}

.video-process-steps p {
  margin-top: 9px;
  color: #53617a;
  font-size: 12.5px;
  line-height: 1.55;
}

.video-faq-list {
  display: grid;
  gap: 12px;
}

.video-faq-list details {
  border: 1px solid #dce5ef;
  border-radius: 6px;
  background: #fff;
}

.video-faq-list summary {
  padding: 18px 20px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.video-faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: #53617a;
  font-size: 13px;
  line-height: 1.65;
}

.video-footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 42px var(--content-gutter);
  color: #fff;
  background: var(--navy);
}

.video-footer-cta h2 {
  color: #fff;
  font-size: 34px;
  line-height: 1.1;
}

.video-footer-cta p {
  margin-top: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .video-template-hero,
  .video-split,
  .video-diagram {
    grid-template-columns: 1fr;
  }

  .video-template-copy {
    padding-right: var(--content-gutter);
  }

  .video-template-media {
    min-height: 420px;
  }

  .video-shortcut,
  .video-recommend-grid,
  .video-feature-grid,
  .video-card-grid.is-three,
  .video-card-grid.is-four,
  .video-law-list,
  .video-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-law-layout,
  .video-faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .video-template-hero,
  .video-template-copy,
  .video-template-media {
    max-width: 100vw;
  }

  .video-template-copy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .video-template-copy h1 {
    font-size: 44px;
  }

  .video-hero-minis,
  .video-shortcut,
  .video-recommend-grid,
  .video-feature-grid,
  .video-card-grid.is-three,
  .video-card-grid.is-four,
  .video-law-list,
  .video-process-steps {
    grid-template-columns: 1fr;
  }

  .video-shortcut article {
    border-right: 0;
    border-bottom: 1px solid #dce5ef;
  }

  .video-shortcut article:last-child {
    border-bottom: 0;
  }

  .video-footer-cta {
    align-items: stretch;
    flex-direction: column;
  }
}
/* Pixel-close control access page */
body:has(.access-template-page) {
  background: #fff;
}

.access-template-page {
  --access-navy: #070b3f;
  --access-blue: #0879c4;
  --access-pink: #e5004f;
  --access-soft: #f4f8fc;
  --access-line: #d9e3ef;
  --access-muted: #54627b;
  --access-green: #19a66a;
  --access-amber: #e2a331;
  color: var(--access-navy);
  overflow: hidden;
}

.access-template-page h1,
.access-template-page h2,
.access-template-page h3,
.access-template-page p {
  margin: 0;
}

.access-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--access-pink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.access-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 47% 53%;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0 48%, var(--access-soft) 48% 100%);
}

.access-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 150px;
  background: linear-gradient(0deg, rgba(255,255,255,1), rgba(255,255,255,0));
  pointer-events: none;
}

.access-hero-copy {
  position: relative;
  z-index: 3;
  padding: 76px 58px 74px var(--content-gutter);
}

.access-hero h1 {
  max-width: 650px;
  font-size: clamp(44px, 3.05vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.access-hero p {
  max-width: 610px;
  margin-top: 22px;
  color: #3e4b67;
  font-size: 17px;
  line-height: 1.62;
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.access-actions .btn {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
}

.access-hero-minis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 620px;
  margin-top: 48px;
}

.access-mini {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
}

.access-mini > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--access-blue);
  border-radius: 8px;
  background: #ecf7ff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
}

.access-mini strong {
  display: block;
  color: var(--access-navy);
  font-size: 12px;
  line-height: 1.25;
}

.access-mini small {
  display: block;
  margin-top: 3px;
  color: var(--access-muted);
  font-size: 10px;
  line-height: 1.35;
}

.access-hero-media {
  position: relative;
  z-index: 1;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

.access-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.access-hero-media::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.86) 35%, rgba(255,255,255,0) 100%);
}

.access-shortcut {
  width: var(--content-wide);
  min-height: 94px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -46px auto 0;
  background: #fff;
  border: 1px solid var(--access-line);
  border-radius: 6px;
  box-shadow: 0 22px 54px rgba(6,22,72,.14);
}

.access-shortcut article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  padding: 21px 30px;
  border-right: 1px solid var(--access-line);
}

.access-shortcut article:last-child {
  border-right: 0;
}

.access-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--access-blue);
  background: #ecf7ff;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .02em;
}

.access-shortcut strong,
.access-card strong {
  display: block;
  color: var(--access-navy);
  font-size: 15px;
  line-height: 1.25;
}

.access-shortcut p {
  margin-top: 4px;
  color: var(--access-muted);
  font-size: 12px;
  line-height: 1.35;
}

.access-section {
  padding: 58px max(78px, calc((100vw - 1660px) / 2));
  background: #fff;
}

.access-section.access-alt {
  background: var(--access-soft);
}

.access-section h2 {
  max-width: 1120px;
  font-size: clamp(30px, 1.78vw, 34px);
  line-height: 1.1;
  letter-spacing: 0;
}

.access-lead {
  max-width: 920px;
  margin-top: 14px;
  color: var(--access-muted);
  font-size: 15px;
  line-height: 1.68;
}

.access-card-grid {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.access-card-grid.is-four {
  grid-template-columns: repeat(4, 1fr);
}

.access-card-grid.is-three {
  grid-template-columns: repeat(3, 1fr);
}

.access-card {
  min-height: 196px;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--access-line);
  border-radius: 7px;
}

.access-card strong {
  margin-top: 18px;
  font-size: 17px;
}

.access-card p {
  margin-top: 10px;
  color: var(--access-muted);
  font-size: 13px;
  line-height: 1.56;
}

.access-flow {
  display: grid;
  grid-template-columns: 330px 1fr 330px;
  gap: 28px;
  align-items: stretch;
  margin-top: 32px;
}

.access-flow-panel {
  padding: 27px;
  border: 1px solid var(--access-line);
  border-radius: 7px;
  background: #fff;
}

.access-flow-panel h3 {
  font-size: 22px;
  line-height: 1.15;
}

.access-flow-list {
  display: grid;
  gap: 13px;
  margin-top: 22px;
}

.access-flow-list div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--access-navy);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.36;
}

.access-num {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--access-blue);
  border-radius: 50%;
  font-weight: 950;
}

.access-door-scene {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--access-line);
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fbff, #e6f1fa);
}

.access-scene-door {
  position: absolute;
  left: 84px;
  bottom: 0;
  width: 260px;
  height: 350px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(90deg, #151d34, #2a3554);
  box-shadow: 0 32px 70px rgba(7,11,63,.18);
}

.access-scene-door::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 160px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dce5ef;
}

.access-reader {
  position: absolute;
  left: 400px;
  top: 118px;
  width: 92px;
  height: 138px;
  border: 8px solid #11172d;
  border-radius: 14px;
  background: #07102c;
}

.access-reader::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--access-green);
  box-shadow: 0 0 0 8px rgba(25,166,106,.18);
}

.access-reader::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 22px;
  height: 8px;
  border-radius: 10px;
  background: #dce5ef;
}

.access-badge {
  position: absolute;
  left: 535px;
  top: 150px;
  width: 148px;
  height: 90px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--access-line);
  box-shadow: 0 22px 46px rgba(7,11,63,.18);
  transform: rotate(-8deg);
}

.access-badge::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e7f5ff;
}

.access-badge::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 25px;
  width: 58px;
  height: 8px;
  border-radius: 10px;
  background: var(--access-blue);
  box-shadow: 0 18px 0 #dce5ef;
}

.access-status {
  position: absolute;
  left: 398px;
  top: 288px;
  padding: 9px 14px;
  color: #fff;
  border-radius: 999px;
  background: var(--access-green);
  font-size: 12px;
  font-weight: 900;
}

.access-scene-card {
  position: absolute;
  right: 58px;
  top: 68px;
  width: 300px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--access-line);
  box-shadow: 0 24px 48px rgba(7,11,63,.14);
}

.access-scene-card strong {
  display: block;
  font-size: 19px;
}

.access-scene-card p {
  margin-top: 9px;
  color: var(--access-muted);
  font-size: 13px;
  line-height: 1.56;
}

.access-zone-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  margin-top: 32px;
}

.access-building-tabs {
  overflow: hidden;
  border: 1px solid var(--access-line);
  border-radius: 7px;
  background: #fff;
}

.access-building-tabs button {
  width: 100%;
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  border-bottom: 1px solid var(--access-line);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  color: var(--access-navy);
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}

.access-building-tabs button:hover {
  background: #f8fbff;
}

.access-building-tabs button.is-active {
  color: #fff;
  background: var(--access-blue);
}

.access-building-tabs button:last-child {
  border-bottom: 0;
}

.access-building-tabs button.is-active .access-tab-state {
  color: #fff;
}

.access-tab-state {
  color: var(--access-muted);
  font-size: 13px;
  font-weight: 950;
}

.access-zone-map {
  min-height: 512px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--access-line);
  border-radius: 8px;
  background: #fff;
}

.access-floorplan {
  position: relative;
  min-height: 456px;
  background: #f1f6fb;
  border: 1px solid var(--access-line);
  border-radius: 8px;
  overflow: hidden;
}

.access-floorplan-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity .18s ease, transform .18s ease;
}

.access-floorplan-img.is-active {
  opacity: 1;
  transform: scale(1);
}

.access-point-labels {
  display: none;
}

.access-point-labels.is-active {
  display: block;
}

.point-label {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 190px;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--access-navy);
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--access-line);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(7,11,63,.08);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  pointer-events: none;
}

.point-label b {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--access-blue);
  border-radius: 50%;
  font-size: 10px;
}

.point-label-1 { left: 42%; top: 60%; }
.point-label-2 { left: 39%; top: 31%; }
.point-label-3 { right: 22px; top: 62%; }
.point-label-4 { right: 28px; top: 18%; }

.access-map-summary {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.access-map-summary.is-active {
  display: grid;
}

.access-map-summary div {
  min-height: 54px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--access-line);
  border-radius: 7px;
  box-shadow: 0 10px 20px rgba(7,11,63,.06);
}

.access-map-summary span {
  display: block;
  color: var(--access-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.access-map-summary strong {
  display: block;
  margin-top: 3px;
  color: var(--access-navy);
  font-size: 12px;
  line-height: 1.25;
}

.access-point-explainers {
  grid-column: 2;
}

.access-point-explainer {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.access-point-explainer.is-active {
  display: grid;
}

.access-point-explainer article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--access-line);
  border-radius: 7px;
}

.access-point-explainer article > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--access-blue);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 950;
}

.access-point-explainer strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

.access-point-explainer p {
  margin-top: 4px;
  color: var(--access-muted);
  font-size: 11px;
  line-height: 1.42;
}

.access-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: #fff;
  background: var(--access-blue);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.access-rights-card h3 {
  margin-top: 16px;
  font-size: 22px;
}

.access-rights-panel {
  display: none;
}

.access-rights-panel.is-active {
  display: block;
}

.access-rights-card p {
  margin-top: 10px;
  color: var(--access-muted);
  font-size: 13px;
  line-height: 1.58;
}

.access-rights-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.access-rights-list div {
  padding: 15px;
  border: 1px solid var(--access-line);
  border-radius: 6px;
  background: #f8fbff;
}

.access-rights-list strong {
  display: block;
  font-size: 14px;
}

.access-rights-list span {
  display: block;
  margin-top: 4px;
  color: var(--access-muted);
  font-size: 12px;
  line-height: 1.42;
}

.access-matrix {
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
  border-collapse: collapse;
  border: 1px solid var(--access-line);
  border-radius: 7px;
  background: #fff;
  font-size: 13px;
}

.access-matrix th,
.access-matrix td {
  padding: 16px 18px;
  border-right: 1px solid var(--access-line);
  border-bottom: 1px solid var(--access-line);
  text-align: center;
}

.access-matrix th:first-child,
.access-matrix td:first-child {
  text-align: left;
  font-weight: 900;
}

.access-matrix th {
  background: #f8fbff;
}

.access-matrix .yes {
  color: var(--access-blue);
  font-weight: 950;
}

.access-matrix .dash {
  color: #9aa7b8;
  font-weight: 950;
}

.access-pro-layout {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 32px;
  margin-top: 32px;
  align-items: start;
}

.access-timeline {
  display: grid;
  gap: 16px;
}

.access-timeline article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--access-line);
  border-radius: 7px;
  background: #fff;
}

.access-timeline strong {
  display: block;
  font-size: 17px;
}

.access-timeline p {
  margin-top: 7px;
  color: var(--access-muted);
  font-size: 13px;
  line-height: 1.56;
}

.access-conversion-card {
  padding: 30px;
  color: #fff;
  background: var(--access-navy);
  border-radius: 8px;
}

.access-conversion-card h3 {
  color: #fff;
  font-size: 26px;
  line-height: 1.15;
}

.access-conversion-card p {
  margin-top: 14px;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  line-height: 1.64;
}

.access-conversion-card .btn {
  margin-top: 22px;
}

.access-process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.access-process-grid article {
  min-height: 156px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--access-line);
  border-radius: 7px;
}

.access-process-grid span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: #fff;
  background: var(--access-pink);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 950;
}

.access-process-grid strong {
  display: block;
  font-size: 15px;
}

.access-process-grid p {
  margin-top: 8px;
  color: var(--access-muted);
  font-size: 12px;
  line-height: 1.5;
}

.access-faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-top: 30px;
}

.access-faq-list details {
  border: 1px solid var(--access-line);
  border-radius: 7px;
  background: #fff;
}

.access-faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--access-navy);
  font-size: 14px;
  font-weight: 900;
}

.access-faq-list p {
  padding: 0 20px 18px;
  color: var(--access-muted);
  font-size: 13px;
  line-height: 1.65;
}

.access-final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 44px max(78px, calc((100vw - 1660px) / 2));
  color: #fff;
  background: var(--access-navy);
}

.access-final-cta h2 {
  color: #fff;
  font-size: 34px;
  line-height: 1.12;
}

.access-final-cta p {
  margin-top: 8px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .access-hero,
  .access-flow,
  .access-zone-layout,
  .access-zone-map,
  .access-pro-layout {
    grid-template-columns: 1fr;
  }

  .access-point-explainers {
    grid-column: auto;
  }

  .access-point-explainer {
    grid-template-columns: repeat(2, 1fr);
  }

  .access-hero-copy {
    padding: 54px 28px;
  }

  .access-hero-media {
    min-height: 380px;
  }

  .access-shortcut,
  .access-card-grid.is-four,
  .access-card-grid.is-three,
  .access-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .access-section,
  .access-final-cta {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 720px) {
  .access-hero {
    min-height: auto;
  }

  .access-hero h1 {
    font-size: 40px;
  }

  .access-shortcut,
  .access-hero-minis,
  .access-card-grid.is-four,
  .access-card-grid.is-three,
  .access-process-grid {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }

  .access-hero-minis {
    width: 100%;
    margin-top: 34px;
    gap: 16px;
  }

  .access-shortcut {
    margin-top: 0;
  }

  .access-shortcut article {
    border-right: 0;
    border-bottom: 1px solid var(--access-line);
  }

  .access-final-cta {
    display: grid;
  }

  .access-point-explainer {
    grid-template-columns: 1fr;
  }

  .point-label {
    display: none;
  }
}

/* Mobile QA fixes: keep service pages within the viewport. */
@media (max-width: 720px) {
  body:has(.alarm-shortcuts) .alarm-template-hero-inner,
  body:has(.alarm-shortcuts) .alarm-template-media {
    min-height: 0;
  }

  body:has(.alarm-shortcuts) .alarm-template-hero-inner {
    width: var(--content-wide);
    grid-template-columns: 1fr;
  }

  body:has(.alarm-shortcuts) .alarm-template-copy {
    grid-column: auto;
    padding-right: 0;
  }

  body:has(.alarm-shortcuts) .alarm-template-media {
    grid-column: auto;
    width: 100%;
    min-height: 310px;
  }

  body:has(.alarm-shortcuts) .alarm-template-copy h1 {
    max-width: 100%;
    font-size: 40px;
  }

  body:has(.alarm-shortcuts) .alarm-building-layout,
  body:has(.alarm-shortcuts) .alarm-recommendation-grid,
  body:has(.alarm-shortcuts) .alarm-schema-layout,
  body:has(.alarm-shortcuts) .alarm-included-grid,
  body:has(.alarm-shortcuts) .alarm-modes-grid,
  body:has(.alarm-shortcuts) .alarm-equipment-grid,
  body:has(.alarm-shortcuts) .alarm-faq-section {
    grid-template-columns: 1fr;
  }

  body:has(.alarm-shortcuts) .alarm-recommendation-panel {
    min-height: 0;
    padding: 24px 18px;
  }

  body:has(.alarm-shortcuts) .alarm-recommendation-grid {
    gap: 18px;
  }

  body:has(.alarm-shortcuts) .alarm-recommendation-grid article,
  body:has(.alarm-shortcuts) .alarm-recommendation-grid strong,
  body:has(.alarm-shortcuts) .alarm-recommendation-grid p,
  body:has(.alarm-shortcuts) .alarm-note {
    min-width: 0;
    max-width: 100%;
  }

  body:has(.alarm-shortcuts) .alarm-note {
    margin-left: 0;
  }

  body:has(.alarm-shortcuts) .alarm-included-grid article,
  body:has(.alarm-shortcuts) .alarm-modes-grid article {
    min-height: 0;
  }

  body:has(.alarm-shortcuts) .alarm-equipment-grid img {
    height: 220px;
  }

  .alarm-comparison-table {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .alarm-comparison-table table {
    min-width: 620px;
  }

  .access-door-scene {
    min-height: 320px;
  }

  .access-scene-door {
    left: 34px;
    width: 164px;
    height: 252px;
  }

  .access-reader {
    left: 218px;
    top: 100px;
    width: 72px;
    height: 108px;
  }

  .access-badge {
    left: 258px;
    top: 138px;
    width: 88px;
    height: 62px;
  }

  .access-status {
    left: 218px;
    top: 230px;
  }

  .access-scene-card {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 28px);
    margin: 18px 14px 0 auto;
  }

  .access-matrix {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .access-matrix tbody,
  .access-matrix thead,
  .access-matrix tr {
    width: max-content;
  }

  .two-factor-setup {
    align-items: flex-start;
    flex-direction: column;
  }

}
