* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: #0a0a0f;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

/* Neural Network Background */
.neural-network {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(ellipse at top, #1a1a2e 0%, #0a0a0f 70%);
}

.neural-network::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(252, 53, 76, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(227, 11, 251, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(10, 191, 188, 0.05) 0%,
      transparent 50%
    );
  animation: neuralPulse 8s ease-in-out infinite;
}

@keyframes neuralPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0d1223;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 1002;
}

.icon {
  width: 85px;
  height: 44px;
}

.image {
  display: inline-block;
  width: 2em;
  height: 1.4em;
  vertical-align: middle;
  background: url("Group 289789.png") no-repeat center / contain;
}

@keyframes brainPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Simple Hamburger Toggle Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.nav-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hamburger {
  width: 24px;
  height: 2px;
  background: #ffffff;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* Simple X Animation */
.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.nav-menu a:hover {
  color: #fc354c;
}

#cta-button {
  display: inline-block; /* Ensures the padding and other properties work correctly on an <a> tag */
  background: linear-gradient(
    100deg,
    #fc354c 0%,
    #f93062 23%,
    #f52885 44%,
    #984ae5 66%,
    #3a97ca 97%
  );
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none; /* Removes the underline from the link */
  cursor: pointer;
  transition: all 0.3s ease;
}

#cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(252, 53, 76, 0.3);
}

