:root {
  --ink: #08090c;
  --carbon: #14161a;
  --graphite: #242830;
  --steel: #68707d;
  --line: #d8dde4;
  --paper: #f6f7f9;
  --white: #ffffff;
  --red: #c8102e;
  --red-dark: #8f0b21;
  --amber: #f2c94c;
  --green: #1f8a5b;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 18px 42px rgba(8, 9, 12, 0.08);
  --shadow-strong: 0 24px 58px rgba(8, 9, 12, 0.12);
  --focus-ring: 0 0 0 4px rgba(200, 16, 46, 0.2);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--carbon);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
summary,
[role="button"],
.tab {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

a[href],
button,
summary,
[role="button"],
.tab {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible,
.tab:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(8, 9, 12, 0.1);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(100% - 32px, var(--max));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
}

.brand img {
  width: 190px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(200, 16, 46, 0.36);
  color: var(--red-dark);
  box-shadow: var(--focus-ring);
}

.nav-toggle-icon {
  display: grid;
  width: 20px;
  gap: 4px;
}

.nav-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:first-child {
  transform: translateY(6px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #2c3138;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

.brand {
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  opacity: 0.84;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 300px;
  height: 12px;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.nav-parent::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.nav-menu-toggle {
  display: none;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #2c3138;
  font-weight: 900;
  cursor: pointer;
}

.nav-menu-toggle::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.nav-dropdown:hover .nav-menu-toggle,
.nav-dropdown.is-open .nav-menu-toggle {
  background: rgba(200, 16, 46, 0.1);
  color: var(--red);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 40;
  display: none;
  width: 300px;
  padding: 10px;
  border: 1px solid rgba(8, 9, 12, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 48px rgba(8, 9, 12, 0.18);
}

.nav-dropdown:hover::before,
.nav-dropdown:focus-within::before,
.nav-dropdown.is-open::before {
  display: block;
}

.nav-parent:hover ~ .nav-menu,
.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu,
.nav-dropdown.is-open .nav-menu {
  display: grid;
  gap: 2px;
}

.nav .nav-menu a {
  display: block;
  padding: 10px 12px;
  border-bottom: 0;
  border-radius: 6px;
  color: #2c3138;
  font-size: 13px;
  line-height: 1.25;
}

.nav .nav-menu a:hover,
.nav .nav-menu a[aria-current="page"] {
  background: rgba(200, 16, 46, 0.09);
  color: var(--red);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--steel);
  font-size: 12px;
}

.language-switch a,
.language-switch span {
  min-width: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  text-align: center;
}

.language-switch a:hover,
.language-switch a:focus-visible {
  background: rgba(200, 16, 46, 0.1);
  color: var(--red-dark);
}

.language-switch span {
  background: var(--ink);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(200, 16, 46, 0.24);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 16px 34px rgba(200, 16, 46, 0.3);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.18);
}

.btn-light {
  border-color: rgba(8, 9, 12, 0.13);
  background: var(--white);
  color: var(--ink);
}

.btn-light:hover {
  border-color: rgba(200, 16, 46, 0.34);
  color: var(--red-dark);
  box-shadow: 0 14px 28px rgba(8, 9, 12, 0.12);
}

.btn:active,
.nav-menu-toggle:active,
.tab:active {
  transform: translateY(1px);
}

@media (hover: hover) and (pointer: fine) {
  .btn:not(:disabled):not(.is-disabled):hover {
    transform: translateY(-2px);
  }
}

.header-cta {
  position: relative;
  min-height: 44px;
  padding: 11px 22px;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(200, 16, 46, 0.5);
  border-radius: 6px;
  background:
    linear-gradient(135deg, #d91531 0%, #b90f28 100%);
  box-shadow:
    0 12px 24px rgba(200, 16, 46, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.15;
  white-space: nowrap;
}

.header-cta::before {
  display: none;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(168, 11, 32, 0.72);
  background:
    linear-gradient(135deg, #e61937 0%, #a80b20 100%);
  color: var(--white);
  box-shadow:
    0 15px 30px rgba(200, 16, 46, 0.3),
    0 0 0 3px rgba(200, 16, 46, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.nav .header-cta {
  border: 1px solid rgba(200, 16, 46, 0.5);
  border-radius: 6px;
  color: var(--white);
  font-size: 13px;
  line-height: 1.15;
  min-height: 44px;
  padding: 11px 22px;
}

.nav .header-cta:hover,
.nav .header-cta:focus-visible {
  border-color: rgba(168, 11, 32, 0.72);
  border-bottom-color: rgba(168, 11, 32, 0.72);
  color: var(--white);
}

.hero {
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.58) 0%, rgba(8, 9, 12, 0.24) 45%, rgba(8, 9, 12, 0) 100%),
    url("assets/optimized/generated/willdor-home-hero-ai-v1.webp") center right / cover no-repeat;
}

.hero::after,
.band-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 96px 0 56px;
}

.hero-copy {
  max-width: 720px;
}

.hero h1,
.hero .lead,
.page-hero h1,
.page-hero .lead {
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.58);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
}

.hero .eyebrow,
.page-hero .eyebrow,
.band-dark .eyebrow {
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.hero .eyebrow::before,
.page-hero .eyebrow::before,
.band-dark .eyebrow::before {
  background: var(--amber);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

.lead {
  max-width: 740px;
  color: #dfe5ec;
  font-size: clamp(18px, 2.4vw, 23px);
}

.page-lead {
  max-width: 780px;
  color: #59616d;
  font-size: 18px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 9, 12, 0.48);
}

.proof-item {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: 18px;
}

.proof-item span {
  color: #bdc7d3;
  font-size: 13px;
}

.section {
  position: relative;
  padding: 78px 0;
}

.section-tight {
  padding: 56px 0;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 520px;
  margin-bottom: 0;
  color: #59616d;
}

.section-heading .eyebrow {
  max-width: none;
  margin-bottom: 14px;
  color: var(--red-dark);
}

.band-white {
  background: var(--white);
}

.band-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.band-dark .page-lead,
.band-dark .section-heading p,
.band-dark .muted,
.band-dark .card p {
  color: #c6ced9;
}

.band-dark .section-heading .eyebrow {
  color: var(--white);
}

.band-dark .card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  box-shadow: none;
}

.band-dark .card h3 {
  color: var(--white);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.card,
.blog-card,
.contact-panel {
  border: 1px solid rgba(8, 9, 12, 0.12);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card,
.card,
.blog-card {
  padding: 24px;
}

.service-card:has(a),
.card:has(a),
.blog-card:has(a),
.application-card:has(a),
.resource-card:has(a),
.tool-card:has(a),
.module-card:has(a),
.support-service-card:has(a),
.support-action-card:has(a),
.support-plan-card:has(a),
.division-context-card:has(a),
.division-request-card:has(a),
.contact-tool-card:has(a) {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:has(a):hover,
  .card:has(a):hover,
  .blog-card:has(a):hover,
  .application-card:has(a):hover,
  .resource-card:has(a):hover,
  .tool-card:has(a):hover,
  .module-card:has(a):hover,
  .support-service-card:has(a):hover,
  .support-action-card:has(a):hover,
  .support-plan-card:has(a):hover,
  .division-context-card:has(a):hover,
  .division-request-card:has(a):hover,
  .contact-tool-card:has(a):hover {
    transform: translateY(-4px);
    border-color: rgba(200, 16, 46, 0.34);
    box-shadow: var(--shadow-strong);
  }
}

.service-detail-page .card {
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.service-card.service-card-visual {
  padding: 0;
  overflow: hidden;
}

.service-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #111318;
  overflow: hidden;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0) 40%, rgba(8, 9, 12, 0.58) 100%),
    linear-gradient(90deg, rgba(200, 16, 46, 0.26), transparent 48%);
}

.service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.service-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.service-card-label {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.service-card .icon,
.card .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #111318;
  color: var(--amber);
  font-weight: 900;
}

.card .icon.support-icon {
  border: 1px solid rgba(200, 16, 46, 0.18);
  background: rgba(200, 16, 46, 0.09);
  color: var(--red);
}

.icon.support-icon::before {
  content: "";
  width: 25px;
  height: 25px;
  background: currentColor;
  -webkit-mask: var(--support-icon) center / contain no-repeat;
  mask: var(--support-icon) center / contain no-repeat;
}

.icon.support-icon.support-icon-camera {
  --support-icon: none;
  position: relative;
}

.icon.support-icon.support-icon-camera::before {
  width: 38px;
  height: 38px;
  background: currentColor;
  clip-path: none;
  -webkit-mask: url("assets/icons/support-cctv-camera.png") center / contain no-repeat;
  mask: url("assets/icons/support-cctv-camera.png") center / contain no-repeat;
}

.icon.support-icon.support-icon-camera::after {
  content: none;
}
.support-icon-display { --support-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='12' rx='2'/%3E%3Cpath d='M8 20h8M12 16v4'/%3E%3C/svg%3E"); }
.support-icon-light { --support-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6M10 22h4M8.5 14.5A6 6 0 1 1 15.5 14.5c-.9.7-1.5 1.7-1.5 2.5h-4c0-.8-.6-1.8-1.5-2.5Z'/%3E%3C/svg%3E"); }
.support-icon-network { --support-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='5' r='3'/%3E%3Ccircle cx='5' cy='19' r='3'/%3E%3Ccircle cx='19' cy='19' r='3'/%3E%3Cpath d='M10.5 7.5 6.5 16M13.5 7.5 17.5 16M8 19h8'/%3E%3C/svg%3E"); }
.support-icon-audio { --support-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 10v4h4l5 4V6l-5 4H4Z'/%3E%3Cpath d='M16 9.5a4 4 0 0 1 0 5M19 7a8 8 0 0 1 0 10'/%3E%3C/svg%3E"); }
.support-icon-card { --support-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 10h18M7 15h4'/%3E%3C/svg%3E"); }
.support-icon-ticket { --support-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v3a2 2 0 0 0 0 4v3a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 0 0-4V7Z'/%3E%3Cpath d='M13 5v14'/%3E%3C/svg%3E"); }
.support-icon-phone { --support-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1.9.3 1.8.7 2.6a2 2 0 0 1-.5 2.1L8.1 9.6a16 16 0 0 0 6.3 6.3l1.2-1.2a2 2 0 0 1 2.1-.5c.8.3 1.7.6 2.6.7A2 2 0 0 1 22 16.9Z'/%3E%3C/svg%3E"); }
.support-icon-message { --support-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4v8Z'/%3E%3Cpath d='M8 9h8M8 13h5'/%3E%3C/svg%3E"); }
.support-icon-plus { --support-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Cpath d='M12 8v8M8 12h8'/%3E%3C/svg%3E"); }
.support-icon-cloud { --support-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 19H8a5 5 0 1 1 1-9.9A6 6 0 0 1 20 11.5 3.8 3.8 0 0 1 17.5 19Z'/%3E%3Cpath d='M12 12v4M12 8h.01'/%3E%3C/svg%3E"); }
.support-icon-alert { --support-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.3 3.9 1.8 18a2 2 0 0 0 1.7 3h17a2 2 0 0 0 1.7-3L13.7 3.9a2 2 0 0 0-3.4 0Z'/%3E%3Cpath d='M12 9v4M12 17h.01'/%3E%3C/svg%3E"); }

.support-coverage-section {
  background:
    linear-gradient(180deg, #fff 0%, #f5f7fa 100%);
}

.support-coverage-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.35fr);
  gap: 24px;
  align-items: stretch;
}

.support-visual-card,
.support-decision-media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(8, 9, 12, 0.12);
  border-radius: var(--radius);
  background: #111318;
  box-shadow: var(--shadow);
}

.support-visual-card img,
.support-decision-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
}

.support-visual-card::after,
.support-decision-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.04) 0%, rgba(8, 9, 12, 0.78) 100%),
    linear-gradient(90deg, rgba(200, 16, 46, 0.28), transparent 55%);
}

.support-visual-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(8, 9, 12, 0.72);
  color: var(--white);
}

.support-visual-overlay span,
.plan-kicker,
.support-tag {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.support-visual-overlay span {
  color: var(--amber);
}

.support-visual-overlay strong {
  font-size: 22px;
  line-height: 1.15;
}

.support-visual-overlay small {
  color: #c6ced9;
  font-size: 14px;
}

.support-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-service-grid.is-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-service-card,
.support-action-card,
.support-plan-card,
.support-flow article {
  position: relative;
  border: 1px solid rgba(8, 9, 12, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.support-service-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 168px;
  padding: 20px;
  overflow: hidden;
}

.support-service-grid.is-compact .support-service-card {
  min-height: 152px;
  padding: 18px;
}

.support-service-card .icon.support-icon,
.support-action-card .icon.support-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #111318;
  color: var(--amber);
  font-weight: 900;
}

.support-service-card .support-icon {
  border-color: rgba(8, 9, 12, 0.24);
  box-shadow: 0 12px 24px rgba(8, 9, 12, 0.14);
}

.support-service-card::before,
.support-action-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--red);
}

.support-service-card h3,
.support-action-card h3,
.support-plan-card h3,
.support-flow h3 {
  margin-bottom: 8px;
}

.support-service-card p,
.support-action-card p,
.support-flow p {
  margin: 0;
  color: #59616d;
}

.support-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(200, 16, 46, 0.09);
  color: var(--red);
}

.support-action-section {
  background:
    linear-gradient(90deg, rgba(200, 16, 46, 0.08), transparent 34%),
    #f0f2f5;
}

.support-action-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}

.support-action-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  overflow: hidden;
}

.support-action-card .btn,
.support-action-card .text-link {
  margin-top: auto;
}

.support-action-card.is-primary {
  border-color: rgba(200, 16, 46, 0.35);
  background:
    linear-gradient(135deg, rgba(200, 16, 46, 0.92), rgba(8, 9, 12, 0.98)),
    #111318;
  color: var(--white);
}

.support-action-card.is-primary p {
  color: rgba(255, 255, 255, 0.82);
}

.support-action-card.is-primary h3 {
  color: var(--white);
}

.support-action-card.is-primary .support-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.support-action-card.is-primary .btn-primary {
  background: var(--white);
  color: var(--red);
  box-shadow: none;
}

.support-plans-section {
  background:
    linear-gradient(90deg, rgba(200, 16, 46, 0.18), transparent 42%),
    #090b10;
}

.support-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 42px;
}

.support-mode-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  color: var(--white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.support-mode-card.is-plan {
  border-color: rgba(242, 201, 76, 0.45);
  background:
    linear-gradient(135deg, rgba(200, 16, 46, 0.62), rgba(12, 14, 20, 0.92)),
    #111318;
}

.support-mode-card span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.support-mode-card h3 {
  color: var(--white);
  font-size: 26px;
}

.support-mode-card p {
  margin: 0;
  color: #d4dae3;
}

.support-plan-heading {
  margin-top: 6px;
}

.support-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.support-plan-card {
  min-height: 100%;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.support-plan-card.is-featured {
  border-color: rgba(242, 201, 76, 0.6);
  background:
    linear-gradient(180deg, rgba(200, 16, 46, 0.9), rgba(111, 14, 28, 0.94)),
    var(--red);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
}

.plan-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--amber);
}

.support-plan-card h3 {
  color: var(--white);
  font-size: 28px;
}

.plan-metric {
  display: grid;
  gap: 4px;
  margin: 12px 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.plan-metric span {
  color: #c6ced9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-metric strong {
  color: var(--white);
  font-size: 20px;
}

.support-plan-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #dce2ea;
}

.support-plan-card li {
  margin-bottom: 7px;
}

.support-plan-note {
  max-width: 900px;
  margin: 22px 0 0;
  color: #c6ced9;
}

.support-flow-section {
  background:
    linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

.support-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.support-flow.is-simple {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.support-flow article {
  min-height: 190px;
  padding: 22px;
}

.support-flow article::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -13px;
  z-index: 2;
  width: 14px;
  height: 2px;
  background: var(--red);
}

.support-flow article:last-child::after {
  display: none;
}

.support-flow span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  background: #111318;
  color: var(--amber);
  font-weight: 900;
}

.support-decision-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.support-decision-copy {
  align-self: center;
}

.support-decision-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.support-decision-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(8, 9, 12, 0.11);
  border-radius: 8px;
  background: #f7f8fa;
}

.support-decision-list strong {
  color: var(--red);
  font-size: 14px;
  text-transform: uppercase;
}

.support-decision-list span {
  color: #3d444e;
}

.support-boundary-section .card {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.support-boundary-section .card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--amber);
}

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

.support-scope-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(8, 9, 12, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff, #f7f8fa);
  box-shadow: var(--shadow);
}

.support-scope-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--red);
}

