:root {
  --landing-bg: #fbf9f8;
  --landing-surface: #ffffff;
  --landing-surface-soft: #f5f3f3;
  --landing-surface-mid: #f0eded;
  --landing-text: #1b1c1c;
  --landing-muted: #5f5e5e;
  --landing-primary: #a6000b;
  --landing-primary-bright: #ce1c1c;
  --landing-primary-soft: #ffdad5;
  --landing-outline: #e6bdb8;
  --landing-ink: #26201f;
  --landing-green: #197a46;
  --landing-amber: #b25c00;
}

body {
  min-width: 320px;
}

.landing-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  border-bottom: 1px solid rgba(230, 189, 184, 0.42);
  background: rgba(251, 249, 248, 0.88);
  backdrop-filter: blur(18px);
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1536px);
  min-height: 88px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 28px;
}

.landing-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.landing-logo img {
  width: 184px;
  height: auto;
}

.landing-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 14px;
  font-weight: 750;
  color: #55504f;
}

.landing-menu a {
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.landing-menu a:hover,
.landing-menu a:focus-visible {
  color: var(--landing-primary);
}

.landing-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--landing-primary);
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(166, 0, 11, 0.18);
}

.landing-nav-cta:hover {
  transform: translateY(-1px);
  background: var(--landing-primary-bright);
}

.landing-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: var(--landing-text);
  background: var(--landing-surface);
  box-shadow: 0 8px 24px rgba(27, 28, 28, 0.08);
}

.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 142px 32px 82px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 218, 213, 0.78), transparent 26%),
    linear-gradient(135deg, #fbf9f8 0%, #f5f3f3 48%, #ffffff 100%);
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 96px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(166, 0, 11, 0.22), transparent);
}

.landing-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(500px, 1.02fr);
  gap: 46px;
  align-items: center;
  width: min(100%, 1536px);
  margin: 0 auto;
}

.landing-hero-copy {
  max-width: 760px;
}

.landing-eyebrow {
  margin-bottom: 18px;
  color: var(--landing-primary);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.landing-hero h1 {
  max-width: 820px;
  color: var(--landing-text);
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.landing-subtitle {
  max-width: 650px;
  margin-top: 26px;
  color: var(--landing-muted);
  font-size: 19px;
  line-height: 1.7;
  font-weight: 500;
}

.landing-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  max-width: 720px;
  margin-top: 34px;
}

.landing-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #332d2c;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.landing-benefits .material-symbols-outlined {
  flex: 0 0 auto;
  color: var(--landing-primary);
  font-size: 21px;
  line-height: 1.25;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.landing-button:hover,
.landing-button:focus-visible {
  transform: translateY(-2px);
}

.landing-button-primary {
  border: 1px solid var(--landing-primary);
  background: var(--landing-primary);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(166, 0, 11, 0.32);
}

.landing-button-primary:hover,
.landing-button-primary:focus-visible {
  background: var(--landing-primary-bright);
  box-shadow: 0 22px 52px rgba(166, 0, 11, 0.42);
}

.landing-button-secondary {
  border: 1px solid rgba(166, 0, 11, 0.24);
  background: rgba(255, 255, 255, 0.74);
  color: var(--landing-primary);
}

.dashboard-shell {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(230, 189, 184, 0.68);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 243, 243, 0.86)),
    var(--landing-surface);
  box-shadow: 0 36px 90px rgba(27, 28, 28, 0.15);
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(166, 0, 11, 0.16), rgba(255, 255, 255, 0.1), rgba(206, 28, 28, 0.12));
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px 18px;
}

.dashboard-topbar p,
.dashboard-topbar span,
.panel-heading span,
.dashboard-kpis span {
  color: #4c4746;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-topbar strong {
  display: block;
  margin-top: 3px;
  color: var(--landing-text);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
}

.dashboard-topbar > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  background: var(--landing-primary-soft);
  color: var(--landing-primary);
  text-align: center;
}

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

.dashboard-kpis article,
.dashboard-panel {
  border: 1px solid rgba(230, 189, 184, 0.52);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(27, 28, 28, 0.05);
}

.dashboard-kpis article {
  min-height: 94px;
  padding: 16px;
}

