:root {
  --ink: #080b10;
  --navy: #0a1220;
  --blue: #0b5ea8;
  --sky: #4aa3dc;
  --amber: #f5a400;
  --orange: #f28c00;
  --muted: #667085;
  --line: #dfe6ee;
  --soft: #f6f9fc;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(10, 18, 32, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  z-index: -1;
  background-image:
    linear-gradient(30deg, transparent 45%, rgba(10, 18, 32, 0.5) 45%, rgba(10, 18, 32, 0.5) 55%, transparent 55%),
    linear-gradient(90deg, transparent 45%, rgba(10, 18, 32, 0.5) 45%, rgba(10, 18, 32, 0.5) 55%, transparent 55%),
    linear-gradient(150deg, transparent 45%, rgba(10, 18, 32, 0.5) 45%, rgba(10, 18, 32, 0.5) 55%, transparent 55%);
  background-size: 60px 104px;
  background-position: 0 0, 30px 52px, 30px 52px;
  pointer-events: none;
}

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(223, 230, 238, .78);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-badge,
.brand-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border: 1px solid rgba(245, 164, 0, .38);
  background: rgba(245, 164, 0, .1);
  color: #8f5b00;
  font-size: 11px;
  font-weight: 950;
}

.brand-badge {
  padding: 4px 8px;
  border-radius: 999px;
}

.brand-kicker {
  gap: 5px;
  margin: 0 0 13px;
  padding: 6px 10px;
  border-radius: 8px;
  letter-spacing: .02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  padding: 28px 0;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--amber);
}

.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: none;
}

.btn span { font-size: 18px; line-height: 1; }

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.btn-outline {
  color: var(--ink);
  background: #fff;
  border-color: #8b96a5;
}

.btn-light {
  color: var(--ink);
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 58px;
  background:
    radial-gradient(circle at 78% 10%, rgba(74, 163, 220, .12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 52px;
}

.hero h1 {
  max-width: 600px;
  margin: 0 0 24px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 950;
}

.hero h1 span { color: var(--amber); }

.hero h1 .bee-tech {
  display: inline-block;
  color: var(--amber);
  position: relative;
  background: linear-gradient(90deg, var(--amber) 0%, #ffd700 50%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: bee-tech-shine 3s linear infinite;
}

.hero h1 .bee-tech::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 100%);
  animation: bee-tech-glint 3s ease-in-out infinite;
}

@keyframes bee-tech-shine {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

@keyframes bee-tech-glint {
  0%, 20% {
    left: -100%;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60%, 100% {
    left: 100%;
    opacity: 0;
  }
}

.lead {
  max-width: 560px;
  margin: 0;
  color: #556173;
  font-size: 16px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin: 34px 0 30px;
}

.trust {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  color: #4d596b;
  font-weight: 700;
}

.trust span {
  color: var(--amber);
  font-size: 24px;
}

.hero-art {
  position: relative;
  min-height: 462px;
}

.bee-illustration {
  position: absolute;
  top: -40px;
  right: -50px;
  z-index: 5;
  animation: bee-fly-path 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  background: none !important;
}

.bee-illustration * {
  background: transparent !important;
}

.bee-illustration::before,
.bee-illustration::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(245, 164, 0, 0.6);
  animation: bee-trail 0.8s ease-in-out infinite;
  pointer-events: none;
}

.bee-illustration::before {
  left: -10px;
  top: 50%;
  animation-delay: 0.1s;
}

.bee-illustration::after {
  left: -20px;
  top: 50%;
  animation-delay: 0.2s;
  opacity: 0.5;
}

@keyframes bee-trail {
  0% {
    transform: scale(1) translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3) translateY(-3px);
    opacity: 0.4;
  }
  100% {
    transform: scale(0.5) translateY(-5px);
    opacity: 0;
  }
}

.bee-illustration img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(245, 164, 0, 0.5)) drop-shadow(0 0 15px rgba(74, 163, 220, 0.4));
  animation: bee-wobble 0.3s ease-in-out infinite, bee-rotate 8s ease-in-out infinite;
}

