:root {
  --bg: #08101f;
  --paper: rgba(12, 20, 43, 0.92);
  --ink: #f4efe4;
  --muted: #b9c3d8;
  --brand: #1f8cff;
  --brand-deep: #86c1ff;
  --accent: #d8b14f;
  --water: #0077ff;
  --fire: #df2c14;
  --mold: #178a2d;
  --line: rgba(216, 177, 79, 0.24);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(31, 140, 255, 0.22), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(216, 177, 79, 0.16), transparent 24%),
    radial-gradient(circle at 45% 30%, rgba(31, 140, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #03060d 0%, #07111f 42%, #02050c 100%);
}

main {
  position: relative;
}

main::before {
  content: "";
  position: absolute;
  inset: 40px 0 auto;
  height: 420px;
  background:
    radial-gradient(circle at 15% 20%, rgba(31, 140, 255, 0.14), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(216, 177, 79, 0.1), transparent 22%),
    radial-gradient(circle at 60% 70%, rgba(31, 140, 255, 0.06), transparent 20%);
  pointer-events: none;
  filter: blur(20px);
  z-index: -1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 26%);
  opacity: 0.34;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 4, 10, 0.72), rgba(2, 4, 10, 0.01) 14%, rgba(2, 4, 10, 0.01) 86%, rgba(2, 4, 10, 0.72)),
    url("assets/real-jobs/water-dryout-corridor.png") left center / 43% auto no-repeat,
    url("assets/fire-web/fire-smoke-damage.png") center 22% / 39% auto no-repeat,
    url("assets/real-jobs/mold-wall-damage.png") right center / 43% auto no-repeat;
  filter: blur(3px) saturate(1.14) brightness(0.72) contrast(1.2);
  opacity: 0.76;
  pointer-events: none;
  z-index: -1;
}

.alert-strip {
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(18, 33, 47, 0.08);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(18, 33, 47, 0.94), rgba(10, 43, 88, 0.96));
  box-shadow: var(--shadow);
}

.alert-track {
  display: flex;
  width: max-content;
  gap: 32px;
  padding: 12px 20px;
  color: #fff9ee;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: ticker 28s linear infinite;
}

.alert-track span {
  position: relative;
  padding-left: 18px;
}

.alert-track span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 18px;
  background: white;
  padding: 4px;
  border: 1px solid rgba(18, 33, 47, 0.08);
  box-shadow: var(--shadow);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong,
.hero h1,
.section h2,
.service-card h3,
.feature-panel h3,
.timeline h3,
.hero-card h2,
.contact-card h3 {
  font-family: "Outfit", sans-serif;
}

.brand-copy small {
  color: var(--muted);
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu a {
  color: var(--muted);
  font-weight: 600;
}

.menu-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.menu-cta,
.button-primary {
  background: linear-gradient(135deg, var(--ink), #0a2b58);
  color: #fff7ef;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.button:hover,
.menu-cta:hover {
  transform: translateY(-1px);
}

.button-primary {
  box-shadow: 0 14px 32px rgba(10, 43, 88, 0.24);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  position: relative;
  overflow: hidden;
  min-height: 760px;
  margin-top: 22px;
  padding: 46px 34px;
  align-items: center;
  border: 1px solid rgba(216, 177, 79, 0.22);
  border-radius: 36px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.54);
  background: rgba(4, 8, 18, 0.68);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px -60px;
  background:
    linear-gradient(90deg, rgba(2, 4, 10, 0.92), rgba(2, 4, 10, 0.01) 12%, rgba(2, 4, 10, 0.01) 88%, rgba(2, 4, 10, 0.92)),
    url("assets/real-jobs/water-dryout-corridor.png") -2% 58% / 38% auto no-repeat,
    url("assets/fire-web/fire-damaged-wall.jpg") 50% 16% / 32% auto no-repeat,
    url("assets/real-jobs/mold-wall-damage.png") 102% 61% / 38% auto no-repeat;
  filter: blur(5px) saturate(1.08) brightness(0.78) contrast(1.18);
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 48%, rgba(31, 140, 255, 0.4), transparent 25%),
    radial-gradient(circle at 50% 18%, rgba(223, 44, 20, 0.36), transparent 22%),
    radial-gradient(circle at 84% 52%, rgba(23, 138, 45, 0.3), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at center, transparent 48%, rgba(2, 4, 10, 0.56) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.hero-scene-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 4, 10, 0.84) 0%, rgba(2, 4, 10, 0.44) 32%, rgba(2, 4, 10, 0.1) 52%, rgba(2, 4, 10, 0.52) 72%, rgba(2, 4, 10, 0.88) 100%),
    radial-gradient(circle at 50% 14%, rgba(255, 153, 88, 0.18), transparent 18%),
    radial-gradient(circle at 76% 58%, rgba(92, 212, 116, 0.12), transparent 16%),
    radial-gradient(circle at 18% 50%, rgba(84, 161, 255, 0.16), transparent 16%);
  pointer-events: none;
}

.hero-scene-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 18px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 20%, rgba(0, 0, 0, 0.16) 100%);
  mix-blend-mode: soft-light;
  opacity: 0.42;
  pointer-events: none;
}

.hero-copy h1 {
  text-shadow:
    0 18px 42px rgba(0, 0, 0, 0.48),
    0 0 28px rgba(8, 14, 31, 0.32);
}