.support-scope-card:nth-child(2)::before {
  background: var(--amber);
}

.support-scope-card h3 {
  margin-bottom: 14px;
}

.support-scope-card ul {
  margin: 0;
  padding-left: 18px;
  color: #3d444e;
}

.support-scope-card li {
  margin-bottom: 8px;
}

.service-card > .icon {
  margin-bottom: 18px;
}

.service-card p,
.card p,
.blog-card p {
  color: #59616d;
}

.service-card ul,
.check-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #3a4049;
}

.service-card li,
.check-list li {
  margin-bottom: 6px;
}

.service-card .text-link {
  margin-top: auto;
}

.service-detail-list {
  display: grid;
  gap: 12px;
}

.service-detail-list li {
  margin-bottom: 0;
}

.service-applications {
  width: min(100% - 32px, var(--max));
  margin: 34px auto 0;
}

.application-intro {
  max-width: 860px;
  margin-inline: auto;
  text-align: left;
}

.application-intro .page-lead {
  max-width: 820px;
}

.application-intro .service-detail-list {
  max-width: 760px;
}

.service-applications .card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.service-applications .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(200, 16, 46, 0));
}

.application-card {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.application-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111318;
}

.application-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0) 42%, rgba(8, 9, 12, 0.62) 100%),
    linear-gradient(90deg, rgba(200, 16, 46, 0.24), transparent 58%);
}