@keyframes bee-fly-path {
  0% {
    transform: translate(0, 0);
  }
  12.5% {
    transform: translate(30px, -20px);
  }
  25% {
    transform: translate(50px, -10px);
  }
  37.5% {
    transform: translate(60px, 15px);
  }
  50% {
    transform: translate(50px, 35px);
  }
  62.5% {
    transform: translate(25px, 40px);
  }
  75% {
    transform: translate(-10px, 25px);
  }
  87.5% {
    transform: translate(-15px, 5px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes bee-rotate {
  0%, 100% {
    transform: rotate(-15deg);
  }
  12.5% {
    transform: rotate(-5deg);
  }
  25% {
    transform: rotate(5deg);
  }
  37.5% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(15deg);
  }
  62.5% {
    transform: rotate(8deg);
  }
  75% {
    transform: rotate(-8deg);
  }
  87.5% {
    transform: rotate(-12deg);
  }
}

@keyframes bee-wobble {
  0%, 100% {
    transform: translateY(0) scaleY(1);
  }
  50% {
    transform: translateY(-2px) scaleY(0.98);
  }
}

.circuit-lines {
  position: absolute;
  inset: 5px 0 0;
  opacity: .55;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(245, 164, 0, .75) 9% 9.3%, transparent 9.3% 100%),
    linear-gradient(120deg, transparent 0 14%, rgba(74, 163, 220, .65) 14% 14.4%, transparent 14.4% 100%),
    radial-gradient(circle at 12% 38%, transparent 0 13px, rgba(245, 164, 0, .7) 14px, transparent 16px),
    radial-gradient(circle at 88% 34%, transparent 0 12px, rgba(74, 163, 220, .7) 13px, transparent 15px);
  animation: circuit-flow 8s linear infinite;
}

@keyframes circuit-flow {
  0%, 100% { opacity: .55; }
  50% { opacity: .7; }
}

.circuit-lines::before,
.circuit-lines::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 170px;
  border: 2px solid rgba(245, 164, 0, .45);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  animation: hex-rotate 20s linear infinite;
}

@keyframes hex-rotate {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(5deg); }
}

.circuit-lines::before { left: 15px; top: 32px; }
.circuit-lines::after { right: 8px; bottom: 66px; border-color: rgba(74, 163, 220, .45); animation-direction: reverse; }

.dashboard-panel {
  position: absolute;
  right: 18px;
  top: 48px;
  width: min(548px, 100%);
  height: 370px;
  border: 1px solid #dde5ee;
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  animation: panel-float 6s ease-in-out infinite;
  overflow: hidden;
}

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

.dashboard-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 16px;
  background:
    repeating-linear-gradient(30deg, transparent 0 14px, rgba(10, 18, 32, .04) 15px, transparent 16px),
    radial-gradient(circle, rgba(245, 164, 0, .1), transparent 54%);
  animation: bg-pulse 4s ease-in-out infinite;
}

@keyframes bg-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}

.hex-core {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 132px;
  display: grid;
  place-items: center;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background: linear-gradient(145deg, #ffc246, #f3a100 65%, #d97800);
  color: #fff;
  font-size: 54px;
  box-shadow: 0 12px 28px rgba(245, 164, 0, .28);
  animation: hex-glow 3s ease-in-out infinite;
}

.hex-core svg {
  width: 70px;
  height: 80px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes hex-glow {
  0%, 100% {
    box-shadow: 0 12px 28px rgba(245, 164, 0, .28);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    box-shadow: 0 12px 32px rgba(245, 164, 0, .45), 0 0 0 8px rgba(245, 164, 0, .1);
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.dash-card,
.wide-card {
  position: absolute;
  z-index: 2;
  background: #fff;
  border: 1px solid #e4e9f0;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(10, 18, 32, .09);
  transition: all .3s ease;
}

.dash-card:hover,
.wide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 18, 32, .14);
  border-color: rgba(245, 164, 0, .4);
}

.dash-card {
  width: 132px;
  min-height: 112px;
  padding: 14px;
  animation: card-fade-in .6s ease backwards;
}

@keyframes card-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dash-card small,
.wide-card small {
  display: block;
  font-size: 10px;
  font-weight: 900;
  color: #303845;
}

.dash-card strong {
  display: block;
  font-size: 26px;
  line-height: 1.15;
  margin-top: 5px;
  background: linear-gradient(135deg, #111827, #0a1220);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dash-card span {
  display: block;
  color: #667085;
  font-size: 10px;
  font-weight: 700;
}

.bar {
  display: block;
  height: 6px;
  margin-top: 12px;
  border-radius: 999px;
  background: #e9eef4;
  overflow: hidden;
}

.bar b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #31b763, #2dd65a);
  animation: bar-fill 1.5s ease-in-out;
  position: relative;
}

@keyframes bar-fill {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.bar b::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
  animation: bar-shine 2s ease-in-out infinite;
}

@keyframes bar-shine {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(200%); }
}

.posture {
  left: 18px;
  top: 22px;
  animation-delay: .1s;
}
.compliance {
  right: 18px;
  top: 22px;
  animation-delay: .2s;
}
.threats {
  left: 18px;
  top: 158px;
  animation-delay: .3s;
}
.systems {
  right: 18px;
  top: 158px;
  animation-delay: .4s;
}

.systems svg {
  width: 100%;
  height: 28px;
  margin-top: 8px;
}

.systems polyline,
.risk polyline {
  fill: none;
  stroke: #4aa3dc;
  stroke-width: 3;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: line-draw 2s ease-out forwards;
}

@keyframes line-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.risk polyline {
  stroke: var(--amber);
  animation-delay: .5s;
}

.wide-card {
  padding: 12px 14px;
  animation: card-fade-in .6s ease backwards;
}

.risk {
  animation-delay: .5s;
}

.controls {
  animation-delay: .6s;
}

.risk {
  left: 18px;
  bottom: 18px;
  width: 230px;
  max-width: calc(48% - 20px);
  height: auto;
  min-height: 110px;
  padding: 10px 12px;
}

.risk svg {
  width: 100%;
  height: 55px;
  margin-top: 6px;
}

.risk polyline {
  stroke: var(--amber);
}

.controls {
  right: 18px;
  bottom: 18px;
  width: 230px;
  max-width: calc(48% - 20px);
  height: auto;
  min-height: 110px;
  padding: 10px 12px;
}

.control-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.control-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 8px;
  align-items: center;
}