.hero-text {
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.34);
}

.hero-card {
  backdrop-filter: blur(16px);
  background:
    linear-gradient(180deg, rgba(10, 18, 38, 0.9), rgba(6, 11, 25, 0.94)),
    rgba(12, 20, 43, 0.92);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(216, 177, 79, 0.1);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 26%),
    radial-gradient(circle at 20% 18%, rgba(31, 140, 255, 0.12), transparent 18%);
  pointer-events: none;
}

.hero-copy,
.hero-card,
.service-card,
.damage-card,
.project-card,
.feature-panel,
.timeline article,
.contact-card,
.contact-form,
.cta-band {
  animation: rise 650ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-deep);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.93;
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.split-copy p,
.service-card p,
.feature-panel p,
.timeline p,
.contact-card li,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-copy,
.hero-card {
  position: relative;
  z-index: 2;
}

.hero-scene-stack,
.hero-scene-overlay,
.hero-scene-labels {
  position: absolute;
  inset: 0;
}

.hero-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: hero-scene-cycle 18s infinite;
}

.hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.08);
  animation: hero-scene-zoom 18s infinite;
}

.hero-scene-fire {
  animation-delay: 6s;
}

.hero-scene-fire img {
  animation-delay: 6s;
}

.hero-scene-mold {
  animation-delay: 12s;
}

.hero-scene-mold img {
  animation-delay: 12s;
}

.hero-scene-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.88) 0%, rgba(5, 10, 18, 0.76) 36%, rgba(5, 10, 18, 0.46) 60%, rgba(5, 10, 18, 0.72) 100%),
    linear-gradient(180deg, rgba(3, 7, 14, 0.16), rgba(3, 7, 14, 0.68));
}

.hero-scene-labels {
  z-index: 2;
  inset: auto 24px 22px auto;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.scene-label {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 13, 28, 0.8);
  border: 1px solid rgba(216, 177, 79, 0.16);
  color: #fff8ed;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.scene-label-water {
  color: #87beff;
}

.scene-label-fire {
  color: #ff8e72;
}

.scene-label-mold {
  color: #79d48f;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li,
.trust-strip div {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.hero-points-emergency li {
  font-weight: 800;
}

.water-pill {
  border-color: rgba(0, 119, 255, 0.18);
  background: rgba(0, 119, 255, 0.1);
  color: #0653a6;
}

.fire-pill {
  border-color: rgba(223, 44, 20, 0.18);
  background: rgba(223, 44, 20, 0.1);
  color: #a41f10;
}

.mold-pill {
  border-color: rgba(23, 138, 45, 0.18);
  background: rgba(23, 138, 45, 0.1);
  color: #146b26;
}

.hero-card,
.service-card,
.feature-panel,
.timeline article,
.contact-card,
.contact-form,
.cta-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 235, 221, 0.88)),
    linear-gradient(135deg, rgba(0, 119, 255, 0.16), rgba(223, 44, 20, 0.12) 58%, rgba(23, 138, 45, 0.14));
}

.hero-logo {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 24px auto 8px;
  border-radius: 24px;
  background: white;
  padding: 12px;
  border: 1px solid rgba(18, 33, 47, 0.08);
}

.response-spectrum {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.spectrum {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(18, 33, 47, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.spectrum strong {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
}

.spectrum span {
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

.water-spectrum strong {
  color: var(--water);
}

.fire-spectrum strong {
  color: var(--fire);
}

.mold-spectrum strong {
  color: var(--mold);
}

.card-tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8, 14, 31, 0.68);
  color: var(--accent);
  font-weight: 800;
}

.hero-card h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.1;
}

.hero-metrics {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.hero-metrics article {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero-metrics strong {
  font-size: 1.8rem;
  font-family: "Outfit", sans-serif;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.section {
  padding: 88px 0 0;
}

.section-heading {
  max-width: 700px;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.service-grid,
.timeline,
.project-grid,
.scenario-grid,
.visual-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

.service-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.service-card span,
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--brand-deep);
  font-weight: 800;
}

.service-card::after,
.damage-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  opacity: 0.14;
  filter: blur(6px);
}

.service-card-water::after,
.damage-card-water::after {
  background: var(--water);
}

.service-card-fire::after,
.damage-card-fire::after {
  background: var(--fire);
}

.service-card-mold::after,
.damage-card-mold::after {
  background: var(--mold);
}

.service-card-neutral::after {
  background: var(--ink);
}

.service-card-water span {
  background: rgba(0, 119, 255, 0.12);
  color: var(--water);
}

.service-card-fire span {
  background: rgba(223, 44, 20, 0.12);
  color: var(--fire);
}

.service-card-mold span {
  background: rgba(23, 138, 45, 0.12);
  color: var(--mold);
}

.damage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

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

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

.scenario-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 235, 223, 0.94)),
    rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.scenario-card-water {
  background:
    linear-gradient(180deg, rgba(238, 247, 255, 0.96), rgba(227, 239, 255, 0.96)),
    white;
}

.scenario-card-fire {
  background:
    linear-gradient(180deg, rgba(255, 241, 237, 0.96), rgba(255, 231, 221, 0.96)),
    white;
}

.scenario-card-mold {
  background:
    linear-gradient(180deg, rgba(239, 250, 241, 0.96), rgba(229, 244, 231, 0.96)),
    white;
}

