/*
Theme Name: Dr. Alarm
Theme URI: https://example.com/dralarm
Author: OpenAI Codex
Author URI: https://openai.com
Description: Gutenberg-friendly marketing theme for the Dr. Alarm site conversion.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
Text Domain: dralarm
Domain Path: /languages
*/

:root {
  --dralarm-bg: #f7f7f6;
  --dralarm-surface: #ffffff;
  --dralarm-surface-muted: #f3f4f6;
  --dralarm-text: #111111;
  --dralarm-text-muted: #5e6673;
  --dralarm-border: #dee1e6;
  --dralarm-primary: #df2c33;
  --dralarm-primary-dark: #be1c24;
  --dralarm-shadow: 0 24px 56px rgba(15, 23, 42, 0.08);
  --dralarm-radius-lg: 28px;
  --dralarm-radius-md: 18px;
  --dralarm-radius-sm: 12px;
  --dralarm-max-width: 80rem;
  --dralarm-products-width: 80rem;
}

@keyframes dralarm-pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 8px 0 rgba(223, 44, 51, 0.38);
  }
  50% {
    box-shadow: 0 0 20px 4px rgba(223, 44, 51, 0.56);
  }
}

@keyframes dralarm-ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dralarm-text);
  background: var(--dralarm-bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(222, 225, 230, 0.8);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header__inner,
.site-footer__inner,
.entry-content > .alignwide,
.entry-content > .alignfull > .wp-block-group__inner-container,
.entry-content > .wp-block-group.alignwide > .wp-block-group__inner-container {
  width: min(calc(100% - 32px), var(--dralarm-max-width));
  margin-left: auto;
  margin-right: auto;
}

.entry-content > .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-branding__badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dralarm-primary);
  color: #fff;
}

.site-branding__icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.site-branding__name {
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
}

.primary-nav ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav li {
  position: relative;
}

.primary-nav li.menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--dralarm-text-muted);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a,
.primary-nav .current-menu-ancestor > a {
  background: rgba(223, 44, 51, 0.1);
  color: var(--dralarm-primary);
}

.primary-nav .menu-item-has-children > a {
  gap: 8px;
}

.primary-nav .menu-item-has-children > a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.primary-nav .menu-item-has-children:hover > a::after,
.primary-nav .menu-item-has-children:focus-within > a::after,
.primary-nav .menu-item-has-children.is-submenu-open > a::after {
  transform: rotate(225deg) translateY(-1px);
}

.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--dralarm-border);
  border-radius: 18px;
  box-shadow: var(--dralarm-shadow);
  z-index: 25;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.primary-nav .sub-menu a {
  width: 100%;
  min-height: 44px;
  justify-content: flex-start;
  border-radius: 12px;
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu,
.primary-nav li.is-submenu-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-nav__submenu-toggle {
  display: none;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--dralarm-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(223, 44, 51, 0.22);
}

.site-header__cta--mobile {
  display: none;
}

.primary-nav .site-header__cta--mobile {
  display: none;
}

.site-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 20px 0 0;
}

.entry-content > * {
  margin-top: 0;
  margin-bottom: 0;
}

.dralarm-marketing-page .site-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 0;
}

.dralarm-marketing-page .entry-content > * + * {
  margin-top: 0;
}

.dralarm-marketing-page .site-footer {
  margin-top: 0;
}

.dralarm-section {
  border-radius: var(--dralarm-radius-lg);
  padding: 32px;
  overflow: hidden;
}

.dralarm-section--light {
  background: var(--dralarm-surface);
  border: 1px solid var(--dralarm-border);
  box-shadow: var(--dralarm-shadow);
}

.dralarm-section--muted {
  background: linear-gradient(180deg, #f6f6f5 0%, #f1f2f4 100%);
  border: 1px solid rgba(222, 225, 230, 0.8);
}

.dralarm-section--dark {
  background: #121315;
  color: #fff;
}

.dralarm-eyebrow,
.entry-content .has-dralarm-eyebrow-color {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.77rem;
  font-weight: 800;
  color: var(--dralarm-primary);
}

.has-text-align-center.dralarm-eyebrow {
  display: block;
  width: 100%;
}

.dralarm-display {
  margin: 16px 0;
  font-size: 5rem;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.dralarm-display em {
  font-style: normal;
  color: var(--dralarm-primary);
}

.dralarm-display--muted {
  color: #8a8f98;
}

.dralarm-shell {
  width: min(calc(100% - 64px), var(--dralarm-max-width));
  margin-left: auto;
  margin-right: auto;
}

.dralarm-lead {
  font-size: 1.08rem;
  max-width: 40rem;
  color: var(--dralarm-text-muted);
}

.dralarm-home-ticker {
  margin-bottom: 0;
  padding: 8px 0;
  border-top: 1px solid rgba(222, 225, 230, 0.7);
  border-bottom: 1px solid rgba(222, 225, 230, 0.7);
  background: #f8f8f9;
}

.dralarm-home-ticker .wp-block-group__inner-container {
  width: 100%;
  max-width: none;
}

.dralarm-home-band {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 96px 0;
}

.dralarm-home-band .wp-block-group__inner-container {
  width: min(calc(100% - 48px), var(--dralarm-max-width));
}

.dralarm-home-band--muted {
  background: #f5f6f8;
}

.dralarm-home-band--light {
  background: #ffffff;
}

.dralarm-home-band--cta {
  padding: 128px 0;
}

.dralarm-home-columns {
  gap: 24px;
}

.dralarm-home-columns--coverage {
  gap: 54px;
}

.dralarm-home-columns--four {
  margin-top: 30px;
}

.dralarm-home-columns--four .wp-block-column > .dralarm-card {
  background: #ffffff;
  border-color: #d9dee5;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);
}

.dralarm-home-columns--four .wp-block-column > .dralarm-card:hover {
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.05);
  border-color: #d4dae1;
}

.dralarm-home-columns--four .dralarm-icon-chip {
  background: #fdecef;
  color: #eb252d;
}

.dralarm-home-columns--four .dralarm-icon-svg {
  width: 23px;
  height: 23px;
  stroke-width: 2;
}

.dralarm-home-columns--four .dralarm-card .wp-block-heading {
  color: #151b2c;
}

.dralarm-home-columns--four .dralarm-card p {
  color: #616a79;
  line-height: 1.55;
}

.dralarm-home-band--muted .dralarm-display--muted {
  color: #9aa2af;
}



.dralarm-ticker {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  width: min(calc(100% - 32px), var(--dralarm-max-width));
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.dralarm-ticker__label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  margin-right: 12px;
  border-right: 1px solid var(--dralarm-border);
  color: var(--dralarm-primary);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dralarm-status-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--dralarm-primary);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dralarm-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--dralarm-primary);
  box-shadow: 0 0 0 6px rgba(223, 44, 51, 0.08);
}