.application-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-card-media .icon {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  box-shadow: 0 10px 22px rgba(8, 9, 12, 0.28);
}

.application-card-body {
  flex: 1;
  padding: 22px;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.service-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.34);
  color: #f3f6f9;
  font-size: 12px;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid transparent;
  color: var(--red);
  font-weight: 900;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--red-dark);
  border-bottom-color: currentColor;
}

@media (hover: hover) and (pointer: fine) {
  .text-link:hover {
    transform: translateX(3px);
  }
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(8, 9, 12, 0.13);
  border-radius: 999px;
  background: var(--white);
  color: #29313b;
  font-weight: 800;
  font-size: 13px;
}

.process,
.process-grid {
  counter-reset: step;
}

.process-step {
  counter-increment: step;
  position: relative;
  padding: 24px 24px 24px 78px;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-size: 13px;
}

.division-capability-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 34px;
  align-items: center;
}

.division-stat-panel {
  display: grid;
  gap: 12px;
}

.division-intro-section {
  background:
    linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}

.division-context-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.division-context-card {
  position: relative;
  min-height: 255px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(8, 9, 12, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: var(--shadow);
}

.division-context-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--red);
}

.division-context-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  background: #111318;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.division-context-card h3 {
  margin-bottom: 10px;
}

.division-context-card p {
  margin: 0;
  color: #4d5662;
}