.scenario-type {
  margin: 0 0 12px;
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scenario-card h3 {
  margin: 0 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.scenario-card p {
  color: var(--muted);
  line-height: 1.7;
}

.scenario-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.scenario-list li {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font-weight: 700;
}

.visual-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 235, 223, 0.94)),
    rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.visual-card h3 {
  margin: 18px 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: 1.45rem;
  line-height: 1.08;
}

.visual-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.visual-photo {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(18, 33, 47, 0.08);
  box-shadow: inset 0 -60px 90px rgba(7, 12, 22, 0.32);
  background: #d9e0e8;
}

.visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 25%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.04), rgba(5, 10, 18, 0.5));
}

.visual-photo::after {
  content: "";
  position: absolute;
  inset: auto -30px -50px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(8px);
}

.visual-photo span {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 18, 30, 0.62);
  color: #fffaf1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.damage-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 235, 223, 0.92)),
    rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.damage-card-water {
  background:
    linear-gradient(180deg, rgba(238, 247, 255, 0.94), rgba(227, 239, 255, 0.96)),
    white;
}

.damage-card-fire {
  background:
    linear-gradient(180deg, rgba(255, 241, 237, 0.96), rgba(255, 231, 221, 0.96)),
    white;
}

.damage-card-mold {
  background:
    linear-gradient(180deg, rgba(239, 250, 241, 0.96), rgba(229, 244, 231, 0.96)),
    white;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

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

.project-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 235, 223, 0.92)),
    rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.project-card-logo {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 18px;
}

.project-card-logo img {
  width: 100%;
  border-radius: 24px;
  background: white;
  padding: 12px;
  border: 1px solid rgba(18, 33, 47, 0.08);
}

.project-label {
  margin: 0 0 12px;
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.project-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.project-tags li {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  font-weight: 700;
}

.feature-panel {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.feature-panel article + article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

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

.timeline article {
  padding: 24px;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px;
  margin-top: 88px;
  background:
    linear-gradient(135deg, rgba(0, 119, 255, 0.16), rgba(223, 44, 20, 0.18) 50%, rgba(23, 138, 45, 0.16)),
    rgba(255, 250, 244, 0.84);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  margin-top: 28px;
}

.contact-card,
.contact-form {
  padding: 28px;
}

.contact-card ul {
  padding-left: 18px;
  margin: 18px 0 0;
}

.company-phone-display,
.cta-phone-display {
  display: grid;
  gap: 2px;
}

.company-phone-display {
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(216, 177, 79, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.08), rgba(255, 250, 243, 0.02)),
    rgba(8, 14, 31, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.company-phone-label {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-phone-word,
.cta-phone-display strong {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
  color: #fff7ee;
}

.company-phone-number,
.cta-phone-display span {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 249, 240, 0.84);
}

.cta-phone-display {
  margin-top: 16px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.7);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 40px 0 20px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-35%);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-scene-cycle {
  0%,
  28% {
    opacity: 1;
  }

  33%,
  100% {
    opacity: 0;
  }
}

@keyframes hero-scene-zoom {
  0% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1.16);
  }
}

@media (max-width: 980px) {
  .hero,
  .damage-grid,
  .scenario-grid,
  .visual-grid,
  .split-section,
  .contact-layout,
  .trust-strip,
  .service-grid,
  .timeline,
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .topbar {
    border-radius: 32px;
  }

  .hero {
    min-height: 0;
    padding: 34px 22px;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 248, 240, 0.96);
    box-shadow: var(--shadow);
  }

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

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 18px, 1180px);
  }

  .hero,
  .damage-grid,
  .scenario-grid,
  .visual-grid,
  .split-section,
  .contact-layout,
  .trust-strip,
  .service-grid,
  .timeline,
  .project-grid,
  .footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .topbar {
    position: sticky;
    top: 8px;
    align-items: center;
    padding: 14px;
  }

  .brand-copy small {
    display: none;
  }

  .alert-track {
    gap: 22px;
    font-size: 0.72rem;
  }

  .project-card-logo {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-scene-labels {
    inset: auto 18px 18px 18px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 980px) {
  body::after {
    background:
      linear-gradient(180deg, rgba(4, 8, 18, 0.42), rgba(4, 8, 18, 0.08)),
      url("assets/real-jobs/water-dryout-corridor.png") 0% 18% / 58% auto no-repeat,
      url("assets/fire-web/fire-smoke-damage.png") 50% 18% / 50% auto no-repeat,
      url("assets/real-jobs/mold-wall-damage.png") 100% 22% / 58% auto no-repeat;
    filter: blur(5px) saturate(1.02) brightness(0.66) contrast(1.12);
    opacity: 0.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scene,
  .hero-scene img,
  .alert-track,
  .hero-copy,
  .hero-card,
  .service-card,
  .damage-card,
  .project-card,
  .feature-panel,
  .timeline article,
  .contact-card,
  .contact-form,
  .cta-band {
    animation: none !important;
  }

  .hero-scene {
    opacity: 0;
  }

  .hero-scene-water {
    opacity: 1;
  }
}

/* Business-card-inspired theme overrides */
.topbar {
  background: rgba(8, 14, 31, 0.88);
  border-color: rgba(216, 177, 79, 0.22);
}

.alert-strip {
  border-color: rgba(216, 177, 79, 0.24);
  background: linear-gradient(90deg, rgba(7, 13, 28, 0.98), rgba(15, 28, 59, 0.98));
  position: relative;
  overflow: hidden;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(31, 140, 255, 0.12);
}

.alert-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 16px),
    linear-gradient(90deg, rgba(31, 140, 255, 0.08), transparent 28%, rgba(223, 44, 20, 0.08) 50%, transparent 72%, rgba(23, 138, 45, 0.08));
  mix-blend-mode: screen;
  opacity: 0.8;
  pointer-events: none;
}