.dralarm-ticker__viewport {
  flex: 1 1 auto;
  overflow: hidden;
  white-space: nowrap;
}

.dralarm-ticker__track {
  display: inline-flex;
  gap: 48px;
  padding-right: 48px;
  color: #98a0aa;
  font-size: 0.72rem;
  animation: dralarm-ticker-scroll 30s linear infinite;
}

.dralarm-ticker__track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dralarm-ticker__item-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.dralarm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.dralarm-button:hover {
  transform: translateY(-1px);
}

.dralarm-button--primary {
  background: var(--dralarm-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(223, 44, 51, 0.22);
  animation: dralarm-pulse-glow 2s ease-in-out infinite;
}

.dralarm-button--secondary {
  border: 1px solid var(--dralarm-border);
  background: transparent;
  color: var(--dralarm-text);
}

.dralarm-button--primary span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dralarm-button-primary--arrow::after,
.dralarm-button-secondary--arrow::after,
.dralarm-home-hero .dralarm-button--primary::after {
  content: "→";
  margin-left: 10px;
  font-size: 1.05rem;
  line-height: 1;
}

.dralarm-hero-stage {
  position: relative;
  min-height: 860px;
  overflow: hidden;
}

.dralarm-hero-stage__media,
.dralarm-hero-stage__veil {
  position: absolute;
  inset: 0;
}

.dralarm-hero-stage__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dralarm-hero-stage__veil--horizontal {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 28%, rgba(255, 255, 255, 0.42) 58%, rgba(255, 255, 255, 0.12) 100%);
}

.dralarm-hero-stage__veil--vertical {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.14) 72%, rgba(255, 255, 255, 0.96) 100%);
}

.dralarm-hero-stage__shell {
  position: relative;
  z-index: 1;
}

.dralarm-hero-stage__content {
  max-width: 38rem;
  padding: 100px 0 110px;
}

.dralarm-hero-stage__title {
  max-width: 13ch;
  margin: 12px 0 18px;
  font-size: 5rem;
  line-height: 0.9;
}

.dralarm-hero-stage .dralarm-lead {
  max-width: 32rem;
  font-size: 1rem;
}

.dralarm-hero {
  position: relative;
  min-height: 1040px;
  display: flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.dralarm-hero--photo .wp-block-group__inner-container {
  position: relative;
  width: 100%;
  min-height: inherit;
}

.dralarm-hero__media {
  position: absolute;
  inset: -1px;
  overflow: hidden;
  border-radius: inherit;
}

.dralarm-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dralarm-hero__veil {
  position: absolute;
  inset: 0;
}

.dralarm-hero__veil--horizontal {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.82) 32%, rgba(255, 255, 255, 0.26) 62%, rgba(255, 255, 255, 0.08) 100%);
}

.dralarm-hero__veil--vertical {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0.08) 70%, rgba(255, 255, 255, 0.9) 100%);
}

.dralarm-hero__content {
  position: relative;
  z-index: 1;
  max-width: 45rem;
  padding: 270px 0 160px;
}

.dralarm-hero__title {
  max-width: 12ch;
  font-size: 6.25rem;
}

.dralarm-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.wp-block-button__link.dralarm-button-primary,
.wp-element-button.dralarm-button-primary {
  background: var(--dralarm-primary);
  color: #fff;
  border-radius: 999px;
  min-height: 56px;
  padding: 16px 30px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(223, 44, 51, 0.22);
  animation: dralarm-pulse-glow 2s ease-in-out infinite;
}

.wp-block-button__link.dralarm-button-secondary,
.wp-element-button.dralarm-button-secondary {
  background: transparent;
  color: var(--dralarm-text);
  border-radius: 999px;
  border: 1px solid var(--dralarm-border);
  min-height: 56px;
  padding: 16px 30px;
  font-weight: 700;
}

.dralarm-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(222, 225, 230, 0.9);
}

