:root {
  --primary: #0F2747;
  --secondary: #163A63;
  --accent: #2EA3F2;
  --ink: #071524;
  --paper: #ffffff;
  --soft: #eef5fb;
  --muted: #a9bdd2;
  --line: rgba(255, 255, 255, 0.16);
  --glass: rgba(12, 31, 56, 0.54);
  --shadow: 0 24px 80px rgba(1, 10, 25, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  overflow-x: hidden;
  letter-spacing: 0;
}

body::selection {
  background: var(--accent);
  color: #fff;
}

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

img,
svg {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px 6vw;
  background: rgba(7, 21, 36, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, min-height 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(7, 21, 36, 0.91);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-word {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.brand-line {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
}

.nav-contact,
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.nav-contact {
  color: #d7eaff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  color: #fff;
  background: var(--accent);
  border-color: rgba(46, 163, 242, 0.7);
  box-shadow: 0 12px 34px rgba(46, 163, 242, 0.28);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: 132px 6vw 92px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(90deg, rgba(7, 21, 36, 0.91), rgba(15, 39, 71, 0.76), rgba(7, 21, 36, 0.52)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: cinematicDrift 16s ease-in-out infinite alternate;
}

.hero-backdrop {
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  z-index: -2;
  background: linear-gradient(0deg, var(--ink), rgba(7, 21, 36, 0));
}

.hero-content {
  max-width: 780px;
}

.eyebrow,
.scene-label,
.strip-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b8dcff;
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before,
.scene-label::before,
.strip-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.08;
}

.hero h1 {
  max-width: 850px;
  margin-top: 20px;
  font-size: 64px;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: #d7e5f4;
  font-size: 19px;
  line-height: 1.72;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, #23c7f4, var(--accent) 58%, #167ce8);
  color: #fff;
  box-shadow: 0 18px 48px rgba(46, 163, 242, 0.34);
}

.btn.secondary {
  color: #e9f5ff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-proof {
  position: absolute;
  left: 6vw;
  right: 6vw;
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #d9e9f7;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.hero-proof strong {
  color: #fff;
}

.intro-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 6vw;
  background: linear-gradient(90deg, #091b30, #0f2747);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-strip h2 {
  margin-top: 8px;
  font-size: 28px;
}

.company-network {
  position: relative;
  padding: 70px 6vw;
  background:
    linear-gradient(180deg, #071524, #0c2038 52%, #071524);
  overflow: hidden;
}

.company-copy {
  max-width: 920px;
  margin: 0 auto 30px;
  text-align: center;
}

.company-copy h2 {
  max-width: 760px;
  margin: 14px auto 0;
  font-size: 34px;
}

.company-rotator {
  max-width: 720px;
  margin: 0 auto;
}

.company-track {
  position: relative;
  height: 82px;
}

.brand-chip {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  padding: 0 12px;
  color: color-mix(in srgb, var(--brand) 78%, #ffffff 22%);
  font-size: 34px;
  font-weight: 900;
  text-align: center;
  white-space: normal;
  text-shadow: 0 0 28px color-mix(in srgb, var(--brand) 46%, transparent);
  opacity: 0;
  transform: translateY(18px) scale(0.94);
  animation: brandCycle 30s infinite;
}

.brand-chip:nth-child(1) { animation-delay: 0s; }
.brand-chip:nth-child(2) { animation-delay: 2s; }
.brand-chip:nth-child(3) { animation-delay: 4s; }
.brand-chip:nth-child(4) { animation-delay: 6s; }
.brand-chip:nth-child(5) { animation-delay: 8s; }
.brand-chip:nth-child(6) { animation-delay: 10s; }
.brand-chip:nth-child(7) { animation-delay: 12s; }
.brand-chip:nth-child(8) { animation-delay: 14s; }
.brand-chip:nth-child(9) { animation-delay: 16s; }
.brand-chip:nth-child(10) { animation-delay: 18s; }
.brand-chip:nth-child(11) { animation-delay: 20s; }
.brand-chip:nth-child(12) { animation-delay: 22s; }
.brand-chip:nth-child(13) { animation-delay: 24s; }
.brand-chip:nth-child(14) { animation-delay: 26s; }
.brand-chip:nth-child(15) { animation-delay: 28s; }

.company-note {
  max-width: 620px;
  min-height: 52px;
  margin: 28px auto 0;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #d8eaff;
  font-size: 14px;
  font-weight: 800;
}

.company-note i {
  color: var(--accent);
}

.text-link,
.scene-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d8efff;
  font-weight: 800;
}

.story-scene {
  position: relative;
  --scene-bg-x: 0px;
  --scene-bg-y: 0px;
  --scene-bg-scale: 1.08;
  --scene-bg-tilt: 0deg;
  --scene-origin: center center;
  --scene-light-x: 78%;
  --scene-light-y: 44%;
  min-height: 112vh;
  display: grid;
  align-items: center;
  padding: 116px 6vw;
  overflow: hidden;
  isolation: isolate;
}

.story-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(90deg, rgba(7, 21, 36, 0.92), rgba(15, 39, 71, 0.58), rgba(7, 21, 36, 0.84)),
    var(--scene-image);
  background-size: cover;
  background-position: center;
  transform: translate3d(var(--scene-bg-x), var(--scene-bg-y), 0) scale(var(--scene-bg-scale)) rotate(var(--scene-bg-tilt));
  transform-origin: var(--scene-origin);
  filter: saturate(0.96) contrast(1.08);
  transition: transform 0.22s ease-out;
  will-change: transform;
}

.story-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(0deg, rgba(7, 21, 36, 0.92), rgba(7, 21, 36, 0) 20%, rgba(7, 21, 36, 0) 80%, rgba(7, 21, 36, 0.92)),
    radial-gradient(circle at var(--scene-light-x) var(--scene-light-y), color-mix(in srgb, var(--scene-accent) 34%, transparent), transparent 32%),
    linear-gradient(105deg, rgba(255,255,255,0.06), transparent 28%, transparent 72%, rgba(255,255,255,0.04));
  transition: background 0.22s ease-out;
}

.story-scene.is-visible {
  --scene-bg-scale: 1.065;
}

.health-scene::before {
  background-position: center 48%;
  transform-origin: center 52%;
}

.car-scene::before {
  background-position: center 58%;
  transform-origin: center 62%;
}

.risk-scene::before {
  background-position: center 55%;
  transform-origin: 58% 54%;
}

.home-scene::before {
  transform-origin: 50% 66%;
}

.home-scene {
  min-height: 112vh;
}

.farm-scene::before {
  transform-origin: 48% 42%;
}

.scene-inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 64px;
  align-items: center;
}

.scene-copy {
  min-width: 0;
  max-width: 620px;
}

.scene-copy h2 {
  margin-top: 18px;
  font-size: 48px;
}

.scene-copy p {
  margin: 22px 0 28px;
  color: #d5e4f1;
  font-size: 17px;
  line-height: 1.75;
}

.scene-cta {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.scene-visual {
  position: relative;
  min-width: 0;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.scene-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.monitor-panel {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
}

.monitor-panel > span,
.form-heading span {
  color: #b8dcff;
  font-size: 13px;
  font-weight: 800;
}

.health-monitor {
  display: grid;
  gap: 20px;
}

.hospital-sign {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.hospital-sign i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(46, 163, 242, 0.16);
  color: #7ad8ff;
  font-size: 24px;
}

.hospital-sign strong,
.hospital-sign span {
  display: block;
}

.hospital-sign strong {
  color: #fff;
  font-size: 17px;
}

.hospital-sign span {
  margin-top: 4px;
  color: #c7dced;
  font-size: 13px;
  font-weight: 700;
}

.pulse-line {
  width: 100%;
  height: 126px;
  padding: 14px 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(4, 20, 35, 0.38);
  background-size: 28px 28px;
  filter: drop-shadow(0 0 16px rgba(46, 163, 242, 0.44));
}

.pulse-track,
.pulse-active {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
}

.pulse-track {
  stroke: rgba(255, 255, 255, 0.16);
}

.pulse-active {
  stroke: #39c7ff;
  stroke-dasharray: 1040;
  stroke-dashoffset: 1040;
  animation: pulseDraw 2.8s linear infinite;
}

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

.metric-grid b,
.speed-card,
.home-badge,
.weather-chip {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-align: center;
  font-size: 13px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.road-visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 10px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(17, 58, 99, 0.62), rgba(4, 13, 24, 0.88)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent);
}

.traffic-road {
  position: relative;
  z-index: 1;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 8%, rgba(75, 179, 253, 0.24), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.traffic-road::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18%;
  width: 76%;
  height: 140%;
  transform: translateX(-50%);
  clip-path: polygon(28% 0, 72% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.16) 0 2px, transparent 2px 21%, rgba(255,255,255,0.08) 21% 22%, transparent 22% 48%, rgba(255,255,255,0.54) 48% 52%, transparent 52% 78%, rgba(255,255,255,0.08) 78% 79%, transparent 79% calc(100% - 2px), rgba(255,255,255,0.16) calc(100% - 2px)),
    linear-gradient(180deg, rgba(11, 32, 54, 0.38), rgba(2, 10, 19, 0.92));
  box-shadow: inset 0 0 44px rgba(0, 0, 0, 0.35), 0 0 42px rgba(75, 179, 253, 0.12);
}

.traffic-road::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -24%;
  width: 3px;
  height: 152%;
  transform: translateX(-50%);
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.92) 0 36px, transparent 36px 72px);
  animation: roadStripe 1.15s linear infinite;
}

