.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 128px 0 76px;
  background:
    radial-gradient(circle at 78% 18%, rgba(21,114,255,.22), transparent 28%),
    radial-gradient(circle at 14% 22%, rgba(25,198,198,.10), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #eef6ff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 8% -180px 8%;
  height: 360px;
  border-radius: 50%;
  background: rgba(21,114,255,.13);
  filter: blur(80px);
}

.hero-bg-word {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(150px, 22vw, 360px);
  font-weight: 900;
  letter-spacing: -.085em;
  color: rgba(21,114,255,.055);
  pointer-events: none;
  white-space: nowrap;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 680px;
}

.hero-copy p {
  max-width: 620px;
  margin-top: 24px;
  font-size: 20px;
}

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

.hero-product {
  position: relative;
  min-height: 560px;
}

.product-dashboard {
  position: absolute;
  left: 30px;
  top: 44px;
  width: min(100%, 590px);
  min-height: 455px;
  overflow: hidden;
  border-radius: 36px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 36px 120px rgba(7,18,31,.18);
}

.dashboard-top {
  height: 62px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  background: linear-gradient(135deg, #07121f, #0b3c5d);
  color: var(--white);
}

.dashboard-dots {
  display: flex;
  gap: 7px;
}

.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.38);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 86px 1fr;
  min-height: 393px;
}

.dashboard-sidebar {
  padding: 18px 14px;
  background: rgba(238,246,255,.85);
  border-right: 1px solid var(--line);
}

.sidebar-logo {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 24px;
  border-radius: 17px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 14px 34px rgba(21,114,255,.28);
}

.dashboard-sidebar i {
  display: block;
  height: 40px;
  margin: 12px auto;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
}

.dashboard-sidebar i:nth-child(3) {
  background: var(--blue);
}

.dashboard-main {
  padding: 22px;
}

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

.dashboard-kpis div {
  padding: 16px;
  border-radius: 19px;
  background: linear-gradient(180deg, #ffffff, #eef6ff);
  border: 1px solid var(--line);
}

.dashboard-kpis small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}

.dashboard-kpis strong {
  display: block;
  margin-top: 4px;
  font-size: 27px;
}

.dashboard-chart {
  height: 138px;
  display: flex;
  align-items: end;
  gap: 14px;
  padding: 18px;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 12%, rgba(21,114,255,.18), transparent 26%),
    linear-gradient(135deg, #ffffff, #eef6ff);
}

.dashboard-chart span {
  flex: 1;
  min-height: 35%;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--blue), rgba(21,114,255,.22));
}

.dashboard-chart span:nth-child(2) { height: 82%; }
.dashboard-chart span:nth-child(3) { height: 55%; }
.dashboard-chart span:nth-child(4) { height: 92%; }
.dashboard-chart span:nth-child(5) { height: 68%; }

.dashboard-table {
  display: grid;
  gap: 10px;
}

.dashboard-table div {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
}

.dashboard-table strong {
  font-size: 13px;
}

.dashboard-table small {
  color: var(--muted);
  font-weight: 700;
}

.dashboard-table em {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(21,114,255,.11);
  color: var(--blue);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.project-float {
  position: absolute;
  width: 220px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 26px 80px rgba(7,18,31,.18);
}

.project-float::before {
  content: "";
  display: block;
  height: 68px;
  margin-bottom: 14px;
  border-radius: 17px;
  background:
    linear-gradient(135deg, rgba(7,18,31,.88), rgba(21,114,255,.7)),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.32), transparent 35%);
}

.project-float span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.project-float strong {
  font-size: 14px;
}

.card-granite { right: 0; top: 24px; }
.card-maid { left: -8px; bottom: 36px; }
.card-stone, .card-fleet { display: none; }