.menu-cta,
.button-primary {
  background: linear-gradient(135deg, #18315f, #1f8cff);
  color: #fff9f0;
}

.button-secondary {
  background: rgba(12, 20, 43, 0.72);
  color: var(--ink);
}

.hero-card,
.service-card,
.feature-panel,
.timeline article,
.contact-card,
.contact-form,
.cta-band,
.damage-card,
.scenario-card,
.project-card,
.visual-card {
  background:
    linear-gradient(180deg, rgba(13, 21, 45, 0.96), rgba(7, 13, 29, 0.96)),
    rgba(12, 20, 43, 0.92);
  border-color: rgba(216, 177, 79, 0.22);
  position: relative;
}

.hero-card::before,
.service-card::before,
.feature-panel::before,
.timeline article::before,
.contact-card::before,
.contact-form::before,
.damage-card::before,
.scenario-card::before,
.project-card::before,
.visual-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 177, 79, 0.9), transparent);
}

.damage-card-water,
.service-card-water,
.water-spectrum {
  background:
    linear-gradient(180deg, rgba(13, 28, 61, 0.98), rgba(7, 17, 37, 0.98)),
    rgba(12, 20, 43, 0.92);
}

.damage-card-fire,
.service-card-fire,
.fire-spectrum {
  background:
    linear-gradient(180deg, rgba(42, 16, 19, 0.98), rgba(15, 9, 13, 0.98)),
    rgba(12, 20, 43, 0.92);
}

.damage-card-mold,
.service-card-mold,
.mold-spectrum {
  background:
    linear-gradient(180deg, rgba(14, 34, 23, 0.98), rgba(8, 18, 14, 0.98)),
    rgba(12, 20, 43, 0.92);
}

.scenario-card-water {
  background:
    linear-gradient(180deg, rgba(13, 28, 61, 0.98), rgba(7, 17, 37, 0.98)),
    rgba(12, 20, 43, 0.92);
}

.scenario-card-fire {
  background:
    linear-gradient(180deg, rgba(42, 16, 19, 0.98), rgba(15, 9, 13, 0.98)),
    rgba(12, 20, 43, 0.92);
}

.scenario-card-mold {
  background:
    linear-gradient(180deg, rgba(14, 34, 23, 0.98), rgba(8, 18, 14, 0.98)),
    rgba(12, 20, 43, 0.92);
}

.project-label,
.scenario-type,
.eyebrow,
.card-tag {
  color: var(--accent);
}

.visual-photo {
  border-color: rgba(216, 177, 79, 0.18);
}

.visual-photo span {
  background: rgba(9, 16, 34, 0.72);
  border: 1px solid rgba(216, 177, 79, 0.18);
}

.project-card-logo img,
.hero-logo,
.brand-logo {
  border-color: rgba(216, 177, 79, 0.24);
}

.contact-form input,
.contact-form textarea {
  background: rgba(8, 14, 31, 0.72);
  color: var(--ink);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(185, 195, 216, 0.72);
}

.menu {
  color: var(--ink);
}

@media (max-width: 980px) {
  .menu {
    background: rgba(9, 16, 34, 0.98);
  }
}

/* Final brutal pass */
.hero {
  isolation: isolate;
  border-color: rgba(216, 177, 79, 0.28);
  box-shadow:
    0 30px 110px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(216, 177, 79, 0.08);
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-kicker span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(216, 177, 79, 0.18);
  background: rgba(9, 16, 34, 0.56);
  color: #f7f1e5;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.hero-emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(80, 14, 13, 0.82), rgba(148, 24, 24, 0.76));
  border: 1px solid rgba(255, 136, 116, 0.26);
  color: #fff3ef;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 18px 36px rgba(102, 17, 15, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-emergency-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6a4d;
  box-shadow: 0 0 0 0 rgba(255, 106, 77, 0.7);
  animation: pulse-dot 1.6s infinite;
}

.hero-actions {
  position: relative;
  z-index: 3;
}

.hero-points {
  position: relative;
  z-index: 3;
}

.hero-status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
  position: relative;
  z-index: 3;
}

.hero-status-card {
  padding: 16px 16px 14px;
  border-radius: 22px;
  border: 1px solid rgba(216, 177, 79, 0.18);
  background: rgba(7, 13, 28, 0.6);
  backdrop-filter: blur(12px);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-status-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 177, 79, 0.34);
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.36),
    0 0 28px rgba(31, 140, 255, 0.08);
}

.hero-status-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}

.hero-status-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-status-card-water strong {
  color: #79baff;
}

.hero-status-card-fire strong {
  color: #ff8d72;
}

