body {
  margin: 0;
  padding-top: 110px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.body-container-wrapper,
.body-container,
.container-fluid,
.content-wrapper,
.row-fluid {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.alpha-sticky-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.alpha-announcement {
  background: #24aa87;
  color: #fff;
  text-align: center;
  padding: 7px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.alpha-sticky-wrap.is-scrolled .alpha-announcement {
  height: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
}

.alpha-header {
  background: #fff;
  padding: 14px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.alpha-header-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

body.alpha-menu-open .alpha-header {
  opacity: 0.9;
}

.alpha-logo img {
  width: 220px;
  display: block;
}

.alpha-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.alpha-demo-button {
  background: #24aa87;
  color: #fff !important;
  padding: 10px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s ease;
}

.alpha-demo-button:hover {
  background: #1e8f74;
  transform: translateY(-1px);
}

.alpha-demo-button:active {
  transform: translateY(0);
}

.alpha-demo-button:focus {
  outline: 3px solid rgba(36,170,135,0.3);
  outline-offset: 3px;
}

.alpha-menu-button {
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.alpha-menu-button svg {
  width: 26px;
  height: 18px;
  display: block;
}

.alpha-menu-button line {
  stroke: #222;
  stroke-width: 2;
  stroke-linecap: round;
}

.alpha-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 38, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 10001;
}

.alpha-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 430px;
  max-width: 92vw;
  height: 100vh;
  background: #fff;
  z-index: 10002;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  padding: 22px 28px 36px;
  box-shadow: -16px 0 40px rgba(0,0,0,0.16);
  box-sizing: border-box;
}

body.alpha-menu-open {
  overflow: hidden;
}

body.alpha-menu-open .alpha-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.alpha-menu-open .alpha-menu-drawer {
  transform: translateX(0);
}

.alpha-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.alpha-menu-logo img {
  width: 170px;
  display: block;
}

.alpha-menu-close {
  border: none;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  color: #5c667a;
  padding: 2px 4px;
}

.alpha-menu-close:hover {
  color: #1f2937;
}

.alpha-menu-section {
  margin-bottom: 30px;
}

.alpha-menu-heading {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #7a8699;
  font-weight: 700;
  margin-bottom: 14px;
}

.alpha-menu-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  text-decoration: none;
  color: #1f2937;
  padding: 10px 0;
  border-radius: 8px;
}

.alpha-menu-item:hover strong {
  color: #24aa87;
}

.alpha-menu-icon {
  width: 22px;
  height: 22px;
  border: 2px solid #24aa87;
  color: #24aa87;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

.alpha-menu-item strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
  color: #1f2937;
  font-weight: 600;
  transition: color 0.15s ease;
}

.alpha-menu-item small {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  color: #5f6b7a;
  margin-top: 2px;
}

.alpha-menu-cta {
  display: block;
  background: #24aa87;
  color: #fff !important;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  padding: 13px 18px;
  border-radius: 8px;
  margin-top: 24px;
}

.alpha-menu-cta:hover {
  background: #1e8f74;
}

@media (max-width: 768px) {
  body {
    padding-top: 96px;
  }

  .alpha-header {
    padding: 14px 20px;
  }

  .alpha-logo img {
    width: 170px;
  }

  .alpha-demo-button {
    display: none;
  }

  .alpha-menu-drawer {
    width: 88vw;
    padding: 22px 24px 36px;
  }