.dashboard-kpis strong {
  display: block;
  margin-top: 9px;
  color: var(--landing-text);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.dashboard-kpis .is-alert strong {
  color: var(--landing-primary);
}

.dashboard-main {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
  margin-top: 12px;
}

.dashboard-panel {
  min-width: 0;
  padding: 18px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.panel-heading h2 {
  color: var(--landing-text);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 900;
}

.site-map {
  position: relative;
  min-height: 232px;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(230, 189, 184, 0.22) 1px, transparent 1px),
    linear-gradient(0deg, rgba(230, 189, 184, 0.22) 1px, transparent 1px),
    linear-gradient(135deg, #fff, #f5f3f3);
  background-size: 42px 42px;
}

.site-map::before,
.site-map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(166, 0, 11, 0.16);
  border-radius: 999px;
  transform: rotate(-16deg);
}

.site-map::before {
  inset: 42px 28px 62px;
}

.site-map::after {
  inset: 78px 76px 36px 56px;
}

.map-dot {
  position: absolute;
  z-index: 2;
  width: 17px;
  height: 17px;
  border: 4px solid #ffffff;
  border-radius: 999px;
  background: var(--landing-green);
  box-shadow: 0 8px 20px rgba(27, 28, 28, 0.18);
}

.map-dot.is-warning {
  background: var(--landing-amber);
}

.map-dot.is-danger {
  background: var(--landing-primary);
}

.dot-one { left: 18%; top: 28%; }
.dot-two { left: 44%; top: 42%; }
.dot-three { left: 68%; top: 24%; }
.dot-four { left: 73%; top: 67%; }
.dot-five { left: 31%; top: 72%; }

.map-line {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: rgba(166, 0, 11, 0.18);
}

.map-label {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(166, 0, 11, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #312a29;
  font-size: 11.5px;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(27, 28, 28, 0.08);
}

.label-one { left: 21%; top: 21%; }
.label-two { left: 47%; top: 35%; }
.label-three { left: 71%; top: 17%; }
.label-four { left: 54%; top: 66%; }
.label-five { left: 34%; top: 78%; }

.line-one {
  left: 21%;
  top: 34%;
  width: 48%;
  transform: rotate(8deg);
}

.line-two {
  left: 34%;
  top: 74%;
  width: 40%;
  transform: rotate(-22deg);
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  min-height: 194px;
  gap: 12px;
  padding: 18px 10px 6px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(245, 243, 243, 0.86), rgba(255, 255, 255, 0.75));
}

.chart-bars span {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 160px;
  gap: 4px;
}

.chart-bars span::before,
.chart-bars span::after {
  content: "";
  display: block;
  width: 13px;
  border-radius: 999px 999px 5px 5px;
}

.chart-bars span::before {
  height: var(--planned);
  background: #e6bdb8;
}

.chart-bars span::after {
  height: var(--done);
  background: var(--landing-primary);
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  color: #3c3736;
  font-size: 13px;
  font-weight: 850;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.chart-legend i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.chart-legend .planned {
  background: #e6bdb8;
}

.chart-legend .done {
  background: var(--landing-primary);
}

.issues-panel {
  margin-top: 12px;
}

.issues-panel ul {
  display: grid;
  gap: 10px;
}

.issues-panel li {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--landing-surface-soft);
}

.issues-panel strong {
  color: var(--landing-text);
  font-size: 14px;
  font-weight: 900;
}

.issues-panel li span {
  color: #3f3938;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.audience-section {
  padding: 84px 32px 64px;
  background: #ffffff;
}

.audience-heading {
  width: min(100%, 980px);
  margin: 0 auto 42px;
  text-align: center;
}

.audience-heading h2 {
  color: var(--landing-text);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.audience-heading > p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--landing-muted);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.audience-cards article {
  min-height: 246px;
  padding: 30px;
  border: 1px solid rgba(230, 189, 184, 0.62);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #ffffff, #fbf9f8);
  box-shadow: 0 18px 44px rgba(27, 28, 28, 0.06);
}

.audience-cards .material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: 18px;
  background: var(--landing-primary-soft);
  color: var(--landing-primary);
  font-size: 30px;
}

.audience-cards h3 {
  margin-bottom: 12px;
  color: var(--landing-text);
  font-size: 23px;
  line-height: 1.15;
  font-weight: 900;
}