.hero-status-card-mold strong {
  color: #79d48f;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 40px;
  bottom: 24px;
  width: 2px;
  background:
    linear-gradient(180deg, rgba(216, 177, 79, 0), rgba(216, 177, 79, 0.9), rgba(31, 140, 255, 0.9), rgba(23, 138, 45, 0.8), rgba(216, 177, 79, 0));
  opacity: 0.72;
  box-shadow: 0 0 24px rgba(216, 177, 79, 0.24);
}

.hero h1 {
  font-size: clamp(3.2rem, 5.6vw, 6rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.hero-text {
  max-width: 62ch;
  font-size: 1.08rem;
  color: #d7deef;
}

.button-primary,
.menu-cta {
  box-shadow:
    0 18px 34px rgba(19, 63, 132, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button-secondary {
  box-shadow: inset 0 0 0 1px rgba(216, 177, 79, 0.1);
}

.hero-card {
  transform: translateY(-4px);
  border-color: rgba(216, 177, 79, 0.28);
}

.hero-card h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
}

.response-spectrum {
  gap: 14px;
}

.spectrum {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.trust-strip {
  margin-top: 14px;
}

.trust-strip div {
  background: rgba(9, 16, 34, 0.66);
  backdrop-filter: blur(10px);
  border-color: rgba(216, 177, 79, 0.16);
  color: #edf3ff;
  font-weight: 700;
}

.floating-emergency {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: min(340px, calc(100vw - 28px));
  padding: 14px;
  border: 1px solid rgba(216, 177, 79, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(10, 18, 38, 0.94), rgba(6, 11, 25, 0.96)),
    rgba(12, 20, 43, 0.92);
  backdrop-filter: blur(16px);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(216, 177, 79, 0.08);
  overflow: hidden;
}

.floating-emergency::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 140, 255, 0.08), transparent 32%, rgba(223, 44, 20, 0.08) 56%, transparent 76%, rgba(23, 138, 45, 0.06)),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 18px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.floating-emergency-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #fff6e5;
}

.floating-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6a4d;
  box-shadow: 0 0 0 0 rgba(255, 106, 77, 0.7);
  animation: pulse-dot 1.8s infinite;
}

.floating-emergency-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.floating-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
}

.floating-button-primary {
  background: linear-gradient(135deg, #18315f, #1f8cff);
  color: #fff9f0;
  box-shadow:
    0 16px 30px rgba(19, 63, 132, 0.34),
    0 0 20px rgba(31, 140, 255, 0.16);
}

.floating-button-secondary {
  background: rgba(9, 16, 34, 0.72);
  border: 1px solid rgba(216, 177, 79, 0.18);
  color: #f6efe2;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 106, 77, 0.7);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(255, 106, 77, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 77, 0);
  }
}

@media (max-width: 980px) {
  .hero-copy::before {
    display: none;
  }

  .hero-status-grid {
    grid-template-columns: 1fr;
  }

  .floating-emergency {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 640px) {
  .hero-emergency-badge {
    font-size: 0.74rem;
    letter-spacing: 0.05em;
  }

  .hero-kicker {
    gap: 8px;
  }

  .hero-kicker span {
    font-size: 0.72rem;
  }

  .floating-emergency-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-dot {
    animation: none !important;
  }
}

/* Final premium polish */
.site-shell {
  width: min(1220px, calc(100% - 28px));
}

.brand-copy strong {
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: #d4def2;
}

.menu a {
  transition: color 160ms ease, opacity 160ms ease;
}

.menu a:hover {
  color: #ffffff;
}

.button {
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.menu-cta:hover {
  transform: translateY(-2px) scale(1.01);
}

.button-primary:hover,
.menu-cta:hover {
  box-shadow:
    0 22px 42px rgba(19, 63, 132, 0.42),
    0 0 28px rgba(31, 140, 255, 0.18);
}

.button-secondary:hover {
  border-color: rgba(216, 177, 79, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(216, 177, 79, 0.14),
    0 14px 28px rgba(0, 0, 0, 0.22);
}

.hero {
  border-radius: 42px;
}

.hero-copy {
  max-width: 720px;
  padding-right: 8px;
}

.hero-copy h1 {
  max-width: 9ch;
  font-size: clamp(3.5rem, 6.2vw, 6.8rem);
  text-wrap: balance;
}

.hero-text {
  max-width: 60ch;
}

.hero-kicker span,
.scene-label,
.card-tag {
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-status-card {
  overflow: hidden;
}

.hero-status-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 34%),
    linear-gradient(120deg, transparent 0 55%, rgba(255, 255, 255, 0.05) 55% 62%, transparent 62% 100%);
  pointer-events: none;
}

.hero-status-card-water {
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    0 0 26px rgba(31, 140, 255, 0.08);
}

.hero-status-card-fire {
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    0 0 26px rgba(223, 44, 20, 0.08);
}

.hero-status-card-mold {
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    0 0 26px rgba(23, 138, 45, 0.08);
}

.hero-card {
  border-radius: 30px;
}

.hero-card,
.service-card,
.damage-card,
.scenario-card,
.project-card,
.visual-card,
.contact-card,
.contact-form,
.feature-panel,
.timeline article {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-card:hover,
.damage-card:hover,
.scenario-card:hover,
.project-card:hover,
.visual-card:hover,
.timeline article:hover,
.contact-card:hover,
.contact-form:hover,
.feature-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 177, 79, 0.32);
  box-shadow:
    0 28px 54px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(31, 140, 255, 0.06);
}

.section {
  scroll-margin-top: 120px;
}

.section-heading {
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 96px;
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(216, 177, 79, 0.94), rgba(31, 140, 255, 0.42), transparent);
  border-radius: 999px;
}