.division-stat-panel div,
.division-request-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(8, 9, 12, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(200, 16, 46, 0.07), rgba(255, 255, 255, 0)),
    var(--white);
  box-shadow: var(--shadow);
}

.division-stat-panel div::before,
.division-service-card::before,
.division-request-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--red);
}

.division-stat-panel span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.division-stat-panel strong {
  display: block;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.05;
}

.division-stat-panel p {
  margin: 8px 0 0;
  color: var(--steel);
}

.division-service-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  box-shadow: var(--shadow);
}

.division-service-card .icon {
  margin-bottom: 18px;
}

.division-request-card {
  align-self: stretch;
  display: grid;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.07);
  color: var(--white);
  box-shadow: none;
}

.division-request-card::before {
  background: var(--amber);
}

.division-request-card h3 {
  color: var(--white);
  margin-bottom: 14px;
}

.division-request-card ul {
  margin: 0;
  padding-left: 18px;
  color: #dce2ea;
}

.division-request-card li {
  margin-bottom: 8px;
}

.media-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(8, 9, 12, 0.12);
  background: var(--white);
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
}

.story-media img {
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: none;
  object-position: center;
}

.service-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.service-gallery figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(8, 9, 12, 0.12);
  background: #111318;
  box-shadow: var(--shadow);
}