.control-item span {
  grid-column: 1;
  grid-row: 1;
  color: #4d596b;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.control-item strong {
  grid-column: 2;
  grid-row: 1 / 3;
  color: #111827;
  font-size: 13px;
  font-weight: 950;
}

.control-bar {
  grid-column: 1;
  grid-row: 2;
  height: 4px;
  border-radius: 999px;
  background: #e9eef4;
  overflow: hidden;
}

.control-bar b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #31b763, #2dd65a);
  transition: width 1s ease;
}

.stats-band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 7px 18px rgba(10, 18, 32, .04);
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -50px;
  width: 150px;
  height: 130px;
  transform: translateY(-50%) rotate(15deg);
  background: transparent;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  border: 3px solid rgba(245, 164, 0, 0.05);
  z-index: 0;
  pointer-events: none;
}

.stats-band::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -60px;
  width: 170px;
  height: 150px;
  transform: translateY(-50%) rotate(-20deg);
  background: transparent;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  border: 3px solid rgba(74, 163, 220, 0.06);
  z-index: 0;
  pointer-events: none;
}

.stats-grid {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1.7fr repeat(5, 1fr);
  align-items: center;
  text-align: center;
}

.stats-grid > div {
  min-height: 62px;
  display: grid;
  place-content: center;
  padding: 0 18px;
  border-left: 1px solid var(--line);
}

.stats-grid > div:first-child {
  border-left: 0;
}

.stats-label {
  grid-template-columns: auto 1fr;
  place-content: center start !important;
  text-align: left;
  gap: 16px;
}

.stats-label span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
  font-size: 22px;
}

.stats-grid strong {
  display: block;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 950;
}

.stats-grid .counter {
  transition: transform .2s ease;
}

.stats-grid .counter.animated {
  animation: counter-pop .6s ease;
}

@keyframes counter-pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.stats-grid span {
  color: #5d6878;
  font-size: 11px;
  font-weight: 800;
}

.section {
  padding: 38px 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 180px;
  height: 160px;
  background: transparent;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  border: 2px solid rgba(245, 164, 0, 0.08);
  z-index: 0;
  pointer-events: none;
}

.section::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 120px;
  height: 105px;
  background: transparent;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  border: 2px solid rgba(74, 163, 220, 0.08);
  z-index: 0;
  pointer-events: none;
}

.section.compact {
  padding-top: 12px;
}

.section-title {
  text-align: center;
  margin-bottom: 24px;
}

.section-title.left {
  margin-bottom: 20px;
}

.section-title h2,
.section-row h2,
.cta-panel h2 {
  position: relative;
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 950;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin: 13px auto 0;
  border-radius: 999px;
  background: var(--amber);
}

.section-title.left h2::after {
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 9px 24px rgba(10, 18, 32, .07);
  transition: all .4s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(10, 18, 32, .14);
  border-color: var(--amber);
}

.service-card:hover img {
  transform: scale(1.1) rotate(5deg);
}

.service-card:hover a {
  color: var(--orange);
}