.section h2 {
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.trust-strip div {
  position: relative;
  overflow: hidden;
}

.trust-strip div::after {
  content: "";
  position: absolute;
  inset: auto 14px 0 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 177, 79, 0.72), transparent);
}

.project-card-logo img,
.hero-logo,
.brand-logo,
.visual-photo {
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(216, 177, 79, 0.08);
}

.visual-photo {
  min-height: 250px;
}

.visual-photo img {
  transition: transform 400ms ease, filter 300ms ease;
}

.visual-card:hover .visual-photo img {
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.04);
}

.scenario-list li,
.project-tags li {
  box-shadow: inset 0 0 0 1px rgba(216, 177, 79, 0.08);
}

.floating-emergency {
  border-radius: 26px;
}

.floating-emergency-head strong {
  letter-spacing: -0.01em;
}

.floating-button {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.floating-button:hover {
  transform: translateY(-2px);
}

.floating-button-secondary:hover {
  border-color: rgba(216, 177, 79, 0.28);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

@media (max-width: 980px) {
  .site-shell {
    width: min(100% - 18px, 1220px);
  }

  .hero-copy {
    max-width: none;
    padding-right: 0;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

/* Final mamalon pass */
body {
  background:
    radial-gradient(circle at 14% 4%, rgba(39, 122, 255, 0.22), transparent 20%),
    radial-gradient(circle at 50% 0%, rgba(255, 96, 61, 0.12), transparent 18%),
    radial-gradient(circle at 86% 8%, rgba(33, 168, 80, 0.14), transparent 18%),
    linear-gradient(180deg, #02040a 0%, #06101d 34%, #03070f 72%, #010309 100%);
}

body::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 22%, rgba(255, 255, 255, 0.02) 100%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 11px),
    radial-gradient(circle at 50% 18%, rgba(216, 177, 79, 0.06), transparent 20%);
  opacity: 0.48;
}

body::after {
  background:
    linear-gradient(90deg, rgba(2, 4, 10, 0.84), rgba(2, 4, 10, 0.08) 14%, rgba(2, 4, 10, 0.08) 86%, rgba(2, 4, 10, 0.84)),
    linear-gradient(180deg, rgba(2, 5, 12, 0.2), rgba(2, 5, 12, 0.62)),
    url("assets/real-jobs/water-dryout-corridor.png") -2% 16% / 40% auto no-repeat,
    url("assets/fire-web/fire-smoke-damage.png") 50% 8% / 34% auto no-repeat,
    url("assets/real-jobs/mold-wall-damage.png") 102% 14% / 40% auto no-repeat;
  filter: blur(9px) saturate(1.16) brightness(0.58) contrast(1.22);
  opacity: 0.68;
}

.topbar {
  background:
    linear-gradient(180deg, rgba(10, 18, 38, 0.95), rgba(6, 11, 25, 0.96)),
    rgba(8, 14, 31, 0.9);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(216, 177, 79, 0.08);
}

.hero {
  margin-top: 24px;
  padding: 52px 38px;
  border-radius: 44px;
  border-color: rgba(216, 177, 79, 0.34);
  background:
    linear-gradient(180deg, rgba(7, 12, 25, 0.54), rgba(4, 8, 18, 0.72)),
    rgba(4, 8, 18, 0.72);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.68),
    0 0 0 1px rgba(216, 177, 79, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero::before {
  inset: -24px -42px;
  background:
    linear-gradient(90deg, rgba(2, 4, 10, 0.96), rgba(2, 4, 10, 0.08) 13%, rgba(2, 4, 10, 0.08) 87%, rgba(2, 4, 10, 0.96)),
    linear-gradient(180deg, rgba(2, 4, 10, 0.04), rgba(2, 4, 10, 0.34)),
    url("assets/real-jobs/water-dryout-corridor.png") -3% 58% / 37% auto no-repeat,
    url("assets/fire-web/fire-smoke-damage.png") 50% 16% / 31% auto no-repeat,
    url("assets/real-jobs/mold-wall-damage.png") 103% 58% / 37% auto no-repeat;
  filter: blur(7px) saturate(1.12) brightness(0.58) contrast(1.18);
  opacity: 0.94;
}

.hero::after {
  background:
    radial-gradient(circle at 18% 52%, rgba(31, 140, 255, 0.42), transparent 24%),
    radial-gradient(circle at 50% 18%, rgba(223, 44, 20, 0.34), transparent 19%),
    radial-gradient(circle at 84% 50%, rgba(23, 138, 45, 0.3), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%, rgba(0, 0, 0, 0.3) 100%),
    radial-gradient(circle at 50% 55%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.34) 78%);
}

.hero-scene-stack::before {
  background:
    linear-gradient(90deg, rgba(2, 4, 10, 0.9) 0%, rgba(2, 4, 10, 0.52) 30%, rgba(2, 4, 10, 0.06) 52%, rgba(2, 4, 10, 0.56) 72%, rgba(2, 4, 10, 0.92) 100%),
    radial-gradient(circle at 48% 14%, rgba(255, 147, 99, 0.22), transparent 16%),
    radial-gradient(circle at 78% 56%, rgba(92, 212, 116, 0.16), transparent 16%),
    radial-gradient(circle at 16% 50%, rgba(84, 161, 255, 0.18), transparent 16%);
}

.hero-scene-stack::after {
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.032) 0 2px, transparent 2px 16px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 16%, rgba(0, 0, 0, 0.22) 100%);
  opacity: 0.56;
}

.hero-scene img {
  filter: saturate(1.18) contrast(1.08) brightness(0.88);
  transform: scale(1.12);
}

.hero-copy {
  max-width: 740px;
}

.hero-copy::before {
  left: -22px;
  top: 34px;
  bottom: 12px;
  width: 3px;
  background:
    linear-gradient(180deg, rgba(216, 177, 79, 0), rgba(216, 177, 79, 0.96), rgba(31, 140, 255, 0.9), rgba(23, 138, 45, 0.76), rgba(216, 177, 79, 0));
  opacity: 0.9;
  box-shadow:
    0 0 18px rgba(216, 177, 79, 0.22),
    0 0 28px rgba(31, 140, 255, 0.14);
}

.hero-copy h1 {
  color: #fffaf1;
  max-width: 8.6ch;
  font-size: clamp(3.7rem, 6.5vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-shadow:
    0 22px 54px rgba(0, 0, 0, 0.58),
    0 0 38px rgba(6, 13, 29, 0.24);
}

.hero-text {
  max-width: 61ch;
  margin-top: 20px;
  font-size: 1.08rem;
  color: #dbe6fa;
}

.hero-emergency-badge {
  background:
    linear-gradient(135deg, rgba(76, 16, 18, 0.88), rgba(136, 28, 24, 0.8));
  border-color: rgba(255, 149, 124, 0.34);
  box-shadow:
    0 20px 40px rgba(101, 20, 15, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 26px rgba(223, 44, 20, 0.14);
}

.hero-kicker {
  gap: 12px;
  margin-top: 20px;
}

.hero-kicker span {
  padding: 9px 14px;
  border-color: rgba(216, 177, 79, 0.22);
  background:
    linear-gradient(180deg, rgba(12, 21, 44, 0.78), rgba(7, 13, 28, 0.7));
  color: #f9f2e5;
}

.hero-actions {
  gap: 16px;
  margin-top: 30px;
}

.hero-points li,
.trust-strip div {
  backdrop-filter: blur(12px);
}

.hero-status-grid {
  gap: 16px;
  margin-top: 28px;
}

.hero-status-card {
  padding: 18px 18px 16px;
  border-radius: 24px;
  border-color: rgba(216, 177, 79, 0.22);
  background:
    linear-gradient(180deg, rgba(11, 19, 39, 0.88), rgba(7, 13, 28, 0.84));
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-status-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 58px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(31, 140, 255, 0.08);
}

.hero-status-card strong {
  font-size: 1.32rem;
}

.hero-card {
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(10, 18, 38, 0.96), rgba(6, 11, 25, 0.98)),
    rgba(12, 20, 43, 0.96);
  border-color: rgba(216, 177, 79, 0.3);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(216, 177, 79, 0.08);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -24px -30px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(216, 177, 79, 0.26), rgba(216, 177, 79, 0));
  filter: blur(10px);
  pointer-events: none;
}

.hero-card h2,
.section h2,
.service-card h3,
.damage-card h3,
.scenario-card h3,
.project-card h3,
.feature-panel h3,
.timeline h3,
.contact-card h3 {
  color: #fff7ea;
}

.response-spectrum {
  gap: 16px;
}

.spectrum {
  border-color: rgba(216, 177, 79, 0.18);
  background:
    linear-gradient(180deg, rgba(13, 23, 46, 0.92), rgba(9, 16, 34, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 0 1px rgba(216, 177, 79, 0.04);
}

.section {
  padding-top: 94px;
}

.section-heading {
  max-width: 760px;
}

.section-heading::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 250, 241, 0.96), rgba(216, 177, 79, 0.92) 52%, rgba(216, 177, 79, 0.12) 100%);
  box-shadow:
    0 0 0 7px rgba(216, 177, 79, 0.08),
    0 0 22px rgba(216, 177, 79, 0.18);
}

