/*
Theme Name: Pulsewise Theme
Theme URI: https://pulsewise.ai
Author: Pulsewise Team
Author URI: https://pulsewise.ai
Description: A modern WordPress theme for Pulsewise.ai
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pulsewise_theme
*/

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

/* Original CSS content */
:root {
  --text-color: #374151;
  --background-color: #fff;
  --pulse-50: #f8f5ff;
  --pulse-100: #ede9ff;
  --pulse-200: #d8d1ff;
  --pulse-300: #c2b5ff;
  --pulse-400: #a593fc;
  --pulse-500: #8b6ff8;
  --pulse-600: #7750ea;
  --pulse-700: #663dd1;
  --pulse-800: #5331aa;
  --pulse-900: #3d2278;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --red-500: #ef4444;
  --yellow-500: #eab308;
  --green-500: #22c55e;
  --white: #ffffff;
  --black: #000000;
  --radius: 0.5rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
 

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--gray-700);
  line-height: 1.5;
  background-color: var(--white);
}


img {
  max-width: 100%;
  height: auto;
}

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

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--gray-900);
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

.accent {
  color: var(--pulse-500);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pulse-900);
  margin-bottom: 0.75rem;
}

.section-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 36rem;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

.btn-primary {
  background-color: var(--pulse-500);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--pulse-600);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--pulse-300);
  color: var(--pulse-600);
}

.btn-outline:hover {
  background-color: var(--pulse-50);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  position: relative;
  height: 2rem;
  width: 2rem;
}

.circle {
  position: absolute;
  border-radius: 50%;
}

.circle-1 {
  top: 0;
  left: 0;
  height: 2rem;
  width: 2rem;
  background-color: var(--pulse-400);
  opacity: 0.75;
  animation: pulsate 2s ease-in-out infinite;
}

.circle-2 {
  top: 0.25rem;
  left: 0.25rem;
  height: 1.5rem;
  width: 1.5rem;
  background-color: var(--pulse-600);
  opacity: 0.85;
  animation: pulsate 2s ease-in-out infinite;
  animation-delay: 0.3s;
}

.circle-3 {
  top: 0.5rem;
  left: 0.5rem;
  height: 1rem;
  width: 1rem;
  background-color: var(--pulse-800);
  opacity: 0.95;
  animation: pulsate 2s ease-in-out infinite;
  animation-delay: 0.6s;
}

@keyframes pulsate {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pulse-900);
}

.logo-accent {
  color: var(--pulse-500);
}

/* Navigation */
.nav {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    gap: 2rem;
  }
}

.nav-link {
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--pulse-600);
}

.header-buttons {
  display: flex;
  gap: 1rem;
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(to bottom right, var(--white), var(--pulse-50));
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
  }
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-image {
  flex: 1;
  position: relative;
}

/* Dashboard */
.dashboard {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.indicator {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--green-500);
  border-radius: 50%;
}

.dashboard-updated {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.dashboard-metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric-name {
  font-weight: 500;
}

.metric-priority {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
}

.high {
  background-color: var(--red-500);
  color: var(--white);
}

.medium {
  background-color: var(--yellow-500);
  color: var(--white);
}

.low {
  background-color: var(--green-500);
  color: var(--white);
}

.progress-bar {
  height: 0.5rem;
  background-color: var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: var(--radius);
}

.red {
  background-color: var(--red-500);
}

.yellow {
  background-color: var(--yellow-500);
}

.green {
  background-color: var(--green-500);
}

.dashboard.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Notifications */
.notification {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  max-width: 16rem;
  animation: pulse-wave 2s ease-in-out infinite;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

.top-right {
  top: 0;
  right: 0;
  transform: translate(25%, -25%);
}

.bottom-left {
  bottom: 0;
  left: 0;
  transform: translate(-25%, 25%);
}

.notification-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.notification-text {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Features Section */
.features {
  padding: 4rem 0;
}

.features-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: var(--pulse-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--pulse-600);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--gray-600);
}

.feature.hover {
  transform: translateY(-5px);
}

/* Footer */
.footer {
  background-color: var(--gray-50);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--gray-600);
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--pulse-600);
}