.road-line {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(75, 179, 253, 0.72), transparent);
  box-shadow: 0 0 26px rgba(75, 179, 253, 0.5);
}

.traffic-car {
  position: absolute;
  z-index: 1;
  width: 44px;
  height: 76px;
  border-radius: 16px 16px 12px 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(116, 200, 255, 0.94));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24), 0 0 22px rgba(75, 179, 253, 0.42);
}

.traffic-car::before,
.traffic-car::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  border-radius: 7px;
}

.traffic-car::before {
  top: 10px;
  height: 19px;
  background: rgba(7, 21, 36, 0.52);
}

.traffic-car::after {
  bottom: 9px;
  height: 16px;
  background: rgba(7, 21, 36, 0.28);
}

.car-a {
  left: 40%;
  bottom: -92px;
  animation: trafficUp 5.6s linear infinite;
}

.car-b {
  left: 30%;
  bottom: -118px;
  background: linear-gradient(135deg, #d9efff, #2EA3F2);
  transform: scale(0.82);
  animation: trafficUp 7.2s linear infinite 2.4s;
}

.car-c {
  right: 35%;
  top: -92px;
  background: linear-gradient(135deg, #f8fafc, #a8c7fa);
  transform: rotate(180deg) scale(0.92);
  animation: trafficDown 6.2s linear infinite 0.8s;
}

.car-d {
  right: 25%;
  top: -118px;
  background: linear-gradient(135deg, #ffffff, #8bd6ff);
  transform: rotate(180deg) scale(0.76);
  animation: trafficDown 7.6s linear infinite 3.2s;
}

.traffic-status {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.traffic-status strong {
  font-size: 17px;
}

.traffic-status span {
  color: #cfe3f5;
  font-size: 13px;
  font-weight: 700;
}

.traffic-tags {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.traffic-tags span {
  display: grid;
  place-items: center;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #d8efff;
  font-size: 12px;
  font-weight: 800;
}

.road-track {
  position: absolute;
  left: 50%;
  bottom: -40px;
  width: 64%;
  height: 118%;
  transform: translateX(-50%) perspective(560px) rotateX(58deg);
  background: linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.12) 18% 19%, transparent 19% 49%, rgba(255, 255, 255, 0.7) 49% 51%, transparent 51% 81%, rgba(255, 255, 255, 0.12) 81% 82%, transparent 82%);
  overflow: hidden;
}

.road-track span {
  position: absolute;
  left: 49%;
  width: 2%;
  height: 90px;
  background: rgba(255, 255, 255, 0.9);
  animation: roadMove 1.1s linear infinite;
}

.road-track span:nth-child(1) { top: -20%; }
.road-track span:nth-child(2) { top: 25%; animation-delay: 0.35s; }
.road-track span:nth-child(3) { top: 70%; animation-delay: 0.7s; }

.car-outline {
  position: absolute;
  left: 50%;
  top: 38%;
  width: 180px;
  height: 72px;
  transform: translateX(-50%);
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 70px 70px 30px 30px;
  box-shadow: 0 0 42px rgba(75, 179, 253, 0.45);
}

.car-outline::before,
.car-outline::after {
  content: "";
  position: absolute;
  bottom: -18px;
  width: 34px;
  height: 34px;
  border: 7px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.car-outline::before { left: 24px; }
.car-outline::after { right: 24px; }

.speed-card {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  flex-direction: column;
  gap: 5px;
}

.speed-card small {
  color: #cfe3f5;
}

.shield-scan {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 180px;
  height: 220px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 182, 66, 0.56);
  border-radius: 8px;
  background: rgba(245, 182, 66, 0.08);
  overflow: hidden;
}

.shield-scan::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -32%;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(245, 182, 66, 0.5), transparent);
  animation: scanMove 2.8s ease-in-out infinite;
}

.shield-scan i {
  color: #ffd88a;
  font-size: 82px;
}

.risk-visual {
  background:
    linear-gradient(145deg, rgba(245, 182, 66, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(7, 21, 36, 0.72);
}

.risk-dashboard {
  position: absolute;
  inset: 30px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.risk-core {
  position: relative;
  grid-row: 1 / span 3;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  min-height: 260px;
  border: 1px solid rgba(245, 182, 66, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 182, 66, 0.2), rgba(245, 182, 66, 0.05));
  overflow: hidden;
}

.risk-core::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 216, 138, 0.28), transparent 58%);
  animation: riskSweep 3.2s ease-in-out infinite;
}

.risk-core > * {
  position: relative;
  z-index: 1;
}

.risk-core i {
  color: #ffd88a;
  font-size: 72px;
}

.risk-core strong {
  font-size: 18px;
}

.risk-core span {
  color: #f8e8c6;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.risk-score {
  display: grid;
  gap: 9px;
  align-content: center;
  min-height: 74px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.risk-score span {
  color: #f5ead8;
  font-size: 13px;
  font-weight: 800;
}

.risk-score b {
  display: block;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #ffd88a 0 var(--score), rgba(255, 255, 255, 0.16) var(--score) 100%);
  box-shadow: 0 0 20px rgba(245, 182, 66, 0.28);
}

.claim-dashboard {
  position: absolute;
  inset: 28px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 42%, rgba(245, 182, 66, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.claim-hub {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(245, 182, 66, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 182, 66, 0.2), rgba(245, 182, 66, 0.05)),
    rgba(6, 22, 36, 0.34);
  overflow: hidden;
  text-align: center;
}

.claim-pulse {
  position: absolute;
  width: 144px;
  height: 144px;
  border: 1px solid rgba(255, 216, 138, 0.34);
  border-radius: 50%;
  animation: claimPulse 3s ease-in-out infinite;
}

.claim-pulse::before,
.claim-pulse::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 216, 138, 0.28);
  border-radius: inherit;
}