.section-heading::after {
  width: 126px;
  height: 3px;
  margin-top: 20px;
  background: linear-gradient(90deg, rgba(216, 177, 79, 1), rgba(31, 140, 255, 0.48), rgba(23, 138, 45, 0.18), transparent);
}

.section h2 {
  letter-spacing: -0.035em;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.service-card,
.damage-card,
.scenario-card,
.project-card,
.visual-card,
.contact-card,
.contact-form,
.feature-panel,
.timeline article {
  border-color: rgba(216, 177, 79, 0.24);
  box-shadow:
    0 24px 46px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-card:hover,
.damage-card:hover,
.scenario-card:hover,
.project-card:hover,
.visual-card:hover,
.timeline article:hover,
.contact-card:hover,
.contact-form:hover,
.feature-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 177, 79, 0.36);
  box-shadow:
    0 32px 62px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(31, 140, 255, 0.06);
}

.trust-strip {
  gap: 14px;
}

.trust-strip div {
  padding: 12px 18px;
  border-color: rgba(216, 177, 79, 0.2);
  background:
    linear-gradient(180deg, rgba(12, 20, 43, 0.88), rgba(8, 14, 31, 0.84));
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.visual-photo {
  min-height: 270px;
  border-color: rgba(216, 177, 79, 0.2);
}

.visual-photo::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(5, 10, 18, 0), rgba(5, 10, 18, 0.7));
}