.dralarm-stat {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.dralarm-stat strong {
  display: block;
  font-size: 1.95rem;
  line-height: 1;
  font-weight: 900;
}

.dralarm-stat span {
  display: block;
  margin-top: 6px;
  color: var(--dralarm-text-muted);
  font-size: 0.88rem;
}

.dralarm-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.dralarm-card-grid--compact {
  gap: 16px;
}

.dralarm-card {
  background: var(--dralarm-surface);
  border: 1px solid var(--dralarm-border);
  border-radius: var(--dralarm-radius-md);
  padding: 30px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dralarm-card:hover,
.dralarm-region-card:hover,
.dralarm-package-card:hover,
.dralarm-list-card:hover,
.dralarm-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(223, 44, 51, 0.2);
}

.dralarm-card h3,
.dralarm-card h4,
.dralarm-card .wp-block-heading {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.dralarm-card p {
  margin: 0;
  color: var(--dralarm-text-muted);
}

.dralarm-icon-chip {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(223, 44, 51, 0.1);
  color: var(--dralarm-primary);
  font-size: 1.3rem;
  font-weight: 800;
}

.dralarm-icon-svg {
  width: 24px;
  height: 24px;
  display: block;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.dralarm-testimonial {
  background: #f8f8f8;
}

.dralarm-rating {
  display: flex;
  gap: 4px;
  margin-top: 22px;
  margin-bottom: 12px;
  color: var(--dralarm-primary);
  line-height: 1;
}

.dralarm-rating svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.6;
}

.dralarm-quote-mark {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(223, 44, 51, 0.35);
}

.dralarm-quote-mark svg {
  width: 30px;
  height: 30px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.dralarm-person {
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 800;
}

.dralarm-person-location {
  margin-top: 2px !important;
  color: var(--dralarm-text-muted);
  font-weight: 500;
  font-size: 0.82rem;
}

.dralarm-region-card {
  background: var(--dralarm-surface);
  border-radius: var(--dralarm-radius-md);
  border: 1px solid var(--dralarm-border);
  padding: 24px;
}

.dralarm-region-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.dralarm-region-pin {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dralarm-primary);
}

.dralarm-region-pin svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.dralarm-region-card strong {
  display: block;
  color: var(--dralarm-primary);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dralarm-region-card h4 {
  margin: 10px 0 6px;
  font-size: 1.2rem;
}

.dralarm-region-card p {
  margin: 0;
  color: var(--dralarm-text-muted);
}

.dralarm-coverage-preview > .wp-block-group__inner-container > .wp-block-columns {
  align-items: center;
  gap: 54px;
}

.dralarm-feature-grid,
.dralarm-package-grid,
.dralarm-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.dralarm-package-card,
.dralarm-stat-card,
.dralarm-list-card {
  background: var(--dralarm-surface);
  border: 1px solid var(--dralarm-border);
  border-radius: var(--dralarm-radius-md);
  padding: 24px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
}

.dralarm-stat-card strong {
  display: block;
  color: var(--dralarm-text);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.dralarm-stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--dralarm-text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.dralarm-package-card.is-featured {
  border-color: rgba(223, 44, 51, 0.28);
  background: linear-gradient(180deg, rgba(223, 44, 51, 0.05), #ffffff);
}

.dralarm-package-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #545c67;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dralarm-package-card.is-featured .dralarm-package-card__label {
  background: rgba(223, 44, 51, 0.1);
  color: var(--dralarm-primary);
}

.dralarm-package-card h3,
.dralarm-package-card h4,
.dralarm-list-card h3,
.dralarm-list-card h4,
.dralarm-stat-card h3,
.dralarm-stat-card h4 {
  margin: 0 0 10px;
}

.dralarm-price {
  display: block;
  margin-bottom: 16px;
  color: var(--dralarm-primary);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.dralarm-check-list,
.dralarm-stack-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dralarm-check-list li,
.dralarm-stack-list li {
  position: relative;
  padding-left: 22px;
  color: var(--dralarm-text-muted);
}

.dralarm-check-list li + li,
.dralarm-stack-list li + li {
  margin-top: 10px;
}

.dralarm-check-list li::before,
.dralarm-stack-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--dralarm-primary);
  font-weight: 900;
}

.dralarm-product-grid {
  margin-top: 28px;
}

.dralarm-products-page {
  background: #ffffff;
  padding: 88px 0 96px;
}

.dralarm-products-page > .wp-block-group__inner-container {
  width: min(calc(100% - 48px), var(--dralarm-products-width));
  margin-left: auto;
  margin-right: auto;
}

.entry-content .dralarm-section > .wp-block-group__inner-container > .wp-block-columns,
.entry-content .dralarm-section > .wp-block-group__inner-container > .wp-block-html,
.entry-content .dralarm-section > .wp-block-group__inner-container > .wp-block-shortcode,
.entry-content .dralarm-products-page > .wp-block-group__inner-container > .wp-block-dralarm-products-grid {
  width: 100%;
  max-width: none !important;
}

.dralarm-products-page .dralarm-lead {
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.dralarm-products-page .dralarm-display {
  max-width: 15ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 4.9rem;
  line-height: 0.95;
}

.dralarm-products-page .dralarm-eyebrow {
  margin-bottom: 6px;
}

.dralarm-products-page .dralarm-button-row {
  margin-top: 16px;
}

.dralarm-product-card {
  overflow: hidden;
  padding: 0;
  border-radius: 16px;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dralarm-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(223, 44, 51, 0.2);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.dralarm-product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 34px 32px;
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.dralarm-product-image {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.dralarm-product-card:hover .dralarm-product-image {
  transform: scale(1.04);
}

.dralarm-product-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 24px;
  background: rgba(223, 44, 51, 0.08);
  color: var(--dralarm-primary);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.dralarm-product-card__body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  min-height: 270px;
}

.dralarm-product-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.dralarm-product-card__header .dralarm-price {
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.dralarm-product-card__header h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.dralarm-product-description {
  margin: 0 0 18px;
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--dralarm-text-muted);
  flex: 1 1 auto;
}

.dralarm-product-details {
  border-top: 1px solid rgba(17, 17, 17, 0.07);
  padding-top: 14px;
  margin-top: auto;
}

.dralarm-product-details summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--dralarm-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  list-style: none;
}

.dralarm-product-details summary::-webkit-details-marker {
  display: none;
}

.dralarm-product-details summary::after {
  content: "›";
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.dralarm-product-details[open] summary::after {
  transform: rotate(90deg);
}

.dralarm-product-specs {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.dralarm-product-spec {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.78rem;
}

.dralarm-product-spec__label {
  color: #98a0aa;
}

.dralarm-product-spec__value {
  color: #4b5563;
  font-weight: 600;
  text-align: right;
}

.dralarm-product-details .dralarm-check-list,
.dralarm-product-details .dralarm-product-specs {
  margin-top: 16px;
}

.dralarm-about-hero,
.dralarm-about-philosophy,
.dralarm-about-story,
.dralarm-about-cta {
  background: #ffffff;
}

.dralarm-about-hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 110px;
}

.dralarm-about-hero > .wp-block-group__inner-container,
.dralarm-about-philosophy > .wp-block-group__inner-container,
.dralarm-about-story > .wp-block-group__inner-container,
.dralarm-about-cta > .wp-block-group__inner-container {
  width: min(calc(100% - 48px), 80rem);
  margin-left: auto;
  margin-right: auto;
}

.dralarm-about-hero__bg {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0.1;
}

.dralarm-about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dralarm-about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 36%, rgba(255, 255, 255, 1) 100%);
}

.dralarm-about-hero__content {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 0 auto;
}

.dralarm-about-hero .dralarm-display {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}

.dralarm-about-hero .dralarm-lead {
  max-width: 38rem;
  font-size: 1.05rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.dralarm-about-philosophy {
  padding: 72px 0 92px;
}

.dralarm-about-philosophy__columns {
  gap: 64px;
  align-items: center;
}

.dralarm-about-philosophy__image img {
  width: 100%;
  border-radius: 22px;
}

.dralarm-about-philosophy__title {
  margin: 12px 0 22px;
  max-width: 13ch;
  line-height: 1;
}

.dralarm-about-values {
  margin-top: 22px;
  gap: 28px;
}

.dralarm-about-value {
  gap: 12px;
  margin-bottom: 18px;
}

.dralarm-about-value .dralarm-icon-chip {
  width: 40px;
  height: 40px;
  min-width: 40px;
  margin: 0;
  border-radius: 12px;
  font-size: 0.85rem;
}

.dralarm-about-value p:last-child {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 600;
}

.dralarm-about-story {
  padding: 96px 0;
  background: #f4f5f7;
}

.dralarm-about-story__title {
  margin-top: 8px;
  margin-bottom: 0;
}

.dralarm-about-timeline {
  max-width: 50rem;
  margin: 44px auto 0;
}

.dralarm-about-timeline__item {
  gap: 22px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.dralarm-about-timeline__item:last-child {
  border-bottom: 0;
}

.dralarm-about-timeline__year {
  width: 70px;
  min-width: 70px;
  margin: 0;
  color: var(--dralarm-primary);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.dralarm-about-timeline__event {
  margin: 2px 0 0;
  color: var(--dralarm-text-muted);
  font-size: 1.04rem;
}

.dralarm-about-cta {
  padding: 104px 0 110px;
}

.dralarm-about-cta__title {
  margin-bottom: 10px;
}

.dralarm-about-cta .wp-block-button__link,
.dralarm-about-cta .wp-element-button {
  min-height: 56px;
  padding-inline: 34px;
  font-size: 1rem;
  font-weight: 800;
}

.dralarm-about-cta .wp-block-button__link::after,
.dralarm-about-cta .wp-element-button::after {
  content: "›";
  display: inline-block;
  margin-left: 10px;
  font-size: 1.05rem;
  line-height: 1;
}

.dralarm-marketing-band,
.dralarm-coverage-page,
.dralarm-services-page,
.dralarm-get-quote-page,
.dralarm-service-page {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 96px 0 104px;
  background: #ffffff;
}

.dralarm-marketing-band--muted,
.dralarm-get-quote-page {
  background: #f6f7f8;
}

.dralarm-marketing-band > .wp-block-group__inner-container,
.dralarm-coverage-page > .wp-block-group__inner-container,
.dralarm-services-page > .wp-block-group__inner-container,
.dralarm-get-quote-page > .wp-block-group__inner-container,
.dralarm-service-page > .wp-block-group__inner-container {
  width: min(calc(100% - 48px), var(--dralarm-max-width));
  margin-left: auto;
  margin-right: auto;
}

.dralarm-coverage-page .dralarm-display,
.dralarm-services-page .dralarm-display,
.dralarm-get-quote-page .dralarm-display {
  max-width: 15ch;
  margin-left: auto;
  margin-right: auto;
}

.dralarm-coverage-page .dralarm-lead,
.dralarm-services-page .dralarm-lead,
.dralarm-get-quote-page .dralarm-lead {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.dralarm-coverage-page .wp-block-html,
.dralarm-services-page .wp-block-html,
.dralarm-service-page .wp-block-html,
.dralarm-get-quote-page .wp-block-shortcode {
  margin-top: 36px;
}

.dralarm-coverage-page .dralarm-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dralarm-coverage-page .dralarm-card-grid,
.dralarm-coverage-page .dralarm-package-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.dralarm-services-page .dralarm-link-grid,
.dralarm-service-page .dralarm-feature-grid {
  margin-top: 34px;
}

.dralarm-service-page .dralarm-display {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.dralarm-service-page .dralarm-eyebrow,
.dralarm-service-page .dralarm-lead {
  display: block;
  text-align: center;
}

.dralarm-service-page .dralarm-lead {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.dralarm-service-page .dralarm-package-grid {
  margin-top: 36px;
}

.dralarm-service-page .dralarm-button-row {
  justify-content: center;
  margin-top: 34px;
}

.dralarm-get-quote-page .dralarm-display {
  max-width: 15ch;
}

.dralarm-get-quote-page .dralarm-quote-shell {
  margin-top: 36px;
}

.dralarm-products-empty {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--dralarm-radius-md);
  border: 1px solid var(--dralarm-border);
  background: #ffffff;
  color: var(--dralarm-text-muted);
  text-align: center;
}

.dralarm-quote-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.dralarm-quote-title {
  margin: 12px 0 16px;
  font-size: 2.75rem;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.dralarm-quote-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.dralarm-quote-point {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.03);
}

.dralarm-quote-point strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}

.dralarm-quote-point span {
  display: block;
  margin-top: 6px;
  color: var(--dralarm-text-muted);
}

.dralarm-form-wrap {
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f7f7f8);
  border: 1px solid var(--dralarm-border);
}

.dralarm-form-success {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.dralarm-form-success strong {
  display: block;
  margin-bottom: 4px;
}

.dralarm-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dralarm-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dralarm-form label,
.dralarm-quote-wizard__form label,
.dralarm-form-full {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
}

.dralarm-form label span,
.dralarm-quote-wizard__form label span,
.dralarm-form-full span {
  color: var(--dralarm-text);
}

.dralarm-form input,
.dralarm-form select,
.dralarm-form textarea,
.dralarm-quote-wizard__form input:not([type="hidden"]),
.dralarm-quote-wizard__form select,
.dralarm-quote-wizard__form textarea {
  width: 100%;
  border: 1px solid var(--dralarm-border);
  border-radius: 14px;
  background: #fff;
  min-height: 52px;
  padding: 12px 14px;
  font: inherit;
  color: var(--dralarm-text);
}

.dralarm-form textarea,
.dralarm-quote-wizard__form textarea {
  min-height: 130px;
  resize: vertical;
}

.dralarm-form-full {
  width: 100%;
  margin-top: 16px;
}

.dralarm-form-submit {
  border: 0;
  border-radius: 999px;
  min-height: 54px;
  padding: 0 24px;
  background: var(--dralarm-primary);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(223, 44, 51, 0.2);
}

.dralarm-quote-wizard {
  max-width: 54rem;
  margin: 0 auto;
  scroll-margin-top: 120px;
}

.dralarm-quote-success {
  max-width: 32rem;
  margin: 0 auto;
  padding: 32px 0 12px;
  text-align: center;
}

.dralarm-quote-success__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(223, 44, 51, 0.1);
  color: var(--dralarm-primary);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.dralarm-quote-success h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
}

.dralarm-quote-success p {
  margin: 0;
  color: var(--dralarm-text-muted);
  line-height: 1.7;
}

.dralarm-quote-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 40px;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.dralarm-quote-step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dralarm-quote-step__number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f3f5;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 800;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dralarm-quote-step__label {
  color: #9ca3af;
  font-size: 0.78rem;
  font-weight: 600;
}

.dralarm-quote-step.is-active .dralarm-quote-step__number,
.dralarm-quote-step.is-complete .dralarm-quote-step__number {
  background: var(--dralarm-primary);
  color: #fff;
}

.dralarm-quote-step.is-active .dralarm-quote-step__label,
.dralarm-quote-step.is-complete .dralarm-quote-step__label {
  color: var(--dralarm-text);
}

.dralarm-quote-step__divider {
  width: 32px;
  height: 1px;
  background: #e5e7eb;
}

.dralarm-quote-stage {
  display: none;
}

.dralarm-quote-stage.is-active {
  display: block;
}

.dralarm-property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dralarm-property-card {
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.dralarm-property-card:hover {
  border-color: #d1d5db;
}

.dralarm-property-card.is-selected {
  border-color: rgba(223, 44, 51, 0.25);
  background: rgba(223, 44, 51, 0.05);
  box-shadow: 0 16px 34px rgba(223, 44, 51, 0.08);
}

.dralarm-property-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(223, 44, 51, 0.1);
  color: var(--dralarm-primary);
  font-size: 1.1rem;
  font-weight: 900;
}

.dralarm-property-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.dralarm-property-card span:last-child {
  color: var(--dralarm-text-muted);
  font-size: 0.92rem;
}

.dralarm-kit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dralarm-kit-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);
}

.dralarm-kit-item__label {
  margin: 0 0 4px;
  color: var(--dralarm-text);
  font-size: 0.94rem;
  font-weight: 800;
}

.dralarm-kit-item__price {
  margin: 0;
  color: var(--dralarm-text-muted);
  font-size: 0.8rem;
}

.dralarm-kit-item__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dralarm-kit-adjust {
  width: 32px;
  height: 32px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  color: #374151;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.dralarm-kit-qty {
  width: 28px;
  text-align: center;
  color: var(--dralarm-text);
  font-size: 1.1rem;
  font-weight: 800;
}

.dralarm-kit-summary {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(223, 44, 51, 0.2);
  border-radius: 20px;
  background: rgba(223, 44, 51, 0.05);
}

.dralarm-kit-summary__row,
.dralarm-kit-summary__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dralarm-kit-summary__row span {
  color: var(--dralarm-text);
  font-size: 0.92rem;
  font-weight: 700;
}

.dralarm-kit-summary__row strong {
  color: var(--dralarm-primary);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.dralarm-kit-progress {
  width: 100%;
  height: 8px;
  margin: 18px 0 24px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.dralarm-kit-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--dralarm-primary);
  transition: width 0.3s ease;
}

.dralarm-kit-summary__meta small {
  display: block;
  margin-bottom: 4px;
  color: var(--dralarm-text-muted);
  font-size: 0.76rem;
}

.dralarm-kit-summary__meta strong {
  color: var(--dralarm-text);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.dralarm-kit-summary__meta .is-right {
  text-align: right;
}

.dralarm-kit-summary__meta .is-right strong {
  color: var(--dralarm-primary);
  font-size: 0.94rem;
}

.dralarm-quote-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.dralarm-quote-nav__spacer {
  flex: 1 1 auto;
}

.dralarm-quote-nav__button {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.dralarm-quote-nav__button.is-primary {
  background: var(--dralarm-primary);
  color: #fff;
}

.dralarm-quote-nav__button.is-secondary {
  border-color: #d1d5db;
  color: #374151;
  background: #fff;
}

.dralarm-quote-nav__button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

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

.dralarm-link-card {
  display: block;
  padding: 22px;
  border-radius: var(--dralarm-radius-md);
  border: 1px solid var(--dralarm-border);
  background: var(--dralarm-surface);
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
}

.dralarm-link-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--dralarm-text);
  font-size: 1.1rem;
}

.dralarm-link-card span {
  color: var(--dralarm-text-muted);
}

.dralarm-cta {
  position: relative;
  overflow: hidden;
}

.dralarm-cta .dralarm-lead,
.dralarm-cta .wp-block-paragraph {
  color: rgba(255, 255, 255, 0.78);
}

.dralarm-cta--light {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.dralarm-cta-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.dralarm-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.88) 45%, rgba(255, 255, 255, 0.98) 100%);
}

.dralarm-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

/* WP generates max-width + margin:auto on direct children of is-layout-constrained;
   override so the outer inner-container and media block are truly full-width */
.dralarm-cta > .wp-block-group__inner-container {
  width: 100%;
  max-width: 100% !important;
  margin: 0 !important;
}

.dralarm-cta-media {
  max-width: none !important;
  margin: 0 !important;
}

/* Flatten the inner Gutenberg wrapper so the figure is a layout child of the media div */
.dralarm-cta-media .wp-block-group__inner-container {
  display: contents;
}

/* Figure fills the absolutely-positioned media container */
.dralarm-cta-media .wp-block-image {
  position: absolute !important;
  inset: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

.dralarm-cta-media .wp-block-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

.dralarm-cta__content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  text-align: center;
}

.dralarm-cta--light .dralarm-display,
.dralarm-cta--light .wp-block-heading {
  color: var(--dralarm-text);
}

.dralarm-cta--light .dralarm-lead,
.dralarm-cta--light .wp-block-paragraph {
  color: var(--dralarm-text-muted);
}

.home .site-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 0;
}

.home .entry-content > * + * {
  margin-top: 0;
}

.page-template-page-products .site-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 0;
}