.claim-pulse::after {
  inset: 38px;
}

.claim-hub i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 216, 138, 0.16);
  color: #ffd88a;
  font-size: 34px;
  box-shadow: 0 0 34px rgba(245, 182, 66, 0.28);
}

.claim-hub strong,
.claim-hub small {
  position: relative;
  z-index: 1;
}

.claim-hub strong {
  color: #fff8e8;
  font-size: 18px;
  line-height: 1.25;
}

.claim-hub small {
  color: #f8e8c6;
  font-size: 12.5px;
  font-weight: 800;
}

.claim-timeline {
  position: relative;
  display: grid;
  gap: 10px;
}

.claim-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, rgba(245, 182, 66, 0), rgba(245, 182, 66, 0.72), rgba(245, 182, 66, 0));
  box-shadow: 0 0 18px rgba(245, 182, 66, 0.2);
}

.claim-timeline span {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 12px 14px 12px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
}

.claim-timeline b {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-left: 8px;
  border-radius: 50%;
  background: rgba(245, 182, 66, 0.2);
  color: #ffd88a;
  font-size: 12px;
}

.claim-timeline strong,
.claim-timeline small {
  grid-column: 2;
}

.claim-timeline strong {
  color: #fff8e8;
  font-size: 13.5px;
}

.claim-timeline small {
  margin-top: 4px;
  color: #e8d9b9;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.35;
}

.risk-lines {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 10px;
}

.risk-lines span {
  padding: 13px 14px;
  border-left: 3px solid var(--scene-accent);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #f5ead8;
  font-weight: 800;
}

.property-visual {
  background:
    linear-gradient(180deg, rgba(104, 211, 145, 0.24), rgba(6, 22, 36, 0.76)),
    rgba(7, 21, 36, 0.74);
}

.property-dashboard {
  position: absolute;
  inset: 30px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  min-height: 0;
}

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

.property-risks span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #e7fff0;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.property-risks i {
  color: #7ef0a8;
  font-size: 17px;
}

.construction-scene {
  position: relative;
  min-height: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(104, 211, 145, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 46%, rgba(104, 211, 145, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(21, 91, 75, 0.34), rgba(6, 22, 36, 0.44));
  overflow: hidden;
}

.construction-illustration {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 294px;
}

.site-aura {
  fill: url(#siteGlow);
  stroke: rgba(126, 240, 168, 0.2);
  stroke-width: 1.4;
}

.construction-illustration path {
  fill: none;
  stroke: url(#steelGlow);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(126, 240, 168, 0.24));
}

.site-ground {
  stroke-width: 5.4;
  opacity: 0.9;
}

.site-foundation {
  stroke-width: 4.8;
  opacity: 0.95;
}

.foundation-edge {
  stroke: rgba(223, 255, 233, 0.48) !important;
  stroke-width: 2 !important;
  opacity: 0.72;
}

.build-main {
  fill: rgba(126, 240, 168, 0.08);
  stroke-width: 4.8;
}

.house-sketch path,
.office-sketch path {
  animation: blueprintDraw 6.4s ease-in-out infinite;
}

.house-sketch .build-main,
.office-sketch .build-main {
  animation-delay: 0s;
}

.scaffold {
  stroke: rgba(223, 255, 233, 0.7) !important;
  stroke-width: 2.3 !important;
  stroke-dasharray: 7 8;
  opacity: 0.78;
  animation: scaffoldPulse 3.8s ease-in-out infinite;
}

.office-core {
  stroke: rgba(223, 255, 233, 0.9) !important;
  stroke-width: 4.4 !important;
  opacity: 0.82;
}

.crane-sketch path {
  stroke: rgba(223, 255, 233, 0.86);
  stroke-width: 3.4;
}

.crane-sketch {
  transform-origin: 396px 260px;
  animation: cranePresence 5.6s ease-in-out infinite;
}

.crane-cable,
.crane-hook {
  stroke: #7EF0A8 !important;
  animation: hookFloat 3.8s ease-in-out infinite;
}

.lifted-beam {
  stroke: rgba(223, 255, 233, 0.92) !important;
  stroke-width: 5.2 !important;
  filter: drop-shadow(0 0 14px rgba(126, 240, 168, 0.35));
  animation: beamLift 3.8s ease-in-out infinite;
}

.center-construction path {
  stroke: rgba(223, 255, 233, 0.88);
  stroke-width: 3.4;
}

.column-base {
  fill: rgba(126, 240, 168, 0.12) !important;
  stroke: rgba(126, 240, 168, 0.82) !important;
  stroke-width: 3.8 !important;
}

.rebar-lines {
  stroke: rgba(46, 163, 242, 0.72) !important;
  stroke-width: 2.4 !important;
  stroke-dasharray: 8 8;
  animation: rebarPulse 3.4s ease-in-out infinite;
}

.stage-ground path {
  opacity: 0;
  animation: buildStage 8.4s ease-in-out infinite;
}

.stage-ground .site-foundation {
  fill: rgba(126, 240, 168, 0.1);
  stroke: rgba(223, 255, 233, 0.88) !important;
  stroke-width: 4.6 !important;
}

.site-crane {
  opacity: 0;
  animation: buildStage 8.4s ease-in-out infinite 0.8s;
}

.site-crane path {
  stroke: rgba(223, 255, 233, 0.78) !important;
  stroke-width: 3.1;
}

.brick-panel {
  fill: rgba(177, 74, 45, 0.24) !important;
  stroke: rgba(196, 83, 50, 0.95) !important;
  stroke-width: 4.6 !important;
}

.brick-wall {
  opacity: 0;
  animation: wallBuild 8.4s ease-in-out infinite 1.25s;
}

.brick-wall path {
  stroke: rgba(196, 83, 50, 0.9) !important;
  stroke-width: 3.2 !important;
  filter: drop-shadow(0 0 10px rgba(196, 83, 50, 0.18));
}

.brick-lines {
  stroke-width: 2 !important;
  opacity: 0.9;
}

.door-window {
  fill: rgba(6, 22, 36, 0.54) !important;
  stroke: rgba(230, 255, 240, 0.74) !important;
  stroke-width: 3.8 !important;
}

.roof-set {
  opacity: 0;
  transform: translateY(-22px);
  transform-box: fill-box;
  transform-origin: center;
  animation: roofDrop 8.4s ease-in-out infinite 2.95s;
}

.roof-set path {
  stroke: rgba(223, 255, 233, 0.96) !important;
  stroke-width: 5 !important;
  filter: drop-shadow(0 0 16px rgba(126, 240, 168, 0.34));
}

.roof-tile {
  stroke: rgba(142, 52, 36, 0.9) !important;
  stroke-width: 2.3 !important;
}

.construction-scene::before {
  content: "";
  position: absolute;
  display: none;
  left: 7%;
  right: 7%;
  bottom: 48px;
  height: 5px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(126, 240, 168, 0.84), transparent),
    linear-gradient(180deg, rgba(255,255,255,0.22), transparent);
  box-shadow: 0 0 28px rgba(104, 211, 145, 0.35);
}

.construction-scene::after {
  content: "";
  position: absolute;
  display: none;
  left: 11%;
  right: 11%;
  bottom: 48px;
  height: 28px;
  border: 1px solid rgba(126, 240, 168, 0.18);
  border-top: 0;
  background:
    repeating-linear-gradient(90deg, rgba(126, 240, 168, 0.12) 0 2px, transparent 2px 28px);
  opacity: 0.85;
}

.build-site {
  position: absolute;
  bottom: 54px;
  width: 174px;
  height: 172px;
}

.home-build {
  left: 26px;
}

.office-build {
  right: 24px;
}

.build-frame {
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 128px;
  height: 102px;
  transform: translateX(-50%) scaleY(0.18);
  transform-origin: bottom center;
  border: 2px solid rgba(207, 255, 224, 0.46);
  border-radius: 6px 6px 0 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(207, 255, 224, 0.28) 28px 30px),
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(207, 255, 224, 0.26) 24px 26px),
    linear-gradient(180deg, rgba(126, 240, 168, 0.16), rgba(255, 255, 255, 0.06));
  box-shadow: 0 0 34px rgba(104, 211, 145, 0.22);
  animation: buildRise 5.8s ease-in-out infinite;
}

