@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --bg-alt: #f7faf8;
  --bg-card: #ffffff;
  --hero: #0a1f15;
  --deep: #0d2b23;
  --primary: #1b4d3e;
  --accent: #2e7d5e;
  --gold: #c9a84c;
  --gold-l: #e8c96a;
  --text: #0d2b23;
  --text-mid: #3a6b57;
  --text-dim: #6a9e87;
  --border: rgba(27, 77, 62, 0.12);
  --border-g: rgba(201, 168, 76, 0.25);
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #f2f9f5;
}

::-webkit-scrollbar-thumb {
  background: rgba(27, 77, 62, 0.2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(27, 77, 62, 0.35);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDot {

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

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

@keyframes floatCard {

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

  50% {
    transform: translateY(-8px);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.in-view {
  opacity: 1;
}

.fade-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: block;
}

.nav-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.btn-login {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}

.btn-login:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-demo {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  border: none;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 7px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-demo:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27, 77, 62, 0.3);
}

.btn-hero {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep);
  background: var(--gold);
  border: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-hero:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201, 168, 76, 0.4);
  color: var(--deep);
}

.btn-video {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  padding: 16px 26px;
  border-radius: 8px;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-video:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-outline {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 13px 20px;
  border-radius: 8px;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  border-color: var(--border-g);
  color: var(--deep);
}

.card-hover {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(27, 77, 62, 0.12);
  border-color: var(--border-g);
}

.step-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
  box-shadow: 0 10px 36px rgba(27, 77, 62, 0.12);
  border-color: var(--border-g);
  transform: translateY(-4px);
}

.feature-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  box-shadow: 0 10px 36px rgba(27, 77, 62, 0.1);
  border-color: var(--border-g) !important;
  transform: translateY(-4px);
}

.outcome-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.outcome-card:hover {
  box-shadow: 0 12px 40px rgba(27, 77, 62, 0.1);
  border-color: var(--border-g) !important;
  transform: translateY(-5px);
}

.who-btn-1 {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
}

.who-btn-1:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.who-btn-2 {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--primary);
}

.who-btn-2:hover {
  border-color: var(--border-g);
  color: var(--deep);
  transform: translateY(-2px);
}

.navbar-scrolled {
  background: rgba(10, 31, 21, 0.97) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2) !important;
}

.fixed-button {
  position: fixed;
  top: 35%;
  right: -62px;
  transform: rotate(270deg) translateY(-48%);
  background-color: #ffffff !important;
  color: #1b4d3e !important;
  border-radius: 0px !important;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  z-index: 9999;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
}

.fixed-button-left {
  position: fixed;
  top: 35%;
  left: -58px;
  transform: rotate(90deg) translateY(-48%);
  background-color: #ffffff !important;
  color: #1b4d3e !important;
  border-radius: 0px !important;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  z-index: 9999;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  transition: all 0.2s ease;
}

.fixed-button-left:hover {
  background-color: #f7faf8 !important;
  transform: rotate(90deg) translateY(-48%) scale(1.02);
}

.linkedin-fixed-button {
  position: fixed;
  top: 60%;
  right: -70px;
  transform: rotate(270deg) translateY(-48%);
  background-color: #ffffff !important;
  color: #0d2b23 !important;
  border-radius: 0px !important;
  border-left: 1px solid rgba(27, 77, 62, 0.12);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  z-index: 9998;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.linkedin-fixed-button:hover {
  background-color: #f7faf8 !important;
  transform: rotate(270deg) translateY(-48%) scale(1.02);
}


/* Refactored Utility Classes */
.flex-start-gap-10 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.text-body-sm {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: #3a6b57;
  line-height: 1.5;
}

.text-body-md {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #3a6b57;
  margin: 0;
}

.text-green-600 {
  color: #6a9e87;
  font-weight: 600;
}

.tag-badge {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #3a6b57;
  background: #ffffff;
  border: 1px solid rgba(27, 77, 62, 0.12);
  border-radius: 6px;
  padding: 4px 10px;
}

.flex-start-gap-12 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.text-gold-mt {
  color: #c9a84c;
  margin-top: 3px;
}

.feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1b4d3e;
  font-weight: 500;
}

.icon-circle-sm {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f7faf8;
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.dot-gold {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9a84c;
  flex-shrink: 0;
  margin-top: 6px;
  opacity: .8;
}

.vertical-gold-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, #c9a84c 20%, #c9a84c 80%, transparent);
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a84c;
}

.content-card {
  background: #ffffff;
  border: 1px solid rgba(27, 77, 62, 0.12);
  border-radius: 16px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(27, 77, 62, 0.05);
}

.card-number-bg {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: rgba(27, 77, 62, 0.42);
  line-height: 1;
  user-select: none;
}

.card-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #f7faf8;
  border: 1px solid #1e5644;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0d2b23;
  line-height: 1.2;
  margin-bottom: 10px;
}