.service-card img {
  width: 64px;
  height: 64px;
  transition: transform .4s ease;
}

.service-card h3,
.why-grid h3,
.article-card h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 950;
}

.service-card p {
  margin: 8px 0 10px;
  color: #626c7b;
  font-size: 10.5px;
  font-weight: 600;
}

.service-card a {
  color: var(--amber);
  font-size: 11px;
  font-weight: 950;
  transition: color .3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.two-columns {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.solution-grid div {
  min-height: 86px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 16px 10px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(10, 18, 32, .05);
  transition: all .4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.solution-grid div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 0;
}

.solution-grid div:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(245, 164, 0, .3);
  border-color: var(--orange);
}

.solution-grid div:hover::before {
  opacity: 1;
}

.solution-grid div:hover span {
  color: #fff;
}

.solution-grid div:hover b {
  color: #fff;
}

.solution-grid span {
  color: var(--sky);
  font-size: 34px;
  line-height: 1;
  transition: color .4s ease;
  position: relative;
  z-index: 1;
}

.solution-grid b {
  font-size: 12px;
  line-height: 1.2;
  transition: color .4s ease;
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.why-grid article {
  min-height: 108px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-content: center;
  column-gap: 13px;
  padding: 18px 15px;
  border-bottom: 1px solid var(--line);
}

.why-grid span {
  width: 42px;
  height: 42px;
  grid-row: span 2;
  display: grid;
  place-items: center;
  border: 1px solid #f1d79d;
  border-radius: 999px;
  color: var(--amber);
  font-size: 22px;
}

.why-grid p {
  margin: 5px 0 0;
  color: #657083;
  font-size: 11px;
  font-weight: 600;
}

.industries {
  padding-top: 22px;
}

.industry-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(10, 18, 32, .05);
  overflow: hidden;
}

.industry-strip span {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  text-align: center;
  color: #111827;
  font-size: 12px;
  font-weight: 900;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 26%, rgba(11, 94, 168, .12), transparent 20px),
    #fff;
  transition: all .4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.industry-strip span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 0;
}

.industry-strip span:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(245, 164, 0, .25);
  border-color: var(--orange);
}

.industry-strip span:hover::before {
  opacity: 1;
}

.industry-strip span:hover svg {
  color: #fff;
  transform: rotateY(360deg) scale(1.15);
}

.industry-strip span:hover b {
  color: #fff;
}

.industry-strip span svg {
  width: 32px;
  height: 32px;
  color: var(--blue);
  transition: all .6s ease;
  position: relative;
  z-index: 1;
}

.industry-strip span b {
  font-size: 12px;
  font-weight: 900;
  color: #111827;
  transition: color .4s ease;
  position: relative;
  z-index: 1;
}

.industry-strip span:first-child { border-left: 0; }

.insights {
  padding-top: 10px;
}

.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.section-row a {
  font-size: 12px;
  font-weight: 950;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.article-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 140px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(10, 18, 32, .07);
  transition: all .4s ease;
  cursor: pointer;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(10, 18, 32, .14);
  border-color: var(--amber);
}

.article-card:hover .article-img img {
  transform: scale(1.1);
}

.article-img {
  display: grid;
  place-items: center;
  min-height: 100%;
  overflow: hidden;
  background: #0a1220;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.article-card div:last-child {
  padding: 14px 16px;
}

.article-card small {
  display: block;
  color: var(--amber);
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 950;
}

.article-card p {
  margin: 9px 0 0;
  color: #657083;
  font-size: 11px;
  font-weight: 700;
}

.cta-panel {
  min-height: 126px;
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 14px;
  margin-bottom: -1px;
  padding: 26px 36px;
  color: #fff;
  border-radius: 10px 10px 0 0;
  background:
    linear-gradient(120deg, rgba(5, 8, 13, .96), rgba(10, 18, 32, .94) 62%, rgba(245, 164, 0, .82)),
    repeating-linear-gradient(60deg, transparent 0 20px, rgba(255, 255, 255, .12) 21px, transparent 22px);
}

.cta-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  position: relative;
}

.cta-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(245, 164, 0, 0.4));
  animation: cta-icon-glow 3s ease-in-out infinite;
}

@keyframes cta-icon-glow {
  0%, 100% {
    filter: drop-shadow(0 4px 12px rgba(245, 164, 0, 0.4));
  }
  50% {
    filter: drop-shadow(0 4px 16px rgba(245, 164, 0, 0.7));
  }
}

.cta-panel p {
  margin: 7px 0 0;
  color: #e7edf5;
  font-size: 16px;
}