.build-frame::before {
  content: "";
  position: absolute;
  inset: 18px 17px 16px;
  background:
    repeating-linear-gradient(90deg, rgba(228, 255, 238, 0.42) 0 11px, transparent 11px 22px),
    repeating-linear-gradient(0deg, rgba(228, 255, 238, 0.32) 0 9px, transparent 9px 20px);
  opacity: 0.55;
}

.home-build .build-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 24px;
  height: 42px;
  transform: translateX(-50%);
  border: 1px solid rgba(207, 255, 224, 0.5);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background: rgba(6, 22, 36, 0.42);
}

.office-build .build-frame {
  width: 116px;
  height: 146px;
  animation-delay: 0.7s;
}

.office-build .build-frame::before {
  inset: 14px 15px 14px;
  background:
    repeating-linear-gradient(90deg, rgba(228, 255, 238, 0.45) 0 12px, transparent 12px 24px),
    repeating-linear-gradient(0deg, rgba(228, 255, 238, 0.36) 0 8px, transparent 8px 18px);
}

.office-build .build-frame::after {
  content: "";
  position: absolute;
  left: -18px;
  top: -10px;
  bottom: 0;
  width: 2px;
  background: rgba(126, 240, 168, 0.42);
  box-shadow:
    18px 0 rgba(126, 240, 168, 0.22),
    36px 0 rgba(126, 240, 168, 0.22),
    72px 0 rgba(126, 240, 168, 0.22),
    108px 0 rgba(126, 240, 168, 0.22),
    126px 0 rgba(126, 240, 168, 0.42);
}

.roof-line {
  position: absolute;
  left: 16px;
  bottom: 102px;
  width: 142px;
  height: 78px;
  clip-path: polygon(50% 0, 100% 58%, 87% 58%, 87% 100%, 13% 100%, 13% 58%, 0 58%);
  border: 2px solid rgba(126, 240, 168, 0.54);
  background: linear-gradient(180deg, rgba(126, 240, 168, 0.22), rgba(255, 255, 255, 0.04));
  filter: drop-shadow(0 0 20px rgba(104, 211, 145, 0.25));
  opacity: 0.96;
}

.roof-line::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 29px;
  width: 12px;
  height: 28px;
  background: rgba(207, 255, 224, 0.46);
  border-radius: 2px 2px 0 0;
}

.crane-arm {
  position: absolute;
  left: -2px;
  top: 0;
  width: 174px;
  height: 82px;
  transform-origin: 18px 58px;
  animation: craneSwing 5.8s ease-in-out infinite;
}

.crane-arm::before,
.crane-arm::after {
  content: "";
  position: absolute;
  background: rgba(126, 240, 168, 0.48);
  box-shadow: 0 0 18px rgba(104, 211, 145, 0.26);
}

.crane-arm::before {
  left: 0;
  top: 46px;
  width: 168px;
  height: 3px;
  transform: rotate(-12deg);
}

.crane-arm::after {
  right: 22px;
  top: 29px;
  width: 3px;
  height: 60px;
  border-radius: 999px;
}

.build-label {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-height: 0;
  padding: 0;
  transform: translateX(-50%);
  border: 1px solid rgba(126, 240, 168, 0.3);
  border-radius: 50%;
  background: rgba(5, 25, 31, 0.62);
  color: #e7fff0;
  font-size: 0;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(104, 211, 145, 0.18);
}

.build-label i {
  color: #7ef0a8;
  font-size: 17px;
}

.dask-foundation {
  position: absolute;
  left: 50%;
  bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  transform: translateX(-50%);
  border: 1px solid rgba(126, 240, 168, 0.24);
  border-radius: 999px;
  background: rgba(5, 25, 31, 0.58);
  color: #e7fff0;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 0 28px rgba(104, 211, 145, 0.16);
}

.dask-foundation i {
  color: #7ef0a8;
  font-size: 18px;
}

.construction-scan {
  position: absolute;
  left: -18%;
  right: -18%;
  top: -90px;
  height: 88px;
  transform: rotate(-9deg);
  background: linear-gradient(180deg, transparent, rgba(126, 240, 168, 0.18), transparent);
  animation: constructionScan 4.8s ease-in-out infinite;
}

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

.coverage-list span {
  display: grid;
  place-items: center;
  text-align: center;
  align-items: center;
  gap: 5px;
  min-height: 52px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #e7fff0;
  font-size: 11px;
  line-height: 1.22;
  font-weight: 800;
}

.coverage-list i {
  color: #7ef0a8;
}

.building-stack {
  position: absolute;
  left: 50%;
  bottom: 74px;
  width: 280px;
  height: 260px;
  transform: translateX(-50%);
}

.building-stack span {
  position: absolute;
  bottom: 0;
  width: 86px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.1) 1px, transparent 1px),
    rgba(255, 255, 255, 0.08);
  background-size: 26px 26px;
  box-shadow: 0 0 36px rgba(104, 211, 145, 0.24);
}

.building-stack span:nth-child(1) { left: 0; height: 165px; }
.building-stack span:nth-child(2) { left: 96px; height: 232px; }
.building-stack span:nth-child(3) { right: 0; height: 190px; }

.home-badge,
.weather-chip {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  gap: 12px;
  justify-content: flex-start;
  font-size: 15px;
}

.home-badge i,
.weather-chip i {
  color: var(--scene-accent);
  font-size: 24px;
}

.farm-dashboard {
  position: absolute;
  inset: 30px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 14px;
}

.farm-visual {
  background:
    linear-gradient(180deg, rgba(154, 230, 110, 0.16), rgba(6, 22, 36, 0.74)),
    rgba(7, 21, 36, 0.74);
}