.page-template-page-products .entry-content > * + * {
  margin-top: 0;
}

.page-template-page-products .site-footer {
  margin-top: 0;
}

.page-template-page-about .site-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 0;
}

.page-template-page-about .entry-content > * + * {
  margin-top: 0;
}

.page-template-page-about .site-footer {
  margin-top: 0;
}

.wp-block-separator.dralarm-divider {
  width: 100%;
  height: 1px;
  background: var(--dralarm-border);
  border: 0;
}

.entry-title {
  margin: 0 0 18px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

.page-header {
  margin-bottom: 28px;
}

.site-footer {
  border-top: 1px solid var(--dralarm-border);
  background: #f2f3f5;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 56px 0 28px;
}

.site-footer h2,
.site-footer h3,
.site-footer h4 {
  margin: 0 0 14px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #707887;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--dralarm-text-muted);
  text-decoration: none;
}

.site-footer__contact-list {
  display: grid;
  gap: 12px;
}

.site-footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: #6b7280;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

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

.site-footer li + li {
  margin-top: 10px;
}

.site-footer__meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--dralarm-border);
  color: #707887;
  font-size: 0.92rem;
}

.editor-styles-wrapper {
  background: var(--dralarm-bg);
}

.editor-styles-wrapper .is-root-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
}

