.elementor-11344 .elementor-element.elementor-element-82b89b7{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-ae6abad */:root {
  --boom-green: #4caf50;
  --boom-green-dark: #2e7d32;
  --boom-blue: #0d3b66;
  --boom-navy: #082544;
  --boom-light: #f5f7fb;
  --boom-text: #1b1b1f;
  --boom-muted: #6b7280;
  --max-width: 1120px;
  --radius-card: 18px;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--boom-text);
  background-color: #ffffff;
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ---------- LAYOUT ---------- */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}



/* ---------- HERO ---------- */

.hero {
  background: radial-gradient(circle at top left, #e0fbe2 0, #f9fafb 55%, #e0edff 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.hero-inner {
  display: flex;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 2.5fr);
  gap: 5rem;
  padding: 3.5rem 0 3.5rem;
  align-items: center;
  height: 100vh;
}

.hero-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--boom-green-dark);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.hero-title {
  font-size: clamp(2.2rem, 3.1vw, 3.1rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--boom-blue);
  margin-bottom: 0.6rem;
}

.hero-highlight {
  color: var(--boom-green-dark);
}

.hero-subtitle {
  font-size: 1.02rem;
  max-width: 32rem;
  color: var(--boom-muted);
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, var(--boom-green), var(--boom-green-dark));
  color: #fff;
  box-shadow: 0 12px 25px rgba(34, 197, 94, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(22, 163, 74, 0.45);
}

.btn-secondary {
  background: #fff;
  color: var(--boom-blue);
  border-color: rgba(148, 163, 184, 0.6);
}

.btn-secondary:hover {
  background: #f9fafb;
}

.hero-footnote {
  font-size: 0.8rem;
  color: var(--boom-muted);
}

.hero-visual {
  position: relative;
  justify-self: center;
}

.hero-card {
  background: #fff;
  border-radius: 32px;
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.spark-circle {
  position: absolute;
  border-radius: 999px;
  border: 2px solid var(--boom-green);
  opacity: 0.3;
}

.spark-circle.one {
  width: 160px; height: 160px;
  top: -30px; right: -45px;
}

.spark-circle.two {
  width: 90px; height: 90px;
  bottom: -30px; left: -35px;
  border-color: #22c55e;
}

.spark-rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.spark-ray {
  position: absolute;
  width: 3px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #facc15, var(--boom-green));
  opacity: 0.8;
  transform-origin: center bottom;
  animation: blink 1.6s ease-in-out infinite alternate;
}

.spark-ray:nth-child(1) { left: 72%; top: 6%; transform: rotate(10deg); }
.spark-ray:nth-child(2) { left: 85%; top: 22%; transform: rotate(60deg); animation-delay: 0.2s; }
.spark-ray:nth-child(3) { left: 65%; top: 30%; transform: rotate(130deg); animation-delay: 0.4s; }
.spark-ray:nth-child(4) { left: 50%; top: 18%; transform: rotate(190deg); animation-delay: 0.6s; }

@keyframes blink {
  from { opacity: 0.3; transform: scaleY(0.6); }
  to   { opacity: 1;   transform: scaleY(1); }
}

.hero-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--boom-green-dark);
  margin-bottom: 0.5rem;
}

.hero-card-body {
  font-size: 0.9rem;
  color: var(--boom-muted);
  margin-bottom: 1rem;
}

.hero-metric-row {
  display: flex;
  gap: 1.8rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}

.hero-metric {
  font-size: 0.78rem;
  color: var(--boom-muted);
}

.hero-metric strong {
  display: block;
  font-size: 1.2rem;
  color: var(--boom-blue);
}/* End custom CSS */