.growing-tree {
  position: relative;
  min-height: 210px;
  border: 1px solid rgba(154, 230, 110, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 44%, rgba(154, 230, 110, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(154, 230, 110, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: auto, auto, 32px 32px, 32px 32px;
  overflow: hidden;
}

.soil-line {
  position: absolute;
  left: 17%;
  right: 17%;
  bottom: 36px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(154, 230, 110, 0.88), transparent);
  box-shadow: 0 0 22px rgba(154, 230, 110, 0.4);
}

.tree-trunk {
  position: absolute;
  left: 50%;
  bottom: 38px;
  width: 12px;
  height: 118px;
  border-radius: 999px 999px 6px 6px;
  transform-origin: bottom center;
  transform: translateX(-50%) scaleY(0);
  background: linear-gradient(180deg, #b9f58b, #61c777);
  box-shadow: 0 0 24px rgba(154, 230, 110, 0.44);
  animation: treeGrow 4.8s ease-in-out infinite;
}

.tree-branch,
.tree-root {
  position: absolute;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7cda7c, #b9f58b);
  transform-origin: left center;
  opacity: 0;
}

.branch-left {
  left: 50%;
  bottom: 112px;
  width: 62px;
  transform: rotate(-34deg) scaleX(0);
  animation: branchLeftGrow 4.8s ease-in-out infinite;
}

.branch-right {
  left: calc(50% - 2px);
  bottom: 136px;
  width: 70px;
  transform: rotate(30deg) scaleX(0);
  animation: branchRightGrow 4.8s ease-in-out infinite;
}

.root-left {
  left: calc(50% - 5px);
  bottom: 35px;
  width: 54px;
  transform: rotate(155deg) scaleX(0);
  animation: rootLeftGrow 4.8s ease-in-out infinite;
}

.root-right {
  left: calc(50% + 2px);
  bottom: 35px;
  width: 54px;
  transform: rotate(25deg) scaleX(0);
  animation: rootRightGrow 4.8s ease-in-out infinite;
}

.leaf {
  position: absolute;
  width: 44px;
  height: 28px;
  border-radius: 44px 4px 44px 4px;
  background: linear-gradient(135deg, #c6ff8f, #62d67b);
  box-shadow: 0 0 24px rgba(154, 230, 110, 0.38);
  opacity: 0;
  transform: scale(0.2) rotate(-16deg);
  animation: leafOpen 4.8s ease-in-out infinite;
}

.leaf-1 {
  left: calc(50% - 82px);
  bottom: 128px;
  animation-delay: 0.3s;
}

.leaf-2 {
  left: calc(50% + 46px);
  bottom: 152px;
  transform: scale(0.2) rotate(18deg);
  animation-delay: 0.45s;
}

.leaf-3 {
  left: calc(50% - 40px);
  bottom: 174px;
  width: 50px;
  height: 32px;
  animation-delay: 0.6s;
}

.leaf-4 {
  left: calc(50% + 8px);
  bottom: 188px;
  width: 38px;
  height: 25px;
  transform: scale(0.2) rotate(22deg);
  animation-delay: 0.75s;
}

.growth-ring {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(154, 230, 110, 0.55);
  border-radius: 50%;
  transform: translateX(-50%) scale(0.6);
  opacity: 0;
  animation: growthPulse 4.8s ease-in-out infinite;
}

.nursery-soil {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 32px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(154, 230, 110, 0.32), transparent 68%),
    linear-gradient(90deg, transparent, rgba(104, 177, 94, 0.75), transparent);
  box-shadow: 0 0 30px rgba(154, 230, 110, 0.32);
}

.seedling {
  position: absolute;
  left: 50%;
  bottom: 48px;
  width: 130px;
  height: 138px;
  transform: translateX(-50%) scale(var(--plant-scale, 1));
  transform-origin: bottom center;
}

.seedling-main {
  --plant-scale: 1;
  --plant-delay: 0s;
}

.seedling-left {
  --plant-scale: 0.68;
  --plant-delay: 0.55s;
  left: 30%;
  bottom: 42px;
}

.seedling-right {
  --plant-scale: 0.78;
  --plant-delay: 0.9s;
  left: 71%;
  bottom: 40px;
}

.seed-stem {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 8px;
  height: 118px;
  border-radius: 999px;
  transform: translateX(-50%) scaleY(0);
  transform-origin: bottom center;
  background: linear-gradient(180deg, #c8ff9a, #55c878);
  box-shadow: 0 0 22px rgba(154, 230, 110, 0.46);
  animation: seedStemGrow 5.4s ease-in-out infinite;
  animation-delay: var(--plant-delay, 0s);
}

.seedling-small .seed-stem {
  height: 86px;
  width: 7px;
}

.seed-leaf {
  position: absolute;
  left: 50%;
  width: 56px;
  height: 34px;
  border-radius: 56px 4px 56px 4px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.42), transparent 28%),
    linear-gradient(135deg, #d4ff9e, #53cf78 72%);
  box-shadow: 0 0 24px rgba(154, 230, 110, 0.36);
  opacity: 0;
  transform-origin: 8% 80%;
  animation: seedLeafOpen 5.4s ease-in-out infinite;
  animation-delay: var(--plant-delay, 0s);
}

.seed-leaf-left {
  bottom: 68px;
  transform: translateX(-56px) rotate(-38deg) scale(0.1);
}

.seed-leaf-right {
  bottom: 88px;
  transform: translateX(0) rotate(32deg) scale(0.1);
}

.seed-leaf-top {
  bottom: 114px;
  width: 46px;
  height: 30px;
  transform: translateX(-22px) rotate(-4deg) scale(0.1);
}

.seedling-small .seed-leaf {
  width: 44px;
  height: 28px;
}

.seedling-small .seed-leaf-left {
  bottom: 48px;
  transform: translateX(-43px) rotate(-36deg) scale(0.1);
}

.seedling-small .seed-leaf-right {
  bottom: 62px;
  transform: translateX(0) rotate(34deg) scale(0.1);
}

.plant-glow {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(154, 230, 110, 0.42);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%) scale(0.4);
  animation: plantPulse 5.4s ease-in-out infinite;
}

.plant-glow-two {
  animation-delay: 1.1s;
}

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

.farm-stats span {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 72px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #eaffdd;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.farm-stats i {
  color: #9AE66E;
  font-size: 19px;
}

.harvest-note {
  display: grid;
  gap: 4px;
  min-height: 66px;
  padding: 14px 16px;
  border: 1px solid rgba(154, 230, 110, 0.26);
  border-radius: 8px;
  background: rgba(154, 230, 110, 0.1);
}

.harvest-note strong {
  color: #f0ffe8;
}

.harvest-note small {
  color: #d7efc8;
  font-weight: 700;
}

.services-section,
.process-section,
.about-story,
.contact-section {
  padding: 104px 6vw;
  background: #f6f9fd;
  color: var(--ink);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading .eyebrow,
.about-text .eyebrow,
.contact-info .eyebrow {
  color: var(--secondary);
}

.section-heading h2,
.about-text h2,
.contact-info h2 {
  margin-top: 14px;
  color: var(--primary);
  font-size: 42px;
}

.section-heading p,
.about-text p,
.contact-info p {
  color: #53677d;
  font-size: 17px;
  line-height: 1.75;
}

.service-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid #dfe9f3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 39, 71, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--service-color) 42%, #dfe9f3);
  box-shadow: 0 26px 58px rgba(15, 39, 71, 0.14);
}

.service-card i {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--service-color) 13%, #fff);
  color: var(--service-color);
  font-size: 20px;
}

.service-card h3 {
  color: var(--primary);
  font-size: 20px;
}

.service-card p {
  margin: 12px 0 0;
  color: #5e7186;
  font-size: 14px;
  line-height: 1.65;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: center;
  padding: 108px 6vw;
  background:
    linear-gradient(135deg, rgba(15, 39, 71, 0.96), rgba(22, 58, 99, 0.9)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1700&q=82");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.trust-copy h2 {
  margin-top: 16px;
  font-size: 42px;
}

.trust-copy p {
  color: #d5e4f1;
  font-size: 17px;
  line-height: 1.74;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  font-weight: 800;
}

.trust-item i {
  color: var(--accent);
  font-size: 20px;
}

.process-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-step {
  min-height: 245px;
  padding: 28px;
  border: 1px solid #dfe9f3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 39, 71, 0.08);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.process-step h3 {
  color: var(--primary);
  font-size: 22px;
}

.process-step p {
  color: #5e7186;
  line-height: 1.68;
}

.final-cta {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 82px 6vw;
  background:
    linear-gradient(90deg, rgba(7, 21, 36, 0.95), rgba(15, 39, 71, 0.7)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.final-inner {
  max-width: 720px;
}

.final-inner h2 {
  margin: 16px 0 14px;
  font-size: 42px;
  line-height: 1.12;
}

.final-inner p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: #d5e4f1;
  font-size: 17px;
  line-height: 1.72;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 6vw;
  background: #071524;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #d8e8f7;
  font-size: 13px;
}

.site-footer span {
  color: #9fb3c7;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.page-hero {
  min-height: 66vh;
  display: flex;
  align-items: flex-end;
  padding: 132px 6vw 82px;
  background-size: cover;
  background-position: center;
}

.about-hero {
  background-image:
    linear-gradient(90deg, rgba(7, 21, 36, 0.92), rgba(15, 39, 71, 0.66)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=82");
}

.contact-hero {
  background-image:
    linear-gradient(90deg, rgba(7, 21, 36, 0.95) 0%, rgba(15, 39, 71, 0.76) 48%, rgba(15, 39, 71, 0.38) 100%),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=82");
  background-position: center 58%;
}

.page-hero-content {
  max-width: 780px;
}

.page-hero h1 {
  margin-top: 16px;
  font-size: 54px;
}

.page-hero p {
  color: #d7e5f4;
  font-size: 18px;
  line-height: 1.72;
}

.contact-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-proof span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e8f4ff;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.contact-proof i {
  color: #5cc8ff;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: center;
}

.about-photo {
  min-height: 480px;
  border-radius: 8px;
  background-image:
    linear-gradient(180deg, rgba(15, 39, 71, 0), rgba(15, 39, 71, 0.34)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1400&q=82");
  background-size: cover;
  background-position: center;
  box-shadow: 0 26px 68px rgba(15, 39, 71, 0.16);
}

.about-trust {
  background:
    linear-gradient(135deg, rgba(15, 39, 71, 0.96), rgba(22, 58, 99, 0.92)),
    url("https://images.unsplash.com/photo-1560520653-9e0e4c89eb11?auto=format&fit=crop&w=1700&q=82");
  background-size: cover;
  background-position: center;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(460px, 1fr);
  gap: 46px;
  align-items: start;
  background:
    radial-gradient(circle at 16% 10%, rgba(46, 163, 242, 0.14), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(15, 39, 71, 0.12), transparent 34%),
    linear-gradient(180deg, #f8fbff, #eef5fb);
}

.contact-info {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid rgba(15, 39, 71, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.76)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 26px 70px rgba(15, 39, 71, 0.1);
}

.contact-info h2 {
  font-size: 40px;
  line-height: 1.14;
}

.contact-info p {
  margin: 18px 0 0;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.contact-lines a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #dfe9f3;
  border-radius: 8px;
  background: #fff;
  color: var(--primary);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-lines i {
  color: var(--accent);
}

.advisor-panel {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(15, 39, 71, 0.96), rgba(22, 58, 99, 0.9));
  color: #fff;
  box-shadow: 0 24px 54px rgba(15, 39, 71, 0.16);
}

.advisor-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.advisor-top > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(46, 163, 242, 0.16);
  color: #73d3ff;
  font-size: 24px;
}

.advisor-top strong {
  display: block;
  font-size: 17px;
}

.advisor-top small {
  display: block;
  margin-top: 3px;
  color: #b8d4ed;
  font-weight: 800;
}

.advisor-steps {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.advisor-steps span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #eaf6ff;
  font-size: 13px;
  font-weight: 800;
}

.advisor-steps i {
  color: #5cc8ff;
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-actions a {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  column-gap: 12px;
  min-height: 64px;
  padding: 10px 14px;
  border: 1px solid #d8e5f0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary);
  box-shadow: 0 14px 32px rgba(15, 39, 71, 0.06);
}

.contact-actions i {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(46, 163, 242, 0.1);
  color: var(--accent);
}

.contact-actions span {
  color: #61758a;
  font-size: 12px;
  font-weight: 800;
}

.contact-actions b {
  overflow-wrap: anywhere;
  font-size: 14px;
}

.contact-save-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 900;
}

.contact-save-link i {
  color: var(--accent);
}

.quote-form {
  position: relative;
  isolation: isolate;
  padding: 38px;
  border: 1px solid rgba(15, 39, 71, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98)),
    linear-gradient(135deg, rgba(46, 163, 242, 0.1), rgba(15, 39, 71, 0));
  box-shadow: 0 34px 90px rgba(15, 39, 71, 0.18);
  overflow: hidden;
}

.quote-form::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, #23c7f4, var(--accent), #163A63);
  z-index: 0;
}

.quote-form > * {
  position: relative;
  z-index: 1;
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid #dce8f3;
  color: var(--primary);
}

.form-heading div {
  display: grid;
  gap: 6px;
}

.form-heading strong {
  color: var(--primary);
  font-size: 20px;
  line-height: 1.2;
}

.form-heading em {
  display: inline-grid;
  place-items: center;
  min-width: 76px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #23c7f4, var(--accent), #163A63);
  color: #fff;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(46, 163, 242, 0.28);
  flex: 0 0 auto;
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  min-width: 0;
}

.quote-form label > span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cdddeb;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quote-form input,
.quote-form select {
  height: 52px;
  padding: 0 15px;
}

.quote-form textarea {
  resize: vertical;
  min-height: 126px;
  padding: 15px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(46, 163, 242, 0.13);
}

.form-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 18px;
}

.form-assurance span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 48px;
  padding: 9px 10px;
  border: 1px solid #d8e5f0;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(237, 246, 255, 0.82));
  color: #456178;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
}

.form-assurance i {
  color: var(--accent);
  flex: 0 0 auto;
}

.form-submit,
.prepared-link {
  width: 100%;
  border: 0;
}

.lead-submit:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.prepared-link {
  margin-top: 12px;
}

.prepared-link[hidden] {
  display: none;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--secondary);
  font-weight: 800;
}