@media (max-width: 1024px) {
  .dralarm-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dralarm-feature-grid,
  .dralarm-package-grid,
  .dralarm-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dralarm-products-page > .wp-block-group__inner-container {
    width: min(calc(100% - 40px), 1120px);
  }

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

@media (max-width: 840px) {
  .site-header__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .primary-nav {
    width: 100%;
    justify-content: center;
  }

  .dralarm-stat-row,
  .dralarm-card-grid,
  .dralarm-feature-grid,
  .dralarm-package-grid,
  .dralarm-stat-grid,
  .dralarm-link-grid,
  .dralarm-form-grid,
  .dralarm-quote-shell {
    grid-template-columns: 1fr;
  }

  .dralarm-property-grid,
  .dralarm-kit-grid {
    grid-template-columns: 1fr;
  }

  .dralarm-quote-steps {
    margin-bottom: 32px;
  }

  .dralarm-quote-step__label {
    display: none;
  }

  .dralarm-kit-summary__meta,
  .dralarm-quote-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .dralarm-kit-summary__meta .is-right,
  .dralarm-kit-summary__meta .is-right strong {
    text-align: left;
  }

  .dralarm-quote-nav__spacer {
    display: none;
  }

  .dralarm-quote-nav__button {
    width: 100%;
  }

  .dralarm-section {
    padding: 22px;
  }

  .dralarm-home-band {
    padding: 72px 0;
  }

  .dralarm-products-page {
    padding: 72px 0;
  }

  .dralarm-about-hero {
    padding: 96px 0 82px;
  }

  .dralarm-about-philosophy,
  .dralarm-about-story,
  .dralarm-about-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .dralarm-marketing-band,
  .dralarm-coverage-page,
  .dralarm-services-page,
  .dralarm-get-quote-page,
  .dralarm-service-page {
    padding: 72px 0;
  }

  .dralarm-home-band .wp-block-group__inner-container {
    width: min(calc(100% - 32px), var(--dralarm-max-width));
  }

  .dralarm-products-page > .wp-block-group__inner-container {
    width: min(calc(100% - 32px), var(--dralarm-max-width));
  }

  .dralarm-about-hero > .wp-block-group__inner-container,
  .dralarm-about-philosophy > .wp-block-group__inner-container,
  .dralarm-about-story > .wp-block-group__inner-container,
  .dralarm-about-cta > .wp-block-group__inner-container {
    width: min(calc(100% - 32px), var(--dralarm-max-width));
  }

  .dralarm-marketing-band > .wp-block-group__inner-container,
  .dralarm-coverage-page > .wp-block-group__inner-container,
  .dralarm-services-page > .wp-block-group__inner-container,
  .dralarm-get-quote-page > .wp-block-group__inner-container,
  .dralarm-service-page > .wp-block-group__inner-container {
    width: min(calc(100% - 32px), var(--dralarm-max-width));
  }

  .dralarm-products-page .dralarm-display {
    font-size: 3.4rem;
  }

  .dralarm-about-hero .dralarm-display,
  .dralarm-about-philosophy__title {
    font-size: 3.4rem;
  }

  .dralarm-about-hero .dralarm-display {
    max-width: 11ch;
  }

  .dralarm-about-philosophy__columns,
  .dralarm-about-values {
    gap: 20px;
  }

  .dralarm-coverage-page .dralarm-stat-grid,
  .dralarm-coverage-page .dralarm-card-grid,
  .dralarm-coverage-page .dralarm-package-grid {
    grid-template-columns: 1fr;
  }

  .dralarm-home-columns,
  .dralarm-home-columns--coverage {
    gap: 16px;
  }

  .dralarm-shell {
    width: min(calc(100% - 32px), var(--dralarm-max-width));
  }

  .dralarm-hero-stage {
    min-height: 760px;
  }

  .dralarm-hero-stage__content {
    padding: 155px 0 88px;
  }

  .dralarm-hero-stage__title {
    max-width: 9ch;
    font-size: 3.6rem;
  }

  .dralarm-hero {
    min-height: auto;
    padding: 0;
  }

  .dralarm-hero__media img {
    object-position: 68% center;
  }

  .dralarm-hero__veil--horizontal {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.84) 35%, rgba(255, 255, 255, 0.72) 100%);
  }

  .dralarm-status-label {
    letter-spacing: 0.14em;
  }

  .dralarm-hero__content {
    padding: 160px 0 72px;
  }

  .site-main {
    padding-top: 22px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__meta {
    flex-direction: column;
  }

  .primary-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .primary-nav .sub-menu {
    position: static;
    display: flex;
    min-width: 0;
    box-shadow: none;
    margin-top: 6px;
  }

  .dralarm-ticker {
    border-radius: 0;
  }

  .dralarm-ticker__label {
    padding: 0 10px;
    margin-right: 10px;
  }

  .dralarm-product-spec {
    flex-direction: column;
    gap: 4px;
  }

  .dralarm-product-spec__value {
    text-align: left;
  }

  .dralarm-about-timeline__item {
    gap: 16px;
  }

  .dralarm-about-timeline__year {
    width: 64px;
    min-width: 64px;
    font-size: 1.7rem;
  }
}

