* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 440px;
  display: flex;
  overflow: hidden;
  font-family: sans-serif;
  border-radius: 10px !important;
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 2;
  width: 52%;
  background: #0a3a54;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 80px 48px 52px;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50% !important;
  background: rgba(13, 166, 224, 0.13);
  bottom: -100px;
  left: -80px;
}

/* divider: sits exactly on top of the seam */
.hero-divider {
  position: absolute;
  left: calc(52% - 40px);
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 10;
  pointer-events: none;
}

.hero-right {
  flex: 1;
  background: #f0f4f8;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 24px 44px;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(13, 166, 224, 0.18);
  color: #a8ecff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px !important;
  border: 1px solid rgba(13, 166, 224, 0.4);
  margin-bottom: 22px;
  width: fit-content;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50% !important;
  background: #0da6e0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(.7)
  }
}

.hero-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 16px;
}

.hero-title span {
  color: #0da6e0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.28;
}

.hero-sub {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary {
  background: #0da6e0;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 7px !important;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .15s;
}

.btn-primary:hover {
  background: #0b93c9;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 7px !important;
  border: 1px solid rgba(255, 255, 255, .25);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.hero-clients {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-clients-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
}

.client-pill {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12) !important;
  ;
  border-radius: 20px !important;
  padding: 4px 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
}

.mock-browser {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: 10px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12), 0 2px 8px rgba(0, 0, 0, .07);
  overflow: hidden;
  animation: floatBrowser 6s ease-in-out infinite;
}

@keyframes floatBrowser {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.mock-bar {
  background: #f5f5f5;
  border-bottom: 1px solid #e5e5e5;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50% !important;
}

.mock-url {
  flex: 1;
  background: #e8e8e8;
  border-radius: 4px !important;
  height: 16px;
  margin: 0 6px;
  font-size: 10px;
  color: #888;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-family: monospace;
}

.mock-body {
  padding: 14px;
}

.mock-header-bar {
  background: #0a3a54;
  border-radius: 7px !important;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mock-logo-text {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.mock-logo-text span {
  color: #0da6e0;
  font-size: 12px;
  font-weight: 700;
}

.mock-nav-dots {
  display: flex;
  gap: 6px;
}

.mock-nav-dot {
  width: 28px;
  height: 6px;
  border-radius: 3px !important;
  background: rgba(255, 255, 255, .25);
}

.mock-nav-dot.active {
  background: #0da6e0;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.mock-stat {
  background: #f7fafc;
  border: 1px solid #e8edf2;
  border-radius: 7px !important;
  padding: 8px 10px;
  text-align: center;
}

.mock-stat-num {
  font-size: 16px;
  font-weight: 700;
  color: #0da6e0;
  line-height: 1;
  margin-bottom: 3px;
}

.mock-stat-lbl {
  font-size: 9px;
  color: #888;
}

.mock-section-title {
  font-size: 10px;
  font-weight: 600;
  color: #444;
  margin-bottom: 7px;
}

.mock-idea-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.mock-idea-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f7fafc;
  border: 1px solid #e8edf2;
  border-radius: 6px !important;
  padding: 7px 10px;
}

.mock-idea-icon {
  width: 22px;
  height: 22px;
  border-radius: 5px !important;
  background: rgba(13, 166, 224, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-idea-text {
  flex: 1;
}

.mock-idea-name {
  font-size: 10px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}

.mock-idea-sub {
  font-size: 9px;
  color: #999;
}

.mock-idea-badge {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 10px !important;
}

.badge-new {
  background: rgba(13, 166, 224, .12);
  color: #0a7fb0;
}

.badge-dev {
  background: rgba(16, 185, 129, .12);
  color: #0a7a55;
}

.badge-rev {
  background: rgba(245, 158, 11, .12);
  color: #9a6006;
}

.mock-progress-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.mock-progress-label {
  font-size: 9px;
  color: #666;
  width: 70px;
  flex-shrink: 0;
}

.mock-progress-bar {
  flex: 1;
  height: 5px;
  background: #e8edf2;
  border-radius: 3px;
  overflow: hidden;
}

.mock-progress-fill {
  height: 100%;
  border-radius: 3px !important;
  background: #0da6e0;
  transition: width 1s ease;
}

.mock-progress-pct {
  font-size: 9px;
  color: #888;
  width: 26px;
  text-align: right;
}

.hero-badge {
  position: absolute;
  top: 22px;
  right: 18px;
  z-index: 10;
  background: #fff;
  border-radius: 10px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .10);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatBadge 5s ease-in-out 1s infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-5px)
  }
}

.hero-badge-icon {
  width: 28px;
  height: 28px;
  background: rgba(13, 166, 224, .12);
  border-radius: 7px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-num {
  font-size: 15px;
  font-weight: 700;
  color: #0da6e0;
  line-height: 1;
}

.hero-badge-lbl {
  font-size: 10px;
  color: #888;
}