.form-status:empty {
  display: none;
}

.form-status.is-success,
.form-status.is-error {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
}

.form-status.is-success {
  border-color: rgba(26, 147, 86, 0.2);
  background: rgba(26, 147, 86, 0.09);
  color: #08733d;
}

.form-status.is-error {
  border-color: rgba(190, 52, 52, 0.2);
  background: rgba(190, 52, 52, 0.08);
  color: #9d2525;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cinematicDrift {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-16px, 10px, 0); }
}

@keyframes brandCycle {
  0% { opacity: 0; transform: translateY(18px) scale(0.94); filter: blur(6px); }
  1.4% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  5.2% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  6.66% { opacity: 0; transform: translateY(-18px) scale(0.96); filter: blur(6px); }
  100% { opacity: 0; transform: translateY(-18px) scale(0.96); filter: blur(6px); }
}

@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(46, 163, 242, 0.38)); opacity: 0.82; }
  50% { filter: drop-shadow(0 0 22px rgba(46, 163, 242, 0.8)); opacity: 1; }
}

@keyframes pulseDraw {
  0% { stroke-dashoffset: 1040; opacity: 0.34; }
  18% { opacity: 1; }
  64% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -1040; opacity: 0.38; }
}

@keyframes roadMove {
  from { transform: translateY(-140px); }
  to { transform: translateY(520px); }
}