@media (max-width: 600px) {
  .dralarm-display,
  .dralarm-products-page .dralarm-display,
  .dralarm-coverage-page .dralarm-display,
  .dralarm-services-page .dralarm-display,
  .dralarm-get-quote-page .dralarm-display,
  .dralarm-service-page .dralarm-display {
    font-size: 2.85rem;
    line-height: 1;
    max-width: 13ch;
  }

  .dralarm-hero-stage__title {
    font-size: 3rem;
    line-height: 0.95;
  }

  .dralarm-hero__title {
    font-size: 3.25rem;
    line-height: 0.95;
  }

  .dralarm-quote-title {
    font-size: 2.25rem;
  }

  .dralarm-quote-steps {
    justify-content: space-between;
    margin-bottom: 28px;
  }

  .dralarm-kit-item {
    align-items: flex-start;
  }

  .dralarm-kit-item__controls {
    flex: 0 0 auto;
  }

  .dralarm-location-tiles {
    padding: 16px;
  }
}

@media (max-width: 420px) {
  .dralarm-display,
  .dralarm-products-page .dralarm-display,
  .dralarm-coverage-page .dralarm-display,
  .dralarm-services-page .dralarm-display,
  .dralarm-get-quote-page .dralarm-display,
  .dralarm-service-page .dralarm-display {
    font-size: 2.45rem;
  }

  .dralarm-property-card {
    padding: 22px;
  }

  .dralarm-kit-item {
    flex-direction: column;
  }

  .dralarm-kit-item__controls {
    width: 100%;
    justify-content: space-between;
  }
}