.site-footer {
  color: #dce5ef;
  background:
    radial-gradient(circle at 8% 8%, rgba(74, 163, 220, .12), transparent 30%),
    linear-gradient(180deg, #07101b, #05080d);
  padding: 34px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.1fr 1.3fr 1.5fr;
  gap: 34px;
}

.footer-brand {
  min-width: 0;
  margin-bottom: 20px;
  display: block;
}

.footer-brand .footer-logo {
  height: 120px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(1.1);
  mix-blend-mode: screen;
}

.site-footer p {
  max-width: 255px;
  margin: 0 0 22px;
  color: #aeb9c7;
  font-size: 12px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 800;
  color: var(--amber);
  border: 2px solid var(--amber);
  background: transparent;
  transition: all .3s ease;
}

.btn-download:hover {
  background: var(--amber);
  color: #0a1220;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 164, 0, .3);
}

.btn-download svg {
  width: 16px;
  height: 16px;
}

.site-footer h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #d0dae7;
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #aeb9c7;
  font-size: 12px;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .4), 0 8px 32px rgba(0, 0, 0, .15);
  transition: all .3s ease;
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .5), 0 12px 40px rgba(0, 0, 0, .2);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes pulse-wa {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, .4), 0 8px 32px rgba(0, 0, 0, .15);
  }
  50% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, .6), 0 8px 32px rgba(0, 0, 0, .2), 0 0 0 12px rgba(37, 211, 102, .2);
  }
}

@media (max-width: 1120px) {
  .brand-badge { display: none; }
  .brand-logo { height: 52px; }
  .main-nav { gap: 18px; }
  .service-grid,
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .two-columns { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-wrap { height: auto; min-height: 80px; flex-wrap: wrap; padding: 8px 0; }
  .brand-logo { height: 52px; }
  .main-nav,
  .nav-cta { display: none; }
  .main-nav {
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 14px;
  }
  .main-nav a { padding: 10px 0; }
  .main-nav a.active::after,
  .main-nav a:hover::after { bottom: 4px; width: 34px; right: auto; }
  .nav-toggle {
    display: block;
    margin-left: auto;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }
  .hero h1 { font-size: 38px; }
  .hero-grid,
  .stats-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 430px; }
  .dashboard-panel { left: 0; right: 0; margin: auto; width: 90%; }
  .stats-grid > div { border-left: 0; border-top: 1px solid var(--line); padding: 16px; }
  .stats-grid > div:first-child { border-top: 0; }
  .industry-strip { grid-template-columns: repeat(2, 1fr); }
  .industry-strip span { border-top: 1px solid var(--line); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand .footer-logo { height: 100px; }
  .bee-illustration {
    top: -35px;
    right: -40px;
  }
  .bee-illustration img {
    width: 90px;
  }
}

@media (max-width: 640px) {
  .brand-logo { height: 44px; }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: 32px; }
  .hero h1 .bee-tech { font-size: 32px; }
  .hero h1 .bee-tech::before { display: none; }
  .lead { font-size: 14px; }
  .hero-actions,
  .section-row,
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  .bee-illustration {
    top: -30px;
    right: -30px;
  }
  .bee-illustration img {
    width: 80px;
  }
  .hero-art { min-height: 640px; }
  .dashboard-panel {
    height: 590px;
    top: 22px;
  }
  .hex-core { top: 50%; }
  .dash-card,
  .wide-card { width: calc(50% - 24px); }
  .posture { left: 16px; top: 18px; }
  .compliance { right: 16px; top: 18px; }
  .threats { left: 16px; top: 154px; }
  .systems { right: 16px; top: 154px; }
  .risk { left: 16px; bottom: 112px; }
  .controls { right: 16px; bottom: 16px; }
  .service-grid,
  .solution-grid,
  .why-grid,
  .article-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .article-card { grid-template-columns: 1fr; }
  .article-img { min-height: 140px; }
  .cta-panel {
    grid-template-columns: 1fr;
    padding: 24px;
    text-align: center;
  }
  .cta-icon {
    margin: 0 auto 16px;
    width: 70px;
    height: 70px;
  }
  .cta-icon svg {
    width: 70px;
    height: 70px;
  }
  .industry-strip { grid-template-columns: 1fr; }
  .footer-brand .footer-logo {
    height: 90px;
  }
  .section::before {
    width: 100px;
    height: 90px;
    right: -20px;
  }
  .section::after {
    width: 80px;
    height: 70px;
    left: -15px;
  }
}