.audience-cards p {
  color: var(--landing-muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 550;
}

.section-block {
  padding: 78px 32px;
}

.section-heading {
  width: min(100%, 980px);
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2 {
  color: var(--landing-text);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading > p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--landing-muted);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
}

.contrast-section,
.maintenance-section,
.timeline-section {
  background: var(--landing-surface-soft);
}

.problems-section,
.equipment-section {
  background: #ffffff;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.comparison-card,
.problems-grid article,
.equipment-grid article,
.role-benefits-grid article {
  border: 1px solid rgba(230, 189, 184, 0.58);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(27, 28, 28, 0.06);
}

.comparison-card {
  min-height: 360px;
  padding: 34px;
}

.comparison-card > .material-symbols-outlined,
.problems-grid .material-symbols-outlined,
.equipment-grid .material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: var(--landing-primary-soft);
  color: var(--landing-primary);
  font-size: 30px;
}

.comparison-card h3,
.problems-grid h3,
.equipment-grid h3,
.role-benefits-grid h3 {
  color: var(--landing-text);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}

.comparison-card ul {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.comparison-card li,
.problems-grid p,
.equipment-grid p,
.role-benefits-grid p {
  color: #4b4544;
  font-size: 16.5px;
  line-height: 1.68;
  font-weight: 650;
}

.governance-card {
  background: linear-gradient(135deg, #ffffff 0%, #fff7f5 100%);
  border-color: rgba(166, 0, 11, 0.28);
}

.problems-grid,
.equipment-grid,
.role-benefits-grid {
  display: grid;
  gap: 18px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

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

.problems-grid article,
.equipment-grid article,
.role-benefits-grid article {
  padding: 28px;
}

.problems-grid h3,
.equipment-grid h3 {
  margin-bottom: 12px;
}

.multisite-kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 1180px);
  margin: 0 auto 18px;
}

.multisite-kpis article {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(230, 189, 184, 0.58);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(27, 28, 28, 0.05);
}

.multisite-kpis span {
  display: block;
  color: #4b4544;
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.multisite-kpis strong {
  display: block;
  margin-top: 12px;
  color: var(--landing-primary);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.multisite-section,
.benefits-section {
  background: linear-gradient(180deg, #ffffff, var(--landing-bg));
}

.multisite-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 20px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.operations-map,
.site-list,
.maintenance-table-wrap {
  border: 1px solid rgba(230, 189, 184, 0.6);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(27, 28, 28, 0.07);
}

.operations-map {
  min-height: 470px;
  padding: 22px;
}

.geo-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.geo-filters button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(166, 0, 11, 0.18);
  border-radius: 999px;
  background: var(--landing-surface-soft);
  color: #3c3736;
  font-size: 13px;
  font-weight: 850;
}

.large-map {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(230, 189, 184, 0.2) 1px, transparent 1px),
    linear-gradient(0deg, rgba(230, 189, 184, 0.2) 1px, transparent 1px),
    radial-gradient(circle at 62% 30%, rgba(255, 218, 213, 0.72), transparent 26%),
    linear-gradient(135deg, #fbf9f8, #f0eded);
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.large-map::before {
  content: "";
  position: absolute;
  inset: 52px 72px 48px 54px;
  border: 2px solid rgba(166, 0, 11, 0.12);
  border-radius: 44% 56% 48% 52%;
  transform: rotate(-11deg);
}

.site-pin {
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  border: 5px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(27, 28, 28, 0.2);
}

.pin-one { left: 18%; top: 28%; }
.pin-two { left: 42%; top: 38%; }
.pin-three { left: 68%; top: 24%; }
.pin-four { left: 72%; top: 66%; }
.pin-five { left: 34%; top: 72%; }
.pin-six { left: 56%; top: 52%; }

.ok { background: var(--landing-green); }
.attention { background: var(--landing-amber); }
.danger { background: var(--landing-primary); }

.site-list {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
}

.site-list article {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: var(--landing-surface-soft);
}

.site-list strong {
  color: var(--landing-text);
  font-size: 16px;
  font-weight: 900;
}

.site-list small {
  color: #4b4544;
  font-size: 14px;
  font-weight: 750;
}

.status {
  justify-self: start;
  padding: 4px 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.section-cta {
  width: 100%;
  margin-top: 6px;
}

.maintenance-table-wrap {
  width: min(100%, 1180px);
  margin: 0 auto;
  overflow-x: auto;
}

.maintenance-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.maintenance-table th,
.maintenance-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(230, 189, 184, 0.5);
  text-align: left;
  white-space: nowrap;
}

.maintenance-table th {
  color: #4b4443;
  background: var(--landing-surface-soft);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.maintenance-table td {
  color: var(--landing-text);
  font-size: 15px;
  font-weight: 780;
}

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

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

.operations-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.operations-timeline li {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(230, 189, 184, 0.62);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(27, 28, 28, 0.05);
}

.operations-timeline span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--landing-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.operations-timeline strong {
  display: block;
  margin-bottom: 10px;
  color: var(--landing-text);
  font-size: 20px;
  line-height: 1.12;
  font-weight: 900;
}

.operations-timeline p {
  color: #4b4544;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 650;
}

.role-benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.role-benefits-grid article {
  min-height: 220px;
}

.role-cta-section {
  padding: 0 32px 78px;
  background: var(--landing-bg);
}

.role-cta-box,
.lead-magnet-box,
.final-cta-box {
  width: min(100%, 1180px);
  margin: 0 auto;
  border-radius: 28px;
  background: var(--landing-primary);
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(166, 0, 11, 0.18);
}

.role-cta-box,
.lead-magnet-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
}

.role-cta-box h2,
.lead-magnet-box h2,
.final-cta-box h2 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.role-cta-box .landing-button-primary,
.lead-magnet-box .landing-button-primary,
.final-cta-box .landing-button-primary {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--landing-primary);
  box-shadow: none;
}

.role-cta-box .landing-button-primary:hover,
.lead-magnet-box .landing-button-primary:hover,
.final-cta-box .landing-button-primary:hover {
  background: var(--landing-primary-soft);
}

.lead-magnet-section,
.faq-section {
  background: #ffffff;
}

.lead-magnet-box {
  background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-bright));
}

.lead-magnet-box .landing-eyebrow,
.final-cta-box .landing-eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.lead-magnet-box p:not(.landing-eyebrow) {
  max-width: 700px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

.demo-section {
  background: var(--landing-surface-soft);
}

.demo-form {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(230, 189, 184, 0.64);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(27, 28, 28, 0.08);
}

.hidden-field {
  display: none;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.form-progress li {
  min-height: 44px;
  padding: 12px;
  border-radius: 14px;
  background: var(--landing-surface-soft);
  color: #4b4544;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.form-progress .is-active {
  background: var(--landing-primary);
  color: #ffffff;
}

.form-message {
  display: none;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-error {
  background: #ffdad6;
  color: #93000a;
}

.form-message.is-success {
  background: #dcfce7;
  color: #166534;
}

.form-step {
  display: none;
  border: 0;
  padding: 0;
  margin: 0;
}

.form-step.is-active {
  display: block;
}

.form-step legend {
  margin-bottom: 22px;
  color: var(--landing-text);
  font-size: 22px;
  font-weight: 900;
}

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

.demo-form label {
  display: grid;
  gap: 8px;
  color: #3c3736;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(230, 189, 184, 0.9);
  border-radius: 14px;
  background: var(--landing-bg);
  color: var(--landing-text);
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 650;
  text-transform: none;
}

.demo-form textarea {
  min-height: 120px;
  resize: vertical;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline: 3px solid rgba(166, 0, 11, 0.18);
  border-color: var(--landing-primary);
}

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

.checkbox-grid label,
.privacy-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 48px;
  padding: 12px;
  border-radius: 14px;
  background: var(--landing-surface-soft);
  text-transform: none;
}

.privacy-field {
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
  padding-inline: 16px;
  line-height: 1.35;
}

.privacy-field span {
  display: inline;
  min-width: 0;
}

.checkbox-grid input,
.privacy-field input {
  width: auto;
  min-height: 0;
  margin-top: 3px;
}

.privacy-field input {
  flex: 0 0 auto;
  margin-top: 0;
}

.form-note {
  margin: 12px 0 0;
  color: #675f5d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.full-field,
.privacy-field {
  margin-top: 18px;
}

.privacy-field a {
  color: var(--landing-primary);
  text-decoration: underline;
}

.turnstile-field {
  display: flex;
  justify-content: flex-start;
  min-height: 70px;
  margin-top: 18px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}

[data-form-submit] {
  display: none;
}

.demo-form.is-final [data-form-next] {
  display: none;
}

.demo-form.is-final [data-form-submit] {
  display: inline-flex;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(100%, 980px);
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid rgba(230, 189, 184, 0.62);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(27, 28, 28, 0.04);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--landing-text);
  cursor: pointer;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--landing-primary);
  font-size: 24px;
  line-height: 1;
}

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

.faq-list p {
  padding: 0 22px 22px;
  color: #4b4544;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 650;
}

.final-cta-section {
  padding: 80px 32px;
  background: var(--landing-surface-soft);
}

.final-cta-box {
  padding: 50px;
  text-align: center;
}

.final-cta-box h2 {
  margin: 0 auto 26px;
}

.landing-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 46px 32px;
  border-top: 1px solid rgba(230, 189, 184, 0.62);
  background: #ffffff;
}

.landing-footer > div,
.landing-footer nav {
  width: min(100%, 540px);
}

.landing-footer img {
  width: 180px;
  height: auto;
  margin-bottom: 16px;
}

.landing-footer p,
.landing-footer a {
  color: #4b4544;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.landing-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.landing-footer a:hover {
  color: var(--landing-primary);
}

.thank-you-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  gap: 28px;
  padding: 42px 22px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 218, 213, 0.78), transparent 26%),
    var(--landing-bg);
}