/* -------------------------------------------------------------------------
 * Honeypot, mobile nav toggle, 404 layout.
 * ------------------------------------------------------------------------- */

.dralarm-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--dralarm-border);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.site-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dralarm-text);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.dralarm-404 {
  text-align: center;
  padding: 80px 32px;
}

.dralarm-404 .dralarm-button-row {
  justify-content: center;
}

@media (max-width: 840px) {
  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__inner {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 14px 0;
    gap: 12px;
  }

  .site-header__cta {
    display: none;
  }

  .primary-nav {
    display: none;
    width: 100%;
    order: 10;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(222, 225, 230, 0.9);
  }

  .primary-nav--open {
    display: block;
  }

  .primary-nav__menu,
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 0;
  }

  .primary-nav a {
    min-height: 48px;
    width: 100%;
    justify-content: flex-start;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 0.98rem;
    font-weight: 600;
  }

  .primary-nav li.menu-item-has-children::after,
  .primary-nav .menu-item-has-children > a::after {
    display: none;
  }

  .primary-nav li.menu-item-has-children {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    align-items: start;
    column-gap: 6px;
  }

  .primary-nav li.menu-item-has-children > a {
    grid-column: 1;
    grid-row: 1;
  }

  .primary-nav__submenu-toggle {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 48px;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--dralarm-text-muted);
    cursor: pointer;
  }

  .primary-nav__submenu-toggle span {
    width: 8px;
    height: 8px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .primary-nav li.is-submenu-open > .primary-nav__submenu-toggle span {
    transform: rotate(225deg);
  }

  .primary-nav .sub-menu {
    position: static;
    grid-column: 1 / -1;
    min-width: 0;
    margin-top: 0;
    margin-left: 16px;
    padding: 0 0 0 8px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav li.is-submenu-open > .sub-menu {
    display: flex;
  }

  .primary-nav .sub-menu a {
    min-height: 40px;
    padding-inline: 16px;
    color: var(--dralarm-text-muted);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 10px;
  }

  .site-header__cta--mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 12px;
    min-height: 54px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
  }
}

/* ── Hero overlay strength modifiers ───────────────────── */

.dralarm-hero-stage--overlay-soft .dralarm-hero-stage__veil--horizontal {
  opacity: 0.55;
}

.dralarm-hero-stage--overlay-balanced .dralarm-hero-stage__veil--horizontal {
  opacity: 1;
}

.dralarm-hero-stage--overlay-dramatic .dralarm-hero-stage__veil--horizontal {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.72) 42%,
    rgba(0, 0, 0, 0.38) 100%
  );
}

/* ── Footer social links ────────────────────────────────── */

.site-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-footer__social-link:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Services Grid ──────────────────────────────────────── */

.dralarm-service-grid {
  margin-top: 28px;
}

.dralarm-service-card {
  overflow: hidden;
  padding: 0;
  border-radius: var(--dralarm-radius-md);
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dralarm-service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(223, 44, 51, 0.2);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.dralarm-service-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  padding: 32px 28px;
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.dralarm-service-image {
  width: 72%;
  height: 72%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.dralarm-service-card:hover .dralarm-service-image {
  transform: scale(1.04);
}

.dralarm-service-badge,
.dralarm-service-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(223, 44, 51, 0.08);
  color: var(--dralarm-primary);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.dralarm-service-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
}

.dralarm-service-card__body h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.45;
}

.dralarm-service-description {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--dralarm-text-muted);
  flex: 1 1 auto;
}

.dralarm-service-cta {
  align-self: flex-start;
  margin-top: auto;
}

/* ── Hero Slider ── */
.dralarm-hero--slider {
  position: relative;
  overflow: hidden;
}

.dralarm-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  min-height: inherit;
}

.dralarm-hero__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.dralarm-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.dralarm-hero__nav:hover {
  background: rgba(223, 44, 51, 0.75);
  transform: translateY(-50%) scale(1.08);
}