.visual-card:hover .visual-photo img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.08) brightness(0.96);
}

.visual-photo span,
.scenario-list li,
.project-tags li {
  border-color: rgba(216, 177, 79, 0.18);
  background: rgba(8, 14, 31, 0.76);
  color: #f8f1e3;
}

.cta-band {
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(12, 23, 49, 0.98), rgba(7, 13, 29, 0.98));
  border-color: rgba(216, 177, 79, 0.28);
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(216, 177, 79, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.footer {
  align-items: center;
  padding-top: 42px;
  border-top: 1px solid rgba(216, 177, 79, 0.12);
}

.footer p:first-child {
  color: #fff4e0;
  font-weight: 800;
}

.floating-emergency {
  width: min(360px, calc(100vw - 28px));
  padding: 15px;
  border-color: rgba(216, 177, 79, 0.28);
  background:
    linear-gradient(180deg, rgba(12, 22, 45, 0.96), rgba(7, 13, 28, 0.98)),
    rgba(12, 20, 43, 0.96);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(216, 177, 79, 0.08);
}

.floating-emergency::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.floating-emergency-head {
  margin-bottom: 14px;
}

.floating-emergency-head strong {
  font-size: 1.05rem;
  color: #fff7ea;
}

.floating-button {
  min-height: 50px;
}

.floating-button-primary {
  box-shadow:
    0 20px 34px rgba(19, 63, 132, 0.36),
    0 0 26px rgba(31, 140, 255, 0.16);
}

.floating-button-secondary {
  background:
    linear-gradient(180deg, rgba(12, 20, 43, 0.88), rgba(8, 14, 31, 0.84));
}

@media (max-width: 980px) {
  .hero {
    padding: 32px 22px;
    border-radius: 34px;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero-card {
    transform: none;
  }
}

/* Original logo plus CA */
.logo-plus-ca {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
}

.brand-sign {
  display: block;
  height: auto;
}

.brand-sign-nav {
  width: min(100%, 320px);
}

.brand-sign-hero {
  width: min(100%, 470px);
  margin: 24px auto 18px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.logo-lockup-card {
  display: inline-grid;
  justify-items: center;
  gap: 10px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(18, 33, 47, 0.08);
  box-shadow: var(--shadow);
}

.logo-phone {
  display: grid;
  justify-items: center;
  line-height: 1;
}

.logo-phone strong,
.logo-phone span {
  font-family: "Outfit", sans-serif;
}

.logo-phone strong {
  font-weight: 800;
  letter-spacing: 0.05em;
}

.logo-phone span {
  font-weight: 700;
  letter-spacing: 0.12em;
}

.logo-plus-ca-text {
  color: #071325;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.logo-plus-ca-nav {
  align-items: center;
  gap: 8px;
}

.logo-lockup-card-nav {
  justify-items: start;
  padding: 8px 12px 10px;
}

.logo-plus-ca-nav .brand-logo {
  width: 168px;
  height: auto;
}

.logo-plus-ca-text-nav {
  font-size: 1.55rem;
}

.logo-phone-nav {
  justify-items: start;
}

.logo-phone-nav strong {
  font-size: 0.94rem;
  color: #071325;
}

.logo-phone-nav span {
  margin-top: 2px;
  font-size: 0.72rem;
  color: rgba(7, 19, 37, 0.72);
}

.logo-lockup-card-hero {
  margin: 24px auto 18px;
  padding: 16px 18px 18px;
}

.logo-plus-ca-hero {
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
}

.logo-plus-ca-hero .hero-logo {
  margin: 0;
}

.logo-plus-ca-text-hero {
  font-size: 2.4rem;
  margin-top: 8px;
}

.logo-phone-hero {
  margin: 0;
}

.logo-phone-hero strong {
  font-size: 1.55rem;
  color: #071325;
}

.logo-phone-hero span {
  margin-top: 4px;
  font-size: 1.04rem;
  color: rgba(7, 19, 37, 0.76);
}

.logo-plus-ca-project {
  align-items: center;
  gap: 12px;
}

.project-logo-original {
  display: block;
  width: min(100%, 360px);
  border-radius: 24px;
  background: white;
  padding: 12px;
  border: 1px solid rgba(18, 33, 47, 0.08);
}

.logo-plus-ca-text-project {
  font-size: 2rem;
  margin-top: 12px;
}

@media (max-width: 980px) {
  .brand-sign-nav {
    width: min(100%, 250px);
  }

  .logo-plus-ca-hero {
    gap: 8px;
  }

  .logo-plus-ca-text-hero {
    font-size: 1.7rem;
  }

  .logo-phone-hero strong {
    font-size: 1.24rem;
  }

  .logo-phone-hero span {
    font-size: 0.92rem;
  }

  .logo-plus-ca-project {
    justify-content: center;
  }

  .logo-plus-ca-text-project {
    font-size: 1.55rem;
  }
}