.service-gallery figure:first-child {
  grid-row: span 2;
  min-height: 480px;
}

.service-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(8, 9, 12, 0.78);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.stat-strip div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-strip strong {
  display: block;
  color: var(--amber);
  font-size: 26px;
}

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

.founder-card {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(8, 9, 12, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.founder-card img {
  width: 100%;
  height: 100%;
  min-height: 265px;
  object-fit: cover;
  object-position: center top;
  background: var(--line);
}

.founder-body {
  padding: 22px;
}

.founder-role {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.founder-body h3 {
  margin-top: 0;
}

.credential-note {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(8, 9, 12, 0.12);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 9, 12, 0.06);
}

.credential-note strong {
  color: var(--ink);
}

.credential-note span {
  color: var(--steel);
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 84px 0 58px;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.58), rgba(8, 9, 12, 0.12)),
    url("assets/optimized/generated/willdor-services-technical-rack-ai-v1.webp") center / cover no-repeat;
  color: var(--white);
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero.installation {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.58), rgba(8, 9, 12, 0.08)),
    url("assets/optimized/generated/willdor-installation-services-hero-ai-v1.webp") center right / cover no-repeat;
}

.page-hero.support {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.6), rgba(8, 9, 12, 0.08)),
    url("assets/optimized/generated/willdor-support-maintenance-ai-v1.webp") center / cover no-repeat;
}

.page-hero.resources,
.page-hero.tools,
.page-hero.verify,
.page-hero.portal {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.68), rgba(8, 9, 12, 0.12)),
    url("assets/optimized/generated/willdor-services-technical-rack-ai-v1.webp") center right / cover no-repeat;
}

.page-hero.careers {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.64), rgba(8, 9, 12, 0.1)),
    url("assets/optimized/willdor-uniform.webp") center right / cover no-repeat;
}

.page-hero.about {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.62), rgba(8, 9, 12, 0.16)),
    url("assets/optimized/willdor-vehicle.webp") center right / cover no-repeat;
}

.page-hero.contact {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.58), rgba(8, 9, 12, 0.1)),
    url("assets/optimized/generated/willdor-contact-assessment-ai-v1.webp") center / cover no-repeat;
}

.page-hero.privacy {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.78), rgba(8, 9, 12, 0.32)),
    url("assets/optimized/generated/willdor-services-technical-rack-ai-v1.webp") center right / cover no-repeat;
}

.page-hero.service-areas-hero {
  display: flex;
  min-height: 590px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.96) 0%, rgba(8, 9, 12, 0.88) 38%, rgba(8, 9, 12, 0.44) 66%, rgba(8, 9, 12, 0.12) 100%),
    url("assets/optimized/willdor-vehicle.webp") center right / cover no-repeat;
}

.service-areas-hero-copy {
  width: min(100%, 680px);
}

.service-areas-hero-copy h1 {
  font-size: clamp(44px, 5.4vw, 72px);
}

.service-areas-hero-copy .lead {
  max-width: 650px;
}

.legal-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  align-items: start;
  gap: clamp(34px, 6vw, 72px);
}

.legal-facts {
  display: grid;
  gap: 0;
  border-top: 3px solid var(--red);
}

.legal-facts div {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.legal-facts strong {
  color: var(--ink);
}

.legal-facts span,
.legal-facts a {
  color: #59616d;
}

.legal-content {
  width: min(100%, 920px);
}

.legal-content section {
  padding-bottom: 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 36px);
}

.legal-content h3 {
  margin: 24px 0 10px;
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: #4f5864;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.legal-note {
  padding: 20px 22px;
  border-left: 4px solid var(--red);
  background: #f6f7f9;
}

.legal-note p:last-child {
  margin-bottom: 0;
}

.page-hero.service-cctv {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.68), rgba(8, 9, 12, 0.14)),
    url("assets/optimized/generated/willdor-service-cctv-ip-ai-v1.webp") center right / cover no-repeat;
}

.page-hero.service-network {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.68), rgba(8, 9, 12, 0.12)),
    url("assets/optimized/generated/willdor-service-network-wifi-ai-v1.webp") center right / cover no-repeat;
}

.page-hero.service-signage {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.66), rgba(8, 9, 12, 0.1)),
    url("assets/optimized/generated/willdor-service-digital-signage-ai-v1.webp") center right / cover no-repeat;
}

.page-hero.service-led {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.62), rgba(8, 9, 12, 0.12)),
    url("assets/optimized/generated/willdor-service-led-lighting-ai-v1.webp") center right / cover no-repeat;
}

.page-hero.service-av {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.62), rgba(8, 9, 12, 0.1)),
    url("assets/optimized/generated/willdor-service-audio-video-ai-v1.webp") center right / cover no-repeat;
}

.page-hero.service-pos {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.64), rgba(8, 9, 12, 0.12)),
    url("assets/optimized/generated/willdor-service-pos-connectivity-ai-v1.webp") center right / cover no-repeat;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--white);
  color: #343b45;
  font-weight: 900;
}