.thank-you-card {
  width: min(100%, 760px);
  max-width: 100%;
  box-sizing: border-box;
  padding: 46px;
  border: 1px solid rgba(230, 189, 184, 0.64);
  border-radius: 28px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 24px 64px rgba(27, 28, 28, 0.08);
}

.thank-you-card > .material-symbols-outlined {
  margin-bottom: 22px;
  color: var(--landing-primary);
  font-size: 58px;
}

.thank-you-card h1 {
  color: var(--landing-text);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  font-weight: 900;
}

.thank-you-card p:not(.landing-eyebrow) {
  max-width: 560px;
  margin: 18px auto 0;
  color: #4b4544;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 650;
}

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

  .landing-hero-copy {
    max-width: 880px;
  }

  .dashboard-shell {
    max-width: 880px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 1400px) and (min-width: 1181px) {
  .landing-hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(470px, 0.94fr);
    gap: 34px;
  }

  .landing-hero h1 {
    font-size: 60px;
    line-height: 1.02;
  }

  .landing-subtitle {
    max-width: 700px;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .landing-hero-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
    gap: 34px;
  }

  .landing-hero h1 {
    font-size: 60px;
  }

  .equipment-grid,
  .operations-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .landing-nav {
    min-height: 78px;
    padding: 0 22px;
  }

  .landing-logo img {
    width: 158px;
  }

  .landing-menu-button {
    display: inline-flex;
  }

  .landing-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(230, 189, 184, 0.7);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 56px rgba(27, 28, 28, 0.16);
  }

  .landing-header.is-open .landing-menu {
    display: flex;
  }

  .landing-menu a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 0 14px;
    border-radius: 14px;
  }

  .landing-nav-cta {
    margin-top: 8px;
  }

  .landing-hero {
    padding: 124px 22px 64px;
  }

  .landing-benefits,
  .audience-cards,
  .comparison-grid,
  .multisite-layout,
  .role-benefits-grid,
  .multisite-kpis {
    grid-template-columns: 1fr;
  }

  .problems-grid,
  .equipment-grid,
  .operations-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-main {
    grid-template-columns: 1fr;
  }

  .audience-section {
    padding: 68px 22px 46px;
  }

  .section-block {
    padding: 62px 22px;
  }

  .role-cta-section {
    padding: 0 22px 62px;
  }

  .role-cta-box,
  .lead-magnet-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .role-cta-box .landing-button,
  .lead-magnet-box .landing-button {
    width: 100%;
  }

  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

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

  .landing-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .landing-hero {
    padding-top: 112px;
  }

  .landing-hero h1 {
    font-size: 42px;
  }

  .landing-subtitle {
    font-size: 17px;
  }

  .landing-actions,
  .landing-button {
    width: 100%;
  }

  .dashboard-shell {
    padding: 12px;
    border-radius: 22px;
  }

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

  .dashboard-kpis article {
    min-height: 86px;
    padding: 13px;
  }

  .dashboard-kpis strong {
    font-size: 24px;
  }

  .dashboard-panel {
    padding: 14px;
  }

  .site-map {
    min-height: 190px;
  }

  .issues-panel li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .audience-cards article {
    min-height: 0;
    padding: 24px;
  }

  .problems-grid,
  .equipment-grid,
  .operations-timeline {
    grid-template-columns: 1fr;
  }

  .operations-timeline li {
    min-height: 0;
  }

  .maintenance-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .maintenance-table,
  .maintenance-table thead,
  .maintenance-table tbody,
  .maintenance-table tr,
  .maintenance-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .maintenance-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .maintenance-table tr {
    margin-bottom: 14px;
    padding: 16px;
    border: 1px solid rgba(230, 189, 184, 0.62);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(27, 28, 28, 0.05);
  }

  .maintenance-table td {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(230, 189, 184, 0.36);
    white-space: normal;
    text-align: right;
  }

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

  .maintenance-table td::before {
    content: attr(data-label);
    color: #4b4544;
    font-weight: 900;
    text-align: left;
  }

  .comparison-card,
  .problems-grid article,
  .equipment-grid article,
  .role-benefits-grid article {
    min-height: 0;
    padding: 24px;
  }

  .operations-map {
    min-height: 360px;
    padding: 14px;
  }

  .large-map {
    min-height: 300px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .demo-form,
  .final-cta-box,
  .thank-you-card {
    padding: 24px;
  }

  .form-progress {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }
}