@keyframes roadStripe {
  from { background-position-y: 0; }
  to { background-position-y: 72px; }
}

@keyframes trafficUp {
  0% { transform: translateY(0) scale(0.78); opacity: 0; }
  12% { opacity: 1; }
  58% { transform: translateY(-190px) scale(1); opacity: 1; }
  100% { transform: translateY(-360px) scale(1.18); opacity: 0; }
}

@keyframes trafficDown {
  0% { transform: translateY(0) rotate(180deg) scale(0.7); opacity: 0; }
  14% { opacity: 1; }
  62% { transform: translateY(190px) rotate(180deg) scale(0.9); opacity: 1; }
  100% { transform: translateY(360px) rotate(180deg) scale(1.12); opacity: 0; }
}

@keyframes scanMove {
  0%, 100% { top: -32%; }
  50% { top: 100%; }
}

@keyframes riskSweep {
  from { transform: translateX(-40%) translateY(-20%) rotate(0deg); }
  to { transform: translateX(40%) translateY(20%) rotate(0deg); }
}

@keyframes claimPulse {
  0%, 100% { transform: scale(0.88); opacity: 0.48; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes propertyPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.36; }
  50% { transform: scale(1.06); opacity: 0.84; }
}

@keyframes buildRise {
  0%, 10% { transform: translateX(-50%) scaleY(0.18); opacity: 0.46; }
  38%, 76% { transform: translateX(-50%) scaleY(1); opacity: 1; }
  100% { transform: translateX(-50%) scaleY(0.28); opacity: 0.62; }
}

@keyframes craneSwing {
  0%, 100% { transform: rotate(-2deg); opacity: 0.72; }
  50% { transform: rotate(5deg); opacity: 1; }
}

@keyframes constructionScan {
  0% { transform: translateY(0) rotate(-9deg); opacity: 0; }
  18% { opacity: 0.9; }
  64% { opacity: 0.54; }
  100% { transform: translateY(380px) rotate(-9deg); opacity: 0; }
}

@keyframes blueprintDraw {
  0%, 10% { stroke-dasharray: 24 14; opacity: 0.62; }
  42%, 74% { stroke-dasharray: 220 0; opacity: 1; }
  100% { stroke-dasharray: 24 14; opacity: 0.72; }
}

@keyframes scaffoldPulse {
  0%, 100% { opacity: 0.48; }
  50% { opacity: 0.92; }
}

@keyframes cranePresence {
  0%, 100% { transform: translateY(0); opacity: 0.82; }
  50% { transform: translateY(-2px); opacity: 1; }
}

@keyframes hookFloat {
  0%, 100% { transform: translateY(-4px); }
  50% { transform: translateY(8px); }
}

@keyframes beamLift {
  0%, 100% { transform: translateY(-5px); opacity: 0.72; }
  50% { transform: translateY(7px); opacity: 1; }
}

@keyframes rebarPulse {
  0%, 100% { opacity: 0.38; }
  50% { opacity: 0.9; }
}

@keyframes buildStage {
  0%, 8% { opacity: 0; transform: translateY(10px); }
  16%, 86% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(4px); }
}

@keyframes wallBuild {
  0%, 16% { opacity: 0; transform: translateY(22px) scaleY(0.45); }
  32%, 86% { opacity: 1; transform: translateY(0) scaleY(1); }
  100% { opacity: 0; transform: translateY(5px) scaleY(1); }
}