.tab.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.tab:hover {
  border-color: rgba(200, 16, 46, 0.42);
  color: var(--red-dark);
}

.tab.is-active:hover {
  color: var(--white);
  background: var(--red-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.contact-panel {
  padding: 24px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.contact-list a,
.contact-list span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #303843;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--red-dark);
  border-bottom-color: rgba(200, 16, 46, 0.4);
  transform: translateX(3px);
}

.contact-list strong {
  color: var(--ink);
}

.embed-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px dashed #b7c0cc;
  border-radius: var(--radius);
  background: #fbfcfd;
  text-align: center;
}

.embed-placeholder p {
  max-width: 540px;
  margin-bottom: 0;
  color: #59616d;
}

.embed-placeholder .cta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 560px);
  margin: 28px auto 0;
}

.embed-placeholder .cta-row .btn {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  text-align: center;
}

.embed-placeholder .cta-row .btn:last-child {
  grid-column: 1 / -1;
}

.contact-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-tool-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
  align-items: center;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-tool-card h3 {
  margin-bottom: 10px;
}

.contact-tool-card p {
  color: #59616d;
}

.qr-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  justify-self: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.qr-image {
  max-width: 260px;
  padding: 10px;
}

.social-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-mini a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #303843;
  font-size: 13px;
  font-weight: 900;
}

.social-link {
  --social-color: var(--red);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--social-color);
  opacity: 0;
  transition: opacity 180ms ease;
}

.social-icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--social-color);
  transition: color 180ms ease, transform 180ms ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.social-label {
  line-height: 1;
}

.social-mini a:hover,
.social-mini a:focus-visible,
.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: var(--social-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(8, 9, 12, 0.14);
}

.social-mini a:hover::before,
.social-mini a:focus-visible::before,
.footer-social a:hover::before,
.footer-social a:focus-visible::before {
  opacity: 1;
}

.social-mini a:hover .social-icon,
.social-mini a:focus-visible .social-icon,
.footer-social a:hover .social-icon,
.footer-social a:focus-visible .social-icon {
  color: var(--white);
  transform: scale(1.08);
}

.review-cta-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #08090c;
  box-shadow: var(--shadow);
  color: var(--white);
  text-decoration: none;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.review-cta-card::before,
.review-cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.review-cta-card::before {
  z-index: -2;
  background: url("assets/optimized/social/google-review-background-ai-v1.webp") right center / cover no-repeat;
}

.review-cta-card::after {
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(225, 6, 0, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(8, 9, 12, 0.96) 0%, rgba(8, 9, 12, 0.88) 42%, rgba(8, 9, 12, 0.54) 60%, rgba(8, 9, 12, 0.1) 100%);
}

.review-cta-card:hover,
.review-cta-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(225, 6, 0, 0.55);
  box-shadow: 0 24px 58px rgba(8, 9, 12, 0.24);
  color: var(--white);
}

.review-cta-card:focus-visible {
  outline: 3px solid rgba(225, 6, 0, 0.46);
  outline-offset: 4px;
}

.review-cta-card .eyebrow {
  margin-bottom: 0;
  color: #f3bd42;
}

.review-cta-card h2,
.review-cta-card h3 {
  max-width: 400px;
  margin: 0;
  color: var(--white);
}

.review-cta-card h2 {
  font-size: clamp(32px, 4vw, 50px);
}

.review-cta-card p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.review-cta-card .btn {
  margin-top: 8px;
  pointer-events: none;
}

.review-cta-wide {
  min-height: 380px;
  padding: clamp(30px, 5vw, 52px);
}

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

.resource-card,
.tool-card,
.module-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resource-card .text-link,
.tool-card .btn,
.module-card .text-link {
  margin-top: auto;
}

.tool-list {
  display: grid;
  gap: 16px;
}

.tool-card {
  padding: 22px;
}

.tool-logo {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 9, 12, 0.1);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 9, 12, 0.08);
}

.tool-logo img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.tool-logo-willdor {
  background: #111318;
}

.tool-logo-willdor img {
  width: 38px;
  height: 38px;
}

.tools-prep-section {
  background:
    linear-gradient(135deg, rgba(200, 16, 46, 0.28), rgba(8, 9, 12, 0) 38%),
    linear-gradient(180deg, #111318 0%, #08090c 100%);
}

.tools-prep-layout {
  align-items: center;
}

.tools-prep-card,
.tools-security-note {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.tools-prep-card {
  padding: 28px;
}

.tools-prep-card h2 {
  color: var(--white);
}

.tools-prep-card .page-lead {
  color: #d9dee7;
}

.tools-prep-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
  color: var(--white);
}

.tools-prep-list li {
  position: relative;
  margin: 0;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #f1f4f8;
}

.tools-prep-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(242, 201, 76, 0.18);
}

.disclaimer.tools-security-note {
  display: grid;
  align-content: center;
  gap: 10px;
  border-left: 4px solid var(--red);
  padding: 28px;
  border-color: rgba(8, 9, 12, 0.12);
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  box-shadow: var(--shadow);
}

.tools-prep-section .tools-security-note {
  border-left-color: var(--amber);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(242, 201, 76, 0.18), rgba(255, 255, 255, 0.07));
  color: #eef2f7;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.tools-security-note strong {
  color: var(--red);
  font-size: 18px;
}