.dralarm-hero__nav svg {
  width: 20px;
  height: 20px;
}

.dralarm-hero__nav--prev {
  left: 24px;
}

.dralarm-hero__nav--next {
  right: 24px;
}

.dralarm-hero__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.dralarm-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  padding: 0;
}

.dralarm-hero__dot.is-active,
.dralarm-hero__dot:hover {
  background: #fff;
  border-color: #fff;
  transform: scale(1.25);
}

@media (max-width: 600px) {
  .dralarm-hero__nav {
    width: 36px;
    height: 36px;
  }
  .dralarm-hero__nav--prev { left: 12px; }
  .dralarm-hero__nav--next { right: 12px; }
}

/* ============================================================
 * 2026-04-27 mockup deltas:
 * - Value-props with product image
 * - Solutions section (image + Residential / Business cards)
 * - Consultation-to-monitoring process cards
 * - Home Security feature cards with images
 * - Coverage page panels, location tiles, testimonials
 * - Wizard conditional Business Name field
 * ============================================================ */

.dralarm-value-with-image .dralarm-value-image {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.10);
}

.dralarm-value-with-image .dralarm-value-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.dralarm-value-cards .wp-block-column .dralarm-card {
  margin-bottom: 16px;
}

@media (max-width: 781px) {
  .dralarm-value-with-image {
    flex-wrap: wrap;
  }
  .dralarm-value-with-image > .wp-block-column {
    flex-basis: 100% !important;
  }
  .dralarm-value-with-image .dralarm-value-image img {
    aspect-ratio: 16 / 10;
  }
}

/* Solutions section ----------------------------------------- */
.dralarm-solutions__columns {
  gap: 32px;
}

.dralarm-solutions__image {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.10);
}

.dralarm-solutions__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.dralarm-solutions__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.dralarm-solutions__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.dralarm-solutions__card:hover,
.dralarm-solutions__card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
}

.dralarm-solutions__card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 auto;
}

.dralarm-solutions__card-body strong {
  font-weight: 700;
  color: #0f172a;
}

.dralarm-solutions__card-body span {
  font-size: 0.94rem;
  color: rgba(15, 23, 42, 0.70);
}

.dralarm-solutions__card-arrow {
  font-size: 1.5rem;
  color: rgba(220, 38, 38, 0.85);
  font-weight: 600;
}

@media (max-width: 781px) {
  .dralarm-solutions__columns {
    flex-wrap: wrap;
  }
  .dralarm-solutions__columns > .wp-block-column {
    flex-basis: 100% !important;
  }
}

/* Consultation-to-monitoring process ----------------------- */
.dralarm-experience__title {
  text-align: center;
  max-width: 13ch;
  margin: 10px auto 16px;
  font-size: 4.5rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

.dralarm-experience__lead {
  max-width: 42rem;
  margin: 0 auto 38px;
  color: var(--dralarm-text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
  text-align: center;
}

.dralarm-experience__steps {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.dralarm-experience__steps::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.16), transparent);
}

.dralarm-experience__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-height: 260px;
  padding: 22px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
  text-align: left;
}

.dralarm-experience__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: #15171a;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.16);
}

.dralarm-experience__body {
  display: grid;
  gap: 10px;
}

.dralarm-experience__body strong {
  color: var(--dralarm-text);
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.25;
}

.dralarm-experience__body span {
  color: var(--dralarm-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .dralarm-experience__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dralarm-experience__steps::before {
    display: none;
  }

  .dralarm-experience__step {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .dralarm-experience__title {
    font-size: 2.8rem;
  }

  .dralarm-experience__steps {
    grid-template-columns: 1fr;
  }

  .dralarm-experience__step {
    flex-direction: row;
  }

  .dralarm-experience__number {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
  }
}

/* Home Security feature cards w/ images -------------------- */
.dralarm-feature-grid--with-images {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  align-items: stretch;
}

.dralarm-feature-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
}

.dralarm-feature-card__image {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 11;
  background: #f3f4f6;
  overflow: hidden;
}

.dralarm-feature-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dralarm-feature-card h3,
.dralarm-feature-card p {
  padding: 0 20px;
}

.dralarm-feature-card h3 {
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 1.12rem;
  line-height: 1.3;
}

.dralarm-feature-card p {
  padding-bottom: 22px;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.6;
}

/* Coverage page panels + tiles + testimonials ------------- */
.dralarm-coverage-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.dralarm-coverage-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dralarm-coverage-panel h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.dralarm-coverage-panel p {
  margin-top: 0;
  line-height: 1.65;
}

.dralarm-coverage-panel__image {
  margin-top: 8px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 16 / 9;
}

.dralarm-coverage-panel__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 781px) {
  .dralarm-coverage-panels {
    grid-template-columns: 1fr;
  }
}

.dralarm-location-tiles {
  margin-top: 36px;
  padding: 22px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.dralarm-location-tiles__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.dralarm-location-tile {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #0f172a;
  position: relative;
  aspect-ratio: 4 / 3;
}

.dralarm-location-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.dralarm-location-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 8px 12px;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.85), transparent);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .dralarm-location-tiles__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .dralarm-location-tiles__row {
    grid-template-columns: 1fr;
  }
}

.dralarm-coverage-testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.dralarm-coverage-testimonial {
  position: relative;
  margin: 0;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.dralarm-coverage-testimonial__mark {
  position: absolute;
  top: 8px;
  left: 18px;
  font-size: 3rem;
  line-height: 1;
  color: rgba(220, 38, 38, 0.18);
  font-family: Georgia, serif;
}

.dralarm-coverage-testimonial p {
  margin: 0 0 12px;
  color: rgba(15, 23, 42, 0.85);
}

.dralarm-coverage-testimonial footer {
  font-weight: 600;
  color: #0f172a;
}

@media (max-width: 781px) {
  .dralarm-coverage-testimonials {
    grid-template-columns: 1fr;
  }
}

/* Wizard conditional Business Name field ------------------- */
.dralarm-form-business-name[hidden] {
  display: none !important;
}

.dralarm-form-business-name {
  display: block;
}