@keyframes columnRise {
  0%, 18% { stroke-dashoffset: 140; opacity: 0; }
  32%, 84% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes beamDraw {
  0%, 22% { stroke-dashoffset: 360; opacity: 0; }
  36%, 84% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes roofDrop {
  0%, 16% { opacity: 0; transform: translateY(-30px); }
  34%, 86% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(4px); }
}

@keyframes treeGrow {
  0%, 12% { transform: translateX(-50%) scaleY(0); opacity: 0.3; }
  42%, 78% { transform: translateX(-50%) scaleY(1); opacity: 1; }
  100% { transform: translateX(-50%) scaleY(0.04); opacity: 0.35; }
}

@keyframes branchLeftGrow {
  0%, 22% { transform: rotate(-34deg) scaleX(0); opacity: 0; }
  48%, 78% { transform: rotate(-34deg) scaleX(1); opacity: 1; }
  100% { transform: rotate(-34deg) scaleX(0.05); opacity: 0; }
}

@keyframes branchRightGrow {
  0%, 26% { transform: rotate(30deg) scaleX(0); opacity: 0; }
  52%, 78% { transform: rotate(30deg) scaleX(1); opacity: 1; }
  100% { transform: rotate(30deg) scaleX(0.05); opacity: 0; }
}

@keyframes rootLeftGrow {
  0%, 16% { transform: rotate(155deg) scaleX(0); opacity: 0; }
  38%, 80% { transform: rotate(155deg) scaleX(1); opacity: 0.9; }
  100% { transform: rotate(155deg) scaleX(0.05); opacity: 0; }
}

@keyframes rootRightGrow {
  0%, 18% { transform: rotate(25deg) scaleX(0); opacity: 0; }
  40%, 80% { transform: rotate(25deg) scaleX(1); opacity: 0.9; }
  100% { transform: rotate(25deg) scaleX(0.05); opacity: 0; }
}

@keyframes leafOpen {
  0%, 34% { opacity: 0; transform: scale(0.2) rotate(-16deg); }
  56%, 78% { opacity: 1; transform: scale(1) rotate(-16deg); }
  100% { opacity: 0; transform: scale(0.45) rotate(-16deg) translateY(-10px); }
}

@keyframes growthPulse {
  0%, 20% { transform: translateX(-50%) scale(0.4); opacity: 0; }
  48% { transform: translateX(-50%) scale(3.4); opacity: 0.45; }
  78%, 100% { transform: translateX(-50%) scale(4.6); opacity: 0; }
}

@keyframes seedStemGrow {
  0%, 10% { transform: translateX(-50%) scaleY(0); opacity: 0.25; }
  42%, 78% { transform: translateX(-50%) scaleY(1); opacity: 1; }
  100% { transform: translateX(-50%) scaleY(0.08); opacity: 0.24; }
}

@keyframes seedLeafOpen {
  0%, 28% { opacity: 0; filter: blur(2px); }
  52%, 78% { opacity: 1; filter: blur(0); }
  100% { opacity: 0; filter: blur(2px); }
}

.seed-leaf-left {
  animation-name: seedLeafLeftOpen;
}

.seed-leaf-right {
  animation-name: seedLeafRightOpen;
}

.seed-leaf-top {
  animation-name: seedLeafTopOpen;
}

@keyframes seedLeafLeftOpen {
  0%, 28% { opacity: 0; transform: translateX(-34px) rotate(-18deg) scale(0.1); }
  54%, 78% { opacity: 1; transform: translateX(-56px) rotate(-38deg) scale(1); }
  100% { opacity: 0; transform: translateX(-62px) rotate(-42deg) scale(0.45); }
}

@keyframes seedLeafRightOpen {
  0%, 30% { opacity: 0; transform: translateX(-4px) rotate(16deg) scale(0.1); }
  56%, 78% { opacity: 1; transform: translateX(0) rotate(32deg) scale(1); }
  100% { opacity: 0; transform: translateX(8px) rotate(38deg) scale(0.45); }
}

@keyframes seedLeafTopOpen {
  0%, 36% { opacity: 0; transform: translateX(-22px) rotate(-4deg) scale(0.1); }
  60%, 78% { opacity: 1; transform: translateX(-22px) rotate(-4deg) scale(1); }
  100% { opacity: 0; transform: translateX(-22px) rotate(-4deg) scale(0.5) translateY(-8px); }
}

@keyframes plantPulse {
  0%, 20% { opacity: 0; transform: translateX(-50%) scale(0.35); }
  54% { opacity: 0.42; transform: translateX(-50%) scale(3.2); }
  88%, 100% { opacity: 0; transform: translateX(-50%) scale(4.8); }
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 12px;
    font-size: 13px;
  }

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

  .scene-inner,
  .trust-section,
  .about-story,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .scene-visual {
    min-height: 360px;
  }

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

  .contact-info {
    position: static;
  }

  .contact-proof {
    max-width: 620px;
  }

  .advisor-panel,
  .contact-actions {
    max-width: 720px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 12px 22px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(7, 21, 36, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
  }

  .nav-contact,
  .nav-cta {
    justify-content: center;
  }

  .hero,
  .story-scene,
  .services-section,
  .process-section,
  .trust-section,
  .about-story,
  .contact-section,
  .final-cta {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 124px;
    padding-bottom: 132px;
  }

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

  .hero-copy {
    font-size: 17px;
  }

  .hero-proof {
    left: 22px;
    right: 22px;
  }

  .intro-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
  }

  .company-network {
    padding: 48px 22px;
  }

  .company-copy {
    text-align: left;
    margin-bottom: 22px;
  }

  .company-copy h2 {
    margin-left: 0;
    font-size: 30px;
  }

  .brand-chip {
    min-height: 68px;
    font-size: 28px;
  }

  .company-note {
    width: 100%;
    align-items: flex-start;
    border-radius: 8px;
    padding: 14px 16px;
  }

  .intro-strip h2,
  .section-heading h2,
  .about-text h2,
  .contact-info h2,
  .trust-copy h2,
  .final-inner h2 {
    font-size: 34px;
  }

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

  .contact-proof {
    display: grid;
  }

  .contact-info {
    padding: 22px;
  }

  .advisor-panel {
    padding: 18px;
  }

  .contact-actions a {
    min-height: 58px;
  }

  .scene-copy h2 {
    font-size: 38px;
  }

  .process-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .brand-word {
    font-size: 17px;
  }

  .brand-line {
    font-size: 11px;
  }

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

  .hero {
    min-height: auto;
    display: block;
    padding-top: 112px;
    padding-bottom: 42px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 28px;
  }

  .hero-actions .btn,
  .quote-form .btn {
    width: 100%;
  }

  .hero-proof {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-proof span {
    width: 100%;
    justify-content: center;
  }

  .scene-copy h2,
  .section-heading h2,
  .about-text h2,
  .contact-info h2,
  .trust-copy h2,
  .page-hero h1,
  .final-inner h2 {
    font-size: 30px;
  }

  .story-scene {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .scene-inner {
    gap: 36px;
  }

  .scene-visual {
    min-height: 320px;
  }

  .health-scene .scene-visual {
    min-height: 390px;
  }

  .health-monitor {
    gap: 14px;
  }

  .hospital-sign {
    min-height: 70px;
    padding: 12px;
  }

  .health-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .health-metrics b {
    min-height: 58px;
    padding: 8px 5px;
    font-size: 11px;
  }

  .risk-dashboard,
  .property-dashboard,
  .farm-dashboard {
    inset: 20px;
  }

  .monitor-panel {
    left: 20px;
    right: 20px;
  }

  .pulse-line {
    height: 104px;
  }

  .road-visual {
    padding: 20px;
  }

  .traffic-tags,
  .farm-stats,
  .property-risks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .property-risks span {
    min-height: 44px;
    gap: 5px;
    padding: 7px 5px;
    font-size: 10.5px;
  }

  .farm-stats span {
    min-height: 58px;
    padding: 7px;
    font-size: 10.5px;
  }

  .risk-dashboard {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .risk-core {
    grid-row: auto;
    min-height: 132px;
  }

  .risk-core i {
    font-size: 44px;
  }

  .risk-visual {
    min-height: 560px;
  }

  .claim-dashboard {
    inset: 18px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .claim-hub {
    min-height: 122px;
    grid-template-columns: 58px 1fr;
    align-content: center;
    justify-items: start;
    gap: 8px 12px;
    padding: 16px;
    text-align: left;
  }

  .claim-pulse {
    left: 24px;
    width: 78px;
    height: 78px;
  }

  .claim-hub i {
    grid-row: 1 / span 2;
    width: 54px;
    height: 54px;
    font-size: 25px;
  }

  .claim-hub strong {
    font-size: 15px;
  }

  .claim-hub small {
    font-size: 11px;
  }

  .claim-timeline {
    gap: 8px;
  }

  .claim-timeline span {
    min-height: 62px;
    padding: 10px 10px 10px 0;
  }

  .claim-timeline small {
    font-size: 10.5px;
  }

  .construction-scene {
    min-height: 196px;
  }

  .construction-illustration {
    min-height: 196px;
  }

  .build-site {
    bottom: 48px;
    width: 124px;
    height: 138px;
  }

  .home-build {
    left: 10px;
  }

  .office-build {
    right: 10px;
  }

  .build-frame {
    width: 92px;
    height: 74px;
  }

  .office-build .build-frame {
    width: 84px;
    height: 112px;
  }

  .roof-line {
    left: 10px;
    bottom: 84px;
    width: 104px;
    height: 58px;
  }

  .crane-arm {
    left: -8px;
    top: 2px;
    width: 132px;
    transform: scale(0.78);
  }

  .build-label {
    bottom: 0;
    width: 32px;
    height: 32px;
  }

  .dask-foundation {
    bottom: 7px;
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
  }

  .coverage-list span {
    min-height: 46px;
    padding: 6px;
    font-size: 9.5px;
  }

  .growing-tree {
    min-height: 158px;
  }

  .seedling {
    bottom: 38px;
    transform: translateX(-50%) scale(calc(var(--plant-scale, 1) * 0.82));
  }

  .seedling-left {
    left: 28%;
  }

  .seedling-right {
    left: 72%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .company-track {
    height: 74px;
  }

  .brand-chip {
    min-height: 62px;
    padding: 0 8px;
    font-size: 24px;
  }

  .form-heading {
    align-items: flex-start;
  }

  .form-heading strong {
    font-size: 18px;
  }

  .form-heading em {
    width: 50px;
    height: 50px;
  }

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

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

  .quote-form {
    padding: 22px;
  }

  .lead-submit {
    min-height: 58px;
    padding: 0 16px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