.tools-security-note span {
  color: #4f5865;
}

.tools-prep-section .tools-security-note strong {
  color: var(--amber);
}

.tools-prep-section .tools-security-note span {
  color: #eef2f7;
}

.tools-prep-media img {
  aspect-ratio: 16 / 9;
  max-height: none;
}

.tool-card h3,
.module-card h3 {
  margin-bottom: 0;
}

.tool-card p,
.module-card p {
  margin: 0;
}

.tool-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.tool-meta span,
.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(200, 16, 46, 0.09);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.status-badge.neutral {
  background: rgba(104, 112, 125, 0.12);
  color: #424a55;
}

.field-id-preview,
.portal-login-preview {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(8, 9, 12, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.id-card-preview {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius);
  background: #101216;
  color: var(--white);
}

.id-photo-placeholder {
  width: 92px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, #262b33, #08090c);
  color: var(--amber);
  font-weight: 900;
}

.id-card-preview h3 {
  margin-bottom: 4px;
  color: var(--white);
}

.id-card-preview p {
  margin: 0;
  color: #c6ced9;
}

.verification-form,
.portal-form-preview {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: var(--ink);
  font-weight: 900;
}

.form-row input {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
  color: #2c3138;
  font: inherit;
}

.btn:disabled,
.btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.btn:disabled:hover,
.btn.is-disabled:hover {
  transform: none;
  box-shadow: none;
}

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

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(8, 9, 12, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.info-table th,
.info-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  background: #f0f2f5;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.template-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(8, 9, 12, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.template-box,
.template-card textarea {
  width: 100%;
  min-height: 190px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
  color: #2f3741;
  font: inherit;
  line-height: 1.55;
  resize: vertical;
}

.template-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.template-card textarea.candidate-template {
  min-height: 330px;
}

.mini-note {
  color: #59616d;
  font-size: 13px;
}

.mini-note a {
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.candidate-intake-note {
  margin: 0 0 24px;
}

.status-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius);
  background: #f0f2f5;
  color: #313840;
}

.status-panel strong {
  color: var(--ink);
}

.status-panel.is-warning {
  border-left: 4px solid var(--amber);
  background: rgba(242, 201, 76, 0.13);
}

.status-panel.is-ok {
  border-left: 4px solid var(--green);
  background: rgba(31, 138, 91, 0.1);
}

.timeline {
  display: grid;
  gap: 14px;
  counter-reset: timeline;
}

.timeline-item {
  counter-increment: timeline;
  position: relative;
  padding: 18px 18px 18px 64px;
  border: 1px solid rgba(8, 9, 12, 0.12);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline-item::before {
  content: counter(timeline, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.timeline-item h3 {
  margin-bottom: 6px;
}

.timeline-item p {
  margin: 0;
  color: #59616d;
}

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

.faq-item {
  border: 1px solid rgba(8, 9, 12, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 900;
  transition: color 180ms ease, background-color 180ms ease;
}

.faq-item:hover,
.faq-item:focus-within {
  border-color: rgba(200, 16, 46, 0.32);
  box-shadow: var(--shadow-strong);
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  color: var(--red-dark);
  background: rgba(200, 16, 46, 0.045);
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: #59616d;
}

.band-dark .faq-item {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.band-dark .faq-item summary {
  color: var(--white);
}

.band-dark .faq-item p {
  color: #c6ced9;
}

.implementation-note {
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-left: 4px solid var(--red);
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(200, 16, 46, 0.06);
  color: #313840;
}

.disclaimer {
  border-left: 4px solid var(--amber);
  padding: 18px 20px;
  background: rgba(242, 201, 76, 0.12);
  color: #313840;
  font-size: 14px;
}

.cta-band {
  padding: 56px 0;
  background: var(--red);
  color: var(--white);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  background: #0b0c10;
  color: #d9dee5;
}

.footer-grid {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 50px 0;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
}

.site-footer .footer-grid > div:first-child::before {
  content: "WILLDOR SECURITY\A TECHNOLOGIES";
  display: flex;
  align-items: center;
  min-height: 76px;
  padding-left: 88px;
  margin-bottom: 18px;
  background: url("assets/favicon-willdor-180.png") left center / 76px 76px no-repeat;
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  white-space: pre-line;
}

.site-footer .footer-grid > div:first-child img {
  display: none;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 15px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: #b8c0cb;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
  transform: translateX(3px);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  min-height: 42px;
  margin: 0;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.18);
  color: #eef2f7;
  background: rgba(255, 255, 255, 0.07);
  line-height: 1;
  transform: none;
}

.footer-social .social-icon {
  color: var(--social-color);
}

.footer-social a[aria-label="X"] .social-icon {
  color: #eef2f7;
}

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

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: var(--social-color);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social a:hover .social-label,
.footer-social a:focus-visible .social-label,
.footer-social a:hover .social-icon,
.footer-social a:focus-visible .social-icon {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  color: #aeb6c2;
  font-size: 13px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.muted {
  color: #59616d;
}

.hidden {
  display: none !important;
}

@media (max-width: 1220px) {
  .nav-shell {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    display: none;
    width: 100%;
    margin-left: 0;
    padding: 16px 0 4px;
    border-top: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-dropdown {
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav-parent {
    flex: 1;
  }

  .nav-parent::after {
    display: none;
  }

  .nav-menu-toggle {
    display: grid;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .nav-dropdown.is-open .nav-menu-toggle::before {
    margin-top: 4px;
    transform: rotate(225deg);
  }

  .nav-menu {
    position: static;
    width: 100%;
    margin: 4px 0 10px;
    box-shadow: none;
  }

  .nav-parent:hover ~ .nav-menu,
  .nav-dropdown:hover .nav-menu,
  .nav-dropdown:focus-within .nav-menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-menu {
    display: grid;
  }

  .nav.is-open {
    display: flex;
  }

  .language-switch,
  .header-cta {
    margin-top: 8px;
  }

  .header-cta {
    width: 100%;
    min-height: 46px;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(8, 9, 12, 0.62), rgba(8, 9, 12, 0.2)),
      url("assets/optimized/generated/willdor-home-hero-ai-v1.webp") center / cover no-repeat;
  }

  .hero-proof,
  .grid-3,
  .grid-4,
  .grid-2,
  .division-capability-grid,
  .support-coverage-layout,
  .support-action-grid,
  .support-decision-layout,
  .founder-grid,
  .resource-grid,
  .module-grid,
  .service-gallery,
  .split,
  .legal-summary,
  .contact-grid,
  .contact-tools,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-gallery figure,
  .service-gallery figure:first-child {
    grid-row: auto;
    min-height: 280px;
  }

  .contact-tool-card {
    grid-template-columns: 1fr;
  }

  .embed-placeholder .cta-row {
    grid-template-columns: 1fr;
  }

  .embed-placeholder .cta-row .btn:last-child {
    grid-column: auto;
  }

  .review-cta-card {
    min-height: 360px;
  }

  .review-cta-card::before {
    background-position: right center;
  }

  .review-cta-card::after {
    background:
      radial-gradient(circle at 18% 18%, rgba(225, 6, 0, 0.22), transparent 30%),
      linear-gradient(90deg, rgba(8, 9, 12, 0.97) 0%, rgba(8, 9, 12, 0.9) 44%, rgba(8, 9, 12, 0.34) 68%, rgba(8, 9, 12, 0.08) 100%);
  }

  .review-cta-card h2,
  .review-cta-card h3 {
    max-width: 370px;
  }

  .review-cta-card p {
    max-width: 290px;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .section-heading,
  .cta-band .container,
  .footer-bottom .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .division-stat-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .support-service-grid,
  .support-service-grid.is-compact,
  .support-mode-grid,
  .support-scope-grid,
  .support-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-flow,
  .support-flow.is-simple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .support-flow article::after {
    display: none;
  }

  .support-visual-card img,
  .support-decision-media img {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 168px;
  }

  h1 {
    font-size: 40px;
  }

  .page-hero.service-areas-hero {
    min-height: 570px;
    background:
      linear-gradient(180deg, rgba(8, 9, 12, 0.76) 0%, rgba(8, 9, 12, 0.84) 44%, rgba(8, 9, 12, 0.96) 100%),
      url("assets/optimized/willdor-vehicle.webp") 62% center / cover no-repeat;
  }

  .service-areas-hero-copy h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .section {
    padding: 58px 0;
  }

  .hero-inner {
    padding: 72px 0 38px;
  }

  .btn {
    width: 100%;
  }

  .founder-card,
  .credential-note {
    grid-template-columns: 1fr;
  }

  .founder-card img {
    height: auto;
    min-height: 0;
    max-height: 430px;
  }

  .review-cta-card {
    min-height: 420px;
    padding: 24px;
    justify-content: flex-start;
  }

  .review-cta-card::before {
    background-position: right bottom;
  }

  .review-cta-card::after {
    background:
      radial-gradient(circle at 18% 12%, rgba(225, 6, 0, 0.2), transparent 32%),
      linear-gradient(180deg, rgba(8, 9, 12, 0.98) 0%, rgba(8, 9, 12, 0.9) 42%, rgba(8, 9, 12, 0.46) 100%);
  }

  .review-cta-card h2 {
    font-size: 32px;
  }

  .review-cta-card p {
    font-size: 16px;
  }

  .process-step {
    padding-left: 24px;
    padding-top: 74px;
  }

  .division-stat-panel {
    grid-template-columns: 1fr;
  }

  .division-context-grid {
    grid-template-columns: 1fr;
  }

  .division-context-card {
    min-height: 0;
  }

  .support-service-grid,
  .support-service-grid.is-compact,
  .support-mode-grid,
  .support-scope-grid,
  .support-plan-grid,
  .support-flow,
  .support-flow.is-simple {
    grid-template-columns: 1fr;
  }

  .support-service-card {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 0;
    padding: 18px;
  }

  .support-action-card,
  .support-mode-card,
  .support-plan-card,
  .support-flow article {
    min-height: 0;
  }

  .support-decision-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .support-visual-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .support-visual-overlay strong {
    font-size: 19px;
  }

  .support-visual-card img,
  .support-decision-media img {
    min-height: 280px;
  }

  .id-card-preview {
    grid-template-columns: 1fr;
  }
}