/* Hero Section */
.hero {
  font-family: "Inter", sans-serif;
  font-weight: 400; /* Regular */
  margin-top: 0;
  padding-top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem 4rem;
  background-image: url("Group\ 289910.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  space-y: 2rem;
  font-family: "Inter", sans-serif;
  font-weight: 400; /* Regular */
}

.hero-badge {
  font-family: "Inter", sans-serif;
  font-weight: 1px; /* Regular */
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(139, 69, 255, 0.1);
  border: 2px solid rgba(139, 69, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #b75cc9;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: "Questrial", sans-serif !important;
}

.gradient-text {
  background: linear-gradient(135deg, #fc354c 26%, #e30bfb 61%, #0abfbc 97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600 !important;
}

.hero-description {
  font-size: 1.25rem;
  color: #a1a1aa;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.primary-button {
  background: linear-gradient(
    100deg,
    #fc354c 0%,
    #f93062 23%,
    #f52885 44%,
    #984ae5 66%,
    #3a97ca 97%
  );
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.glow-button {
  box-shadow: 0 0 30px rgba(195, 166, 255, 0.4);
}

.glow-button:hover {
  transform: translateY(-3px);
  box-shadow: -5px -5px 80px #8b45ff;
}

.button-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50px;
}

.secondary-button {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  border-color: #fc354c;
  color: #fc354c;
  transform: translateY(-2px);
}

/* Hero Demo */
.hero-demo {
  position: relative;
}

.demo-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.demo-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #0abfbc;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.demo-metrics {
  color: #a1a1aa;
  font-size: 0.9rem;
}

.chat-container {
  min-height: 200px;
  margin-bottom: 1.5rem;
}

.chat-message {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.message-avatar {
  width: 40px;
  background: #fff;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.message-text {
  background: 0;
  font-size: large;
}

.message-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.typing-indicator {
  display: flex;
  gap: 0.3rem;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: #fc354c;
  border-radius: 50%;
  animation: typing 1.5s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.demo-controls {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.demo-button {
  background-color: rgba(139, 69, 255, 0.1);
  border: 2px solid rgba(139, 69, 255, 0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.demo-button:hover {
  background: rgba(252, 53, 76, 0.2);
  transform: translateY(-1px);
}
/* Style for the button when it is selected */
.demo-button.selected {
  background: rgba(252, 53, 76, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Features Section */
.features {
  padding: 6rem 2rem 4rem;
  background: #0d1223;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: "Questrial", sans-serif !important;
}

.section-header p {
  font-size: 1.2rem;
  color: #a1a1aa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: inset 5% 5% 250px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  font-size: clamp(2rem, 5vw, 4rem);
}

.feature-icon5 {
  font-size: 80px;
  line-height: 1;
  display: inline-block;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  font-family: "Inter", sans-serif;
}

.feature-card p {
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}

.feature-demo {
  position: relative;
  z-index: 2;
}

.qualification-meter {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  height: 20px;
  position: relative;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    #fc354c 0%,
    #f93062 23%,
    #f52885 44%,
    #984ae5 66%,
    #3a97ca 97%
  );
  border-radius: 10px;
  transition: width 2s ease;
}

.meter-score {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  font-weight: 600;
}

.conversation-flow {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.flow-step {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.flow-step.active {
  background: linear-gradient(
    90deg,
    #fc354c 0%,
    #f93062 23%,
    #f52885 44%,
    #984ae5 66%,
    #3a97ca 97%
  );
}

.analytics-chart {
  display: flex;
  gap: 0.5rem;
  align-items: end;
  height: 60px;
}

.chart-bar {
  width: 15px;
  background: linear-gradient(
    150deg,
    #fc354c 0%,
    #f93062 23%,
    #f52885 44%,
    #984ae5 66%,
    #3a97ca 97%
  );
  border-radius: 3px;
  transition: height 1s ease;
}

.automation-pipeline {
  text-align: center;
}

.pipeline-stage {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.pipeline-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.pipeline-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #fc354c 26%, #e30bfb 97%);
  animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Live Demo Section */
.live-demo {
  padding: 6rem 2rem;
  background: #0d1223;
}

.demo-section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.demo-scenarios {
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
}

.scenario-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tab-button {
  flex: 1;
  background: transparent;
  border: none;
  color: #a1a1aa;
  padding: 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.tab-button.active {
  color: #8b45ff;
  background: rgba(139, 69, 255, 0.1);
  border-bottom: 2px solid #8b45ff;
}

.tab-button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.scenario-content {
  padding: 2rem;
  fill: #191e2e;
}

.scenario-chat {
  border-radius: 15px;
  padding: 2rem;
  min-height: 250px;
  margin-bottom: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.06);
  fill: #121520;
}

.scenario-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
}

.scenario-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.scenario-card li {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.scenario-card li::before {
  content: "•";
  position: absolute;
  left: -1rem;
  color: #8b45ff;
  font-size: 1.2rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.scenario-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.metric {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-label {
  display: block;
  font-size: 0.9rem;
  color: #a1a1aa;
  margin-bottom: 0.5rem;
}

.metric-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00ff85;
}

#nextAction {
  color: #3cff72;
}

/* Challenges Section */
.challenges {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}

.challenges .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: #242e51;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.challenges .gradient-star {
  color: #a855f7;
}

.challenges .section-header p {
  color: #6b7280;
  font-size: 1.05rem;
  margin-bottom: 60px;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

.challenge-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.challenge-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #faebeb;
}

.challenge-icon.pink,
.challenge-icon.purple,
.challenge-icon.red {
  background: #faebeb;
}

.challenge-icon img {
  width: 32px;
  height: 32px;
}

.challenge-content h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #111827;
  margin-bottom: 6px;
}

.challenge-content p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.5;
}

/* AI Technologies Section */
.ai-section {
  padding: 100px 20px;
  background: #0d0d15;
  text-align: center;
}

.ai-section .section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.ai-section .gradient-text {
  background: linear-gradient(90deg, #a855f7, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ai-section .section-header p {
  color: #9ca3af;
  font-size: 1rem;
  margin-bottom: 60px;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 1000px;
  margin: 0 auto;
}

.ai-card {
  background: #1a1a24;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.5);
}

.ai-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-icon img {
  width: 80%;
  height: 80%;
}

.ai-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #fff;
}

.ai-card p {
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  padding: 6rem 2rem;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.roi-calculator {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 4rem;
}

.calculator-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.input-group {
  text-align: center;
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
}

.input-group input[type="range"] {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  outline: none;
  margin-bottom: 1rem;
}

.input-group input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #fc354c 26%, #e30bfb 61%, #0abfbc 97%);
  border-radius: 50%;
  cursor: pointer;
}

.input-group span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fc354c;
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.result-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.result-card.highlight {
  background: linear-gradient(
    135deg,
    rgba(252, 53, 76, 0.1) 26%,
    rgba(227, 11, 251, 0.1) 61%,
    rgba(10, 191, 188, 0.1) 97%
  );
  border-color: rgba(252, 53, 76, 0.3);
  transform: scale(1.05);
}

.result-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #a1a1aa;
}

.result-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fc354c 26%, #e30bfb 61%, #0abfbc 97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-improvement {
  font-size: 1rem;
  color: #0abfbc;
  font-weight: 600;
  margin-top: 0.5rem;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.plan-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.plan-card.featured {
  background: linear-gradient(
    135deg,
    rgba(252, 53, 76, 0.1) 26%,
    rgba(227, 11, 251, 0.1) 61%,
    rgba(10, 191, 188, 0.1) 97%
  );
  border-color: rgba(252, 53, 76, 0.3);
  transform: scale(1.05);
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fc354c 26%, #e30bfb 61%, #0abfbc 97%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.currency {
  font-size: 1.5rem;
  color: #a1a1aa;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
}

.period {
  color: #a1a1aa;
}

.plan-features {
  margin-bottom: 2rem;
}

.feature {
  padding: 0.5rem 0;
  color: #a1a1aa;
}

/* Impact Section */
.impact {
  padding: 100px 20px;
  background: #fafafb;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.impact .section-header p {
  color: #6b7280;
  font-size: 1.05rem;
  margin-bottom: 60px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

.impact-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.impact-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #faebeb;
}

.impact-content h3 {
  font-size: 1.2rem;
  color: #111827;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.impact-content p {
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  color: #6b7280;
  line-height: 1.5;
}

/* Testimonials */
.testimonials {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-carousel {
  display: flex;
  justify-content: center;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  max-width: 800px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.testimonial-content {
  space-y: 2rem;
}

.quote {
  font-size: 1.3rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info .name {
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.author-info .title {
  color: #a1a1aa;
  font-size: 0.9rem;
}

.testimonial-video {
  text-align: center;
}

.video-placeholder {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 3rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  background: rgba(252, 53, 76, 0.1);
  border-color: rgba(252, 53, 76, 0.3);
}

.play-button {
  background: linear-gradient(135deg, #fc354c 26%, #e30bfb 61%, #0abfbc 97%);
  border: none;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(252, 53, 76, 0.3);
}

/* Final CTA */
.final-cta {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(252, 53, 76, 0.1) 26%,
    rgba(227, 11, 251, 0.1) 61%,
    rgba(10, 191, 188, 0.1) 97%
  );
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fc354c 26%, #e30bfb 61%, #0abfbc 97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.3rem;
  color: #a1a1aa;
  margin-bottom: 3rem;
}

.mega-button {
  background: linear-gradient(
    90deg,
    #fc354c 0%,
    #f93062 23%,
    #f52885 44%,
    #984ae5 66%,
    #3a97ca 97%
  );
  border: none;
  color: white;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.mega-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(252, 53, 76, 0.4);
}

.button-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.mega-button:hover .button-glow {
  transform: translateX(100%);
}

.cta-guarantee {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: #a1a1aa;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem 1rem;
}

.footer .ai {
  width: 100px;
  height: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fc354c;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fc354c;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a1a1aa;
  font-size: 0.9rem;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Utility Classes */
.hidden {
  display: none;
}

.visible {
  display: block;
}

.gradient-star {
  font-size: 0.8em;
  margin-left: 5px;
  vertical-align: super;
  background: linear-gradient(90deg, #fc354c 6%, #e30bfb 61%, #0abfbc 97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.head1 {
  color: #ffffff;
  font-family: "Questrial", sans-serif !important;
}

.Impact {
  color: #242e51;

  font-family: "Questrial", sans-serif;
  font-weight: 400;
}

.head3 {
  color: #ffffff;
}

/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Questrial&display=swap");

/* MOBILE RESPONSIVE BREAKPOINTS */

/* Tablet (1024px and below) */
@media screen and (max-width: 1024px) {
  .hero-container {
    gap: 3rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
    font-family: "Questrial", sans-serif;
    font-weight: 400;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .challenges-grid,
  .impact-grid,
  .ai-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-container {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  /* Show hamburger on tablets too if needed */

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #0d1223 0%, #1a1a2e 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 120px 2rem 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(139, 69, 255, 0.3);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
  }

  .nav-menu.active {
    right: 0;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .nav-menu a {
    padding: 1.2rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
  }

  .nav-menu.active a {
    opacity: 1;
    transform: translateX(0);
  }

  /* Stagger animation for menu items */
  .nav-menu.active a:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-menu.active a:nth-child(2) {
    transition-delay: 0.15s;
  }
  .nav-menu.active a:nth-child(3) {
    transition-delay: 0.2s;
  }
  .nav-menu.active a:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-menu a::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fc354c, #e30bfb);
    transition: width 0.3s ease;
  }

  .nav-menu a:hover::before {
    width: 1rem;
  }

  .nav-menu a:hover {
    color: #fc354c;
    transform: translateX(5px);
  }

  .nav-menu .cta-button {
    margin-top: 2rem;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(252, 53, 76, 0.3);
  }

  .nav-menu.active .cta-button {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
  }
}

/* Small Tablet/Large Mobile (768px and below) */
@media screen and (max-width: 768px) {
  .nav-container {
    padding: 1rem;
  }

  /* Show hamburger menu on mobile */
  .nav-toggle {
    display: flex;
  }

  /* Simple mobile menu - properly layered */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0d1223;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 1001;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    transition: color 0.3s ease;
  }

  .nav-menu a:hover {
    color: #fc354c;
  }

  .nav-menu .cta-button {
    margin-top: 2rem;
    width: 100%;
    text-align: center;
  }

  /* Overlay behind menu - don't cover page content */
  .nav-menu.active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100vw - 280px);
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    pointer-events: auto;
  }

  .hero {
    padding: 2rem 1rem;
    min-height: 90vh;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    max-width: 300px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .demo-container {
    padding: 1.5rem;
  }

  .features {
    padding: 4rem 1rem 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .section-header p {
    font-size: 1rem;
  }

  .live-demo {
    padding: 4rem 1rem;
  }

  .scenario-tabs {
    flex-direction: column;
  }

  .tab-button {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .scenario-content {
    padding: 1.5rem;
  }

  .scenario-chat {
    padding: 1.5rem;
  }

  .scenario-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .challenges,
  .ai-section,
  .impact {
    padding: 60px 15px;
  }

  .challenges-grid,
  .ai-grid,
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .challenge-card,
  .ai-card,
  .impact-card {
    padding: 20px;
    gap: 15px;
  }

  .challenge-icon,
  .ai-icon,
  .impact-icon {
    width: 50px;
    height: 50px;
  }

  .challenge-content h3,
  .ai-card h3,
  .impact-content h3 {
    font-size: 1.1rem;
  }

  .pricing {
    padding: 4rem 1rem;
  }

  .roi-calculator {
    padding: 2rem 1.5rem;
  }

  .calculator-inputs {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-plans {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }

  .testimonials {
    padding: 4rem 1rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }

  .quote {
    font-size: 1.1rem;
  }

  .final-cta {
    padding: 4rem 1rem;
  }

  .cta-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .cta-content p {
    font-size: 1.1rem;
  }

  .mega-button {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 350px;
  }

  .cta-guarantee {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}

/* Mobile (480px and below) */
@media screen and (max-width: 480px) {
  .nav-container {
    padding: 0.8rem 1rem;
  }

  .nav-brand {
    font-size: 1.3rem;
  }

  .icon {
    width: 70px;
    height: 36px;
  }

  /* Ensure hamburger is visible on small mobile */
  .nav-toggle {
    display: flex !important;
    width: 40px;
    height: 40px;
    padding: 6px;
  }

  .hamburger {
    width: 22px;
    height: 2px;
  }

  .hamburger::before,
  .hamburger::after {
    width: 22px;
    height: 2px;
  }

  .hamburger::before {
    top: -6px;
  }

  .hamburger::after {
    top: 6px;
  }

  .nav-menu {
    width: 280px;
    padding: 80px 1.5rem 2rem;
  }

  /* Full screen overlay for smaller screens */
  .nav-menu.active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: -1;
    animation: fadeInOverlay 0.4s ease forwards;
  }

  .hero {
    padding: 1.5rem 1rem;
    min-height: 85vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .primary-button,
  .secondary-button {
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
  }

  .demo-container {
    padding: 1rem;
  }

  .demo-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .chat-message {
    gap: 0.8rem;
  }

  .message-avatar {
    width: 35px;
    height: 35px;
  }

  .message-content {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .demo-controls {
    justify-content: center;
  }

  .demo-button {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .features {
    padding: 3rem 1rem 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .feature-icon5 {
    font-size: 60px;
  }

  .live-demo {
    padding: 3rem 1rem;
  }

  .tab-button {
    padding: 0.8rem;
    font-size: 0.85rem;
  }

  .scenario-content {
    padding: 1rem;
  }

  .scenario-chat {
    padding: 1rem;
  }

  .scenario-card h3 {
    font-size: 1.2rem;
  }

  .scenario-card li {
    font-size: 0.9rem;
  }

  .challenges,
  .ai-section,
  .impact {
    padding: 50px 10px;
  }

  .challenges .section-header h2,
  .ai-section .section-header h2 {
    font-size: 2rem;
  }

  .challenge-card,
  .ai-card,
  .impact-card {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .challenge-content h3,
  .ai-card h3,
  .impact-content h3 {
    font-size: 1rem;
  }

  .challenge-content p,
  .ai-card p,
  .impact-content p {
    font-size: 0.9rem;
  }

  .pricing {
    padding: 3rem 1rem;
  }

  .roi-calculator {
    padding: 1.5rem 1rem;
  }

  .result-value {
    font-size: 2rem;
  }

  .plan-header h3 {
    font-size: 1.3rem;
  }

  .amount {
    font-size: 2.5rem;
  }

  .testimonials {
    padding: 3rem 1rem;
  }

  .quote {
    font-size: 1rem;
  }

  .author {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .final-cta {
    padding: 3rem 1rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .mega-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-links {
    gap: 1rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile (360px and below) */
@media screen and (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .primary-button,
  .secondary-button {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
  }

  .feature-icon5 {
    font-size: 50px;
  }

  .scenario-metrics {
    grid-template-columns: 1fr;
  }

  .metric {
    padding: 0.8rem;
  }

  .result-value {
    font-size: 1.8rem;
  }

  .amount {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }
}
/* Small Laptops/Notebooks: 1024px – 1365px */
@media screen and (min-width: 1024px) and (max-width: 1365px) {
  /* Navigation adjustments - Ensure visibility */
  .nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 18, 35, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-container {
    max-width: 1100px;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-brand {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    z-index: 1002;
  }

  .icon {
    width: 75px;
    height: 39px;
  }

  /* Keep hamburger hidden for this range */
  .nav-toggle {
    display: none;
  }

  /* Ensure nav menu is visible */
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: static;
    background: transparent;
    width: auto;
    height: auto;
    padding: 0;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    flex-direction: row;
  }

  .nav-menu a {
    font-size: 0.95rem;
    color: #ffffff;
    padding: 0;
    border: none;
    width: auto;
    opacity: 1;
    transform: none;
  }

  .nav-menu a:hover {
    color: #fc354c;
  }

  .nav-menu .cta-button {
    padding: 0.7rem 1.3rem;
    font-size: 0.9rem;
    margin-top: 0;
    width: auto;
    opacity: 1;
    transform: none;
  }

  /* Hero Section */
  .hero {
    padding: 3.5rem 1.5rem 3.5rem;
    min-height: 90vh;
  }

  .hero-container {
    max-width: 1100px;
    gap: 3rem;
  }

  /* Fix hero badge visibility */
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(139, 69, 255, 0.15);
    border: 2px solid rgba(139, 69, 255, 0.4);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 500;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(139, 69, 255, 0.2);
    position: relative;
    z-index: 10;
  }

  .pulse-dot {
    width: 8px;
    height: 8px;
    background: #1b0fc1;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
  }

  .hero-title {
    font-size: 3rem;
    line-height: 1.1;
    position: relative;
    z-index: 10;
  }

  .hero-description {
    font-size: 1.15rem;
    position: relative;
    z-index: 10;
  }

  .primary-button,
  .secondary-button {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    position: relative;
    z-index: 10;
  }

  .hero-content {
    position: relative;
    z-index: 10;
  }

  /* Demo Container */
  .demo-container {
    padding: 1.8rem;
  }

  .demo-header {
    margin-bottom: 1.3rem;
  }

  .chat-container {
    min-height: 180px;
  }

  .message-avatar {
    width: 36px;
    height: 36px;
  }

  .message-content {
    padding: 0.9rem;
  }

  .demo-controls {
    gap: 0.4rem;
  }

  .demo-button {
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
  }

  /* Features Section */
  .features {
    padding: 5.5rem 1.5rem 3.5rem;
  }

  .features-container {
    max-width: 1100px;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
  }

  .feature-card {
    padding: 2.2rem;
  }

  .feature-card h3 {
    font-size: 1.4rem;
  }

  .feature-icon5 {
    font-size: 70px;
  }

  /* Live Demo Section */
  .live-demo {
    padding: 5.5rem 1.5rem;
  }

  .demo-section-container {
    max-width: 1100px;
  }

  .tab-button {
    padding: 1.3rem 0.8rem;
    font-size: 0.9rem;
  }

  .scenario-content {
    padding: 1.8rem;
  }

  .scenario-chat {
    padding: 1.8rem;
    min-height: 220px;
  }

  .scenario-card h3 {
    font-size: 1.3rem;
  }

  .scenario-card li {
    font-size: 0.95rem;
  }

  .scenario-metrics {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  /* Impact and Challenges Sections */
  .impact,
  .challenges {
    padding: 85px 15px;
  }

  .impact-grid,
  .challenges-grid {
    max-width: 1000px;
    gap: 30px;
  }

  .impact-card,
  .challenge-card {
    padding: 22px;
    gap: 25px;
  }

  .impact-content h3,
  .challenge-content h3 {
    font-size: 1.15rem;
  }

  .impact-content p,
  .challenge-content p {
    font-size: 0.9rem;
  }

  .challenges .section-header h2 {
    font-size: 2.3rem;
  }

  /* AI Section */
  .ai-section {
    padding: 85px 15px;
  }

  .ai-grid {
    max-width: 950px;
    gap: 30px;
  }

  .ai-card {
    padding: 30px 22px;
  }

  .ai-card h3 {
    font-size: 1.2rem;
  }

  .ai-section .section-header h2 {
    font-size: 2.5rem;
  }

  /* Stats Section */
  .stats {
    padding: 3.5rem 1.5rem;
  }

  .stats-container {
    max-width: 1100px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
  }

  .stat-item {
    padding: 1.8rem;
  }

  .stat-number {
    font-size: 2.7rem;
  }

  /* Testimonials */
  .testimonials {
    padding: 5.5rem 1.5rem;
  }

  .testimonial-card {
    padding: 2.5rem;
    max-width: 750px;
    gap: 2.5rem;
  }

  .quote {
    font-size: 1.2rem;
  }

  /* Final CTA */
  .final-cta {
    padding: 5.5rem 1.5rem;
  }

  .cta-container {
    max-width: 900px;
  }

  .cta-content h2 {
    font-size: 3.2rem;
  }

  .cta-content p {
    font-size: 1.2rem;
  }

  .mega-button {
    padding: 1.4rem 2.8rem;
    font-size: 1.2rem;
  }

  /* Footer */
  .footer {
    padding: 2.8rem 1.5rem 0.8rem;
  }

  .footer-container {
    max-width: 1100px;
  }

  .footer .ai {
    width: 90px;
  }

  .footer-links {
    gap: 1.8rem;
  }

  .footer-social {
    gap: 0.9rem;
  }

  /* Pricing Section (if exists) */
  .pricing {
    padding: 5.5rem 1.5rem;
  }

  .pricing-container {
    max-width: 1100px;
  }

  .roi-calculator {
    padding: 2.5rem;
  }

  .calculator-inputs {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
  }

  .pricing-plans {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
  }

  .plan-card {
    padding: 2.2rem;
  }

  .plan-header h3 {
    font-size: 1.4rem;
  }

  .amount {
    font-size: 2.8rem;
  }

  /* Additional specific adjustments for small laptops */
  .hero-demo {
    transform: scale(0.95);
    transform-origin: center;
  }

  .feature-demo {
    margin-top: 1rem;
  }

  .conversation-flow {
    gap: 0.4rem;
  }

  .flow-step {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  .analytics-chart {
    height: 55px;
  }

  .chart-bar {
    width: 13px;
  }

  /* Ensure text readability on smaller laptop screens */
  .gradient-text {
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.1);
  }

  /* Optimize spacing for smaller screens */
  .section-header {
    margin-bottom: 3.5rem;
  }

  /* Make buttons more touch-friendly on small laptops with touch screens */
  .tab-button:hover {
    transform: translateY(-1px);
  }

  .feature-card:hover {
    transform: translateY(-3px);
  }

  .challenge-card:hover,
  .impact-card:hover {
    transform: translateY(-3px);
  }
}
/* ========================================
   COMPLETE RESPONSIVE FIX FOR NEXI WEBSITE
   Add this to the END of your stylesOGnew.css file
   ======================================== */

/* ============ HERO BADGE VISIBILITY FIX ============ */

/* Force hero badge to always be visible */
.hero-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(139, 69, 255, 0.2) !important;
  border: 2px solid rgba(139, 69, 255, 0.5) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  margin-top: 4rem;
  margin-bottom: 2rem;
  color: #ffffff !important;
  font-weight: 600 !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(139, 69, 255, 0.3);
  position: relative;
  z-index: 1000 !important;
  white-space: nowrap;
  min-width: fit-content;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced pulse dot */
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #0abfbc;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(10, 191, 188, 0.8);
  position: relative;
  z-index: 1001;
}

/* Ensure hero content stacking */
.hero {
  position: relative;
  isolation: isolate;
}

.hero-container {
  position: relative;
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  position: relative;
  z-index: 15;
  margin-top: 0;
}

.hero-description {
  position: relative;
  z-index: 15;
}

.hero-buttons {
  position: relative;
  z-index: 15;
}

/* ============ ZOOM LEVEL FIXES ============ */

/* 110% - 120% zoom */
@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .hero-badge {
    font-size: 0.85rem;
    padding: 0.55rem 1.1rem;
    margin-top: 4.5rem;
  }

  .hero {
    padding-top: 10rem !important;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-description {
    font-size: 1.2rem;
  }
}

/* 125% - 140% zoom */
@media screen and (min-width: 1000px) and (max-width: 1199px) {
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    margin-top: 0; /* remove big top margin */
    margin-bottom: 1rem;
  }

  .hero {
    position: sticky;
    padding-top: 20px;
    margin-top: 0px;
    position: relative; /* no sticky needed */
    min-height: calc(100vh - 80px); /* full screen minus navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    margin-top: 0;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.15rem;
  }

  .hero-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem; /* spacing between elements */
  }
}

/* 150% zoom and higher */
@media screen and (min-width: 800px) and (max-width: 999px) {
  .hero-badge {
    font-size: 0.75rem !important;
    padding: 0.45rem 0.9rem !important;
    margin-top: 5.5rem !important;
  }

  .hero {
    padding-top: 12rem !important;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-container {
    gap: 2.5rem;
  }
}

/* ============ BROWSER-SPECIFIC FIXES ============ */

/* Chrome/Edge zoom detection */
@supports (-webkit-text-size-adjust: none) {
  .hero-badge {
    font-size: max(0.75rem, 12px) !important;
  }
}

/* Firefox zoom detection */
@-moz-document url-prefix() {
  .hero-badge {
    font-size: max(0.75rem, 12px) !important;
    padding: 0.5rem 1rem !important;
  }
}

/* ============ HIGH DPI DISPLAYS ============ */

/* Retina and high-DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-badge {
    border-width: 1.5px;
    box-shadow: 0 4px 25px rgba(139, 69, 255, 0.4);
  }

  .pulse-dot {
    box-shadow: 0 0 15px rgba(10, 191, 188, 0.9);
  }
}

/* ============ OVERLAY TRANSPARENCY FIX ============ */

/* Ensure hero background doesn't obscure content */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.2) 0%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ============ SMALL LAPTOP SPECIFIC (1024px - 1365px) ============ */

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  .hero-badge {
    font-size: 0.85rem !important;
    padding: 0.55rem 1.1rem !important;
    margin-top: 5rem !important;
    background-color: rgba(139, 69, 255, 0.25) !important;
    border: 2px solid rgba(139, 69, 255, 0.6) !important;
    box-shadow: 0 4px 25px rgba(139, 69, 255, 0.4);
    z-index: 1000 !important;
  }

  .hero {
    padding: 11rem 1.5rem 4rem !important;
  }

  .hero-container {
    max-width: 1100px;
  }

  .hero-title {
    font-size: 3rem;
    line-height: 1.15;
  }
}

/* ============ TABLET RESPONSIVENESS ============ */

@media screen and (max-width: 1024px) {
  .hero-badge {
    font-size: 0.8rem !important;
    padding: 0.5rem 1rem !important;
    z-index: 1000 !important;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-badge {
    font-size: 0.75rem !important;
    padding: 0.45rem 0.9rem !important;
    margin-bottom: 1.5rem;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }
}

/* ============ MOBILE RESPONSIVENESS ============ */

@media screen and (max-width: 480px) {
  .hero-badge {
    font-size: 0.7rem !important;
    padding: 0.4rem 0.8rem !important;
    gap: 0.4rem;
  }

  .pulse-dot {
    width: 6px;
    height: 6px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }
}

@media screen and (max-width: 360px) {
  .hero-badge {
    font-size: 0.65rem !important;
    padding: 0.35rem 0.7rem !important;
  }

  .hero-title {
    font-size: 1.8rem;
  }
}

/* ============ NAVIGATION FIX FOR ALL ZOOM LEVELS ============ */

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000 !important;
  background: rgba(13, 18, 35, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.nav-container {
  position: relative;
  z-index: 2001;
}

.nav-brand {
  z-index: 2002 !important;
}

.nav-toggle {
  z-index: 2002 !important;
}

/* ============ DEMO CONTAINER RESPONSIVENESS ============ */

.hero-demo {
  position: relative;
  z-index: 10;
}

.demo-container {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 10;
}

/* ============ TEXT READABILITY ENHANCEMENTS ============ */

@media screen and (max-width: 1365px) {
  .gradient-text {
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.1);
  }

  .hero-title,
  .hero-description,
  .hero-badge {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* ============ FALLBACK FOR VERY OLD BROWSERS ============ */

@supports not (backdrop-filter: blur(10px)) {
  .hero-badge {
    background-color: rgba(139, 69, 255, 0.35) !important;
  }
}

/* ============ PRINT STYLES (BONUS) ============ */

@media print {
  .hero-badge {
    display: inline-flex !important;
    color: #000 !important;
    background: #fff !important;
    border: 2px solid #000 !important;
  }
}

/* ============ ACCESSIBILITY ENHANCEMENTS ============ */

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-badge {
    background-color: rgba(139, 69, 255, 0.4) !important;
    border: 3px solid rgba(139, 69, 255, 0.8) !important;
    font-weight: 700 !important;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .pulse-dot {
    animation: none;
  }
}

/* ============ LANDSCAPE MOBILE FIX ============ */

@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .hero-badge {
    font-size: 0.7rem !important;
    padding: 0.4rem 0.8rem !important;
    margin-bottom: 1rem;
  }

  .hero-container {
    gap: 2rem;
  }
}

/* ============ FORCED VISIBILITY (LAST RESORT) ============ */

/* This ensures the badge is ALWAYS visible */
.hero-content > .hero-badge:first-child {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 9999 !important;
}
/* * ============================================
   CRITICAL HERO SECTION ZOOM FIX
   Copy this entire block and paste at the VERY END of stylesOGnew.css
   ============================================ */
*/

/* Override existing hero spacing for all screen sizes */
.hero {
  margin-top: 80px !important;
  padding-top: 2rem !important;
}

.hero-badge {
  margin-top: 0 !important;
  margin-bottom: 1.5rem !important;
}

.hero-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-container {
  transform: none !important;
  transform-origin: unset !important;
}

/* 125% Zoom Fix (1000px - 1199px width) */
@media screen and (min-width: 1000px) and (max-width: 1199px) {
  .hero {
    margin-top: 80px !important;
    padding-top: 2rem !important;
  }

  .hero-badge {
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
  }
}

/* 150% Zoom Fix (800px - 999px width) */
@media screen and (min-width: 800px) and (max-width: 999px) {
  .hero {
    margin-top: 80px !important;
    padding-top: 2rem !important;
  }
}

/* Small Laptop Fix (1024px - 1365px) - Override earlier media query */
@media screen and (min-width: 1024px) and (max-width: 1365px) {
  .hero {
    margin-top: 80px !important;
    padding-top: 2rem !important;
  }

  .hero-badge {
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
  }
}

/* Remove the problematic earlier media query rules */
@media screen and (min-width: 1024px) and (max-width: 1365px) {
  .hero {
    padding: 2rem 1.5rem 3.5rem !important;
    padding-top: 2rem !important;
    margin-top: 80px !important;
  }
}
.hero-badge {
  font-family: "Inter", sans-serif !important;
  font-weight: 400 !important; /* Regular weight */
  text-shadow: none !important;
}
/* ============================================
   CRITICAL HERO SECTION ZOOM FIX
   Add this at the VERY END of your stylesOGnew.css file
   ============================================ */

/* Override existing hero spacing for all screen sizes */
.hero {
  margin-top: 80px !important;
  padding-top: 2rem !important;
  min-height: calc(100vh - 80px) !important;
}

.hero-badge {
  margin-top: 0 !important;
  margin-bottom: 1.5rem !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 400 !important;
  text-shadow: none !important;
}

.hero-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-container {
  transform: none !important;
  transform-origin: unset !important;
  padding-top: 2rem !important;
}

/* 125% Zoom Fix (1000px - 1199px width) */
@media screen and (min-width: 1000px) and (max-width: 1199px) {
  .hero {
    margin-top: 80px !important;
    padding-top: 2rem !important;
    min-height: calc(100vh - 80px) !important;
  }

  .hero-badge {
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
  }

  .hero-container {
    padding-top: 2rem !important;
  }
}

/* 150% Zoom Fix (800px - 999px width) */
@media screen and (min-width: 800px) and (max-width: 999px) {
  .hero {
    margin-top: 80px !important;
    padding-top: 2rem !important;
    min-height: calc(100vh - 80px) !important;
  }

  .hero-badge {
    margin-top: 0 !important;
  }

  .hero-container {
    padding-top: 2rem !important;
  }
}

/* Small Laptop Fix (1024px - 1365px) */
@media screen and (min-width: 1024px) and (max-width: 1365px) {
  .hero {
    margin-top: 80px !important;
    padding-top: 2rem !important;
    padding-bottom: 3.5rem !important;
    min-height: calc(100vh - 80px) !important;
  }

  .hero-badge {
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-container {
    padding-top: 2rem !important;
  }
}

/* 110% - 120% zoom */
@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .hero {
    margin-top: 80px !important;
    padding-top: 2rem !important;
    min-height: calc(100vh - 80px) !important;
  }

  .hero-badge {
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-container {
    padding-top: 2rem !important;
  }
}

/* Tablet and below - ensure no top spacing issues */
@media screen and (max-width: 1024px) {
  .hero {
    margin-top: 80px !important;
    padding-top: 2rem !important;
  }

  .hero-badge {
    margin-top: 0 !important;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    margin-top: 70px !important;
    padding-top: 1.5rem !important;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    margin-top: 60px !important;
    padding-top: 1.5rem !important;
  }
}