.footer-links-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--gray-600);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--pulse-600);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.copyright {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-link {
  color: var(--gray-600);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.legal-link:hover {
  color: var(--pulse-600);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1000;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

 


/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background-color: var(--pulse-50);
}

.workflow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .workflow {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Connecting Lines */
.connecting-line {
  display: none;
}

@media (min-width: 768px) {
  .connecting-line {
    display: block;
    position: absolute;
    top: 50%;
    height: 0.25rem;
    background-color: var(--pulse-200);
    z-index: 0;
    transform: translateY(-50%);
  }
  
  .line-1 {
    left: 25%;
    right: 50%;
  }
  
  .line-2 {
    left: 50%;
    right: 25%;
  }
}

.workflow-step {
  position: relative;
  z-index: 10;
}

.step-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--pulse-100);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.step-icon {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  background-color: var(--pulse-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  color: var(--pulse-600);
}

.step-title-container {
  display: flex;
  flex-direction: column;
}

.step-title {
  font-size: 1.25rem;
  color: var(--pulse-900);
  margin: 0;
}

.step-subtitle {
  font-size: 0.875rem;
  color: var(--pulse-600);
  margin: 0;
}

/* Chat */
.chat {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.message-group {
  border-bottom: 1px dashed var(--gray-200);
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
}

.message-group:last-child {
  border-bottom: none;
}

.message-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.employee-badge {
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.e1 {
  background-color: #dbeafe;
  color: #1e40af;
}

.e2 {
  background-color: #dcfce7;
  color: #166534;
}

.e3 {
  background-color: #f3e8ff;
  color: #6b21a8;
}

.message-label {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.message-user {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 0.75rem;
}

.message-user:last-child {
  margin-bottom: 0;
}

.message-bubble {
  background-color: var(--gray-100);
  padding: 0.75rem;
  border-radius: 0.75rem;
  border-top-right-radius: 0;
  max-width: 90%;
}

.message-bubble.bot {
  background-color: var(--pulse-100);
  border-radius: 0.75rem;
  border-top-left-radius: 0;
}

.message-bubble p {
  font-size: 0.875rem;
  color: var(--gray-700);
  margin: 0;
}

.message-meta {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

/* Analysis */
.analysis {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.analysis-process {
  background-color: var(--pulse-50);
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--pulse-100);
  margin-bottom: 0.5rem;
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.process-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--pulse-700);
}

.process-status {
  font-size: 0.75rem;
  color: var(--pulse-500);
}

.progress-bar {
  height: 0.375rem;
  width: 100%;
  background-color: var(--gray-200);
  border-radius: 9999px;
}

.progress-fill {
  height: 0.375rem;
  background-color: var(--pulse-500);
  border-radius: 9999px;
}

.analysis-item {
  background-color: var(--pulse-50);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--pulse-100);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.analysis-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.analysis-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.analysis-icon {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background-color: var(--pulse-100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.analysis-icon::before {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.theme-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237750ea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpath d='M16.24 7.76a6 6 0 0 1 0 8.49'%3E%3C/path%3E%3Cpath d='M7.76 16.24a6 6 0 0 1 0-8.49'%3E%3C/path%3E%3C/svg%3E");
}

.sentiment-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237750ea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='22 12 18 12 15 21 9 3 6 12 2 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.cluster-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237750ea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m16 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z'%3E%3C/path%3E%3Cpath d='m2 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z'%3E%3C/path%3E%3Cpath d='M7 21h10'%3E%3C/path%3E%3Cpath d='M12 3v18'%3E%3C/path%3E%3Cpath d='M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2'%3E%3C/path%3E%3C/svg%3E");
}

.analysis-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--pulse-800);
  margin: 0;
}

.analysis-result {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0 0 0.75rem 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.analysis-tag {
  background-color: var(--pulse-100);
  color: var(--pulse-700);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

.sentiment-bar {
  height: 0.5rem;
  width: 100%;
  background-color: var(--gray-200);
  border-radius: 9999px;
  margin: 0.5rem 0;
}

.sentiment-fill {
  height: 0.5rem;
  border-radius: 9999px;
}

.sentiment-fill.negative {
  background-color: var(--red-500);
}

.sentiment-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray-500);
}

.cluster-items {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cluster-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-600);
}

.cluster-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.cluster-dot.primary {
  background-color: var(--pulse-700);
}

.cluster-dot.secondary {
  background-color: var(--pulse-500);
}

.cluster-dot.tertiary {
  background-color: var(--pulse-300);
}

/* Actions */
.actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.action-item {
  background-color: var(--white);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--pulse-100);
  box-shadow: var(--shadow-sm);
}

.action-title {
  font-weight: 500;
  color: var(--pulse-800);
  margin-bottom: 0.5rem;
}

.action-description {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.action-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.priority-tag {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--red-500);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-weight: 500;
}

.related-count {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Leadership Chat */
.leadership-chat {
  padding-bottom: 0.5rem;
  margin-top: 1rem;
  border: 1px solid var(--pulse-300);
  border-radius: 0.5rem;
  position: relative;
  background-color: var(--pulse-50);
}

.leadership-chat::before {
  content: 'AI Assistant';
  position: absolute;
  top: -0.75rem;
  right: -0.5rem;
  background-color: var(--pulse-500);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 500;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ai-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.user-message {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.ai-message .message-bubble {
  background-color: var(--pulse-200);
  border-radius: 0.75rem;
  border-top-left-radius: 0;
  padding: 0.75rem;
  max-width: 90%;
  border-left: 4px solid var(--pulse-400);
}

.user-message .message-bubble {
  background-color: var(--gray-100);
  border-radius: 0.75rem;
  border-top-right-radius: 0;
  padding: 0.75rem;
  max-width: 90%;
}

.ai-message .message-bubble p {
  color: var(--pulse-800);
  font-weight: 500;
}

.message-meta {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.chat-input {
  position: relative;
  margin: 0.75rem;
}

.leadership-chat-input {
  width: 100%;
  border: 1px solid var(--pulse-300);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  padding-right: 2.5rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.leadership-chat-input:focus {
  border-color: var(--pulse-400);
  box-shadow: 0 0 0 2px rgba(139, 111, 248, 0.1);
}

.leadership-chat-send {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--pulse-500);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.leadership-chat-send:hover {
  color: var(--pulse-600);
}

.step-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.step-footer p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--pulse-100);
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
}

.sc {
  background-color: var(--pulse-300);
}

.mj {
  background-color: var(--pulse-400);
}

.ap {
  background-color: var(--pulse-600);
}

.author-name {
  font-weight: 600;
  color: var(--pulse-900);
}

.author-title {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

.testimonial-quote {
  color: var(--gray-600);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.rating {
  display: flex;
}

.star {
  height: 1.25rem;
  width: 1.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23facc15'%3E%3Cpath d='M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118l-2.8-2.034c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z' /%3E%3C/svg%3E");
}

.bg-green-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 244 / var(--tw-bg-opacity));
}
.bg-blue-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity));
}
.bg-purple-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 245 255 / var(--tw-bg-opacity));
}
/* CTA Section */
.cta {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, var(--pulse-400), var(--pulse-700));
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}



/* Testimonial Slider */
.testimonial {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial.active {
  opacity: 1;
}


.btn-white {
  background-color: var(--white);
  color: var(--pulse-600);
}

.btn-white:hover {
  background-color: var(--gray-100);
}

.btn-outline-white {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
/* CTA Button Hover Effects */
.cta-buttons .btn {
  transition: transform 0.3s ease;
}

.cta-buttons .btn.hover {
  transform: translateY(-2px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--background-color);
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    display: block;
    padding: 10px 0;
    font-size: 1.1em;
  }
} 