:root {
  --primary: #6C63FF;
  --secondary: #00F5FF;
  --dark: #0A0A0A;
  --light: #FFFFFF;
  --gray: #888888;
}

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

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 40px;
  width: auto;
}

nav a {
  margin-left: 2rem;
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&q=80') no-repeat center center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.7));
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* ===== BUTTONS ===== */
.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--light);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.whatsapp-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #25D366;
  color: var(--light);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 2rem;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
}

.back-button {
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.back-button:hover {
  color: var(--primary);
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 6rem 0;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.features p {
  text-align: center;
  color: var(--gray);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.features .cta-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(108, 99, 255, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-card ul {
  list-style: none;
}

.feature-card li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray);
  line-height: 1.5;
}

.feature-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* ===== IMPLEMENTATION SECTION ===== */
.implementation-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(0, 245, 255, 0.05));
  position: relative;
  overflow: hidden;
}

.implementation-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.implementation-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.implementation-content p {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.timeline-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(108, 99, 255, 0.1);
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(108, 99, 255, 0.2);
  border-color: var(--primary);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-item:hover::before {
  opacity: 1;
}

.timeline-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.timeline-title {
  font-size: 1.2rem;
  color: var(--light);
  margin-bottom: 1rem;
  text-align: center;
}

.timeline-text {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.timeline-details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-details ul {
  list-style: none;
  padding: 0;
}

.timeline-details li {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.timeline-details li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 6rem 0;
  background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&q=80') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.85));
  backdrop-filter: blur(2px);
  z-index: 1;
}

.faq-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item {
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(108, 99, 255, 0.1);
}

.faq-item.active .faq-question {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 30px rgba(108, 99, 255, 0.2);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(0, 245, 255, 0.05));
  position: relative;
  overflow: hidden;
}

.social-proof::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(108, 99, 255, 0.1), transparent 70%);
  z-index: 1;
}

.social-proof .container {
  position: relative;
  z-index: 2;
}

.social-proof h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-proof p {
  color: var(--gray);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(108, 99, 255, 0.2);
}

.stat-box:hover::before {
  opacity: 1;
}

.stat-box h3 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
  min-height: 3rem;
}

.stat-box h3 .counter {
  display: inline-block;
  background: transparent;
  color: inherit;
  font-size: inherit;
  padding: 0;
  border-radius: 0;
  font-weight: inherit;
  min-width: 3ch;
}

.stat-box p {
  color: var(--gray);
  font-size: 1.1rem;
  margin: 0;
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(0, 245, 255, 0.05));
  position: relative;
  overflow: hidden;
  display: none;
}

.clients-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(108, 99, 255, 0.1), transparent 70%);
  z-index: 1;
}

.clients-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.clients-title {
  font-size: 1.5rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.logo-carousel {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem 0;
}

.logo-carousel-container {
  display: flex;
  animation: scroll 30s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  width: 150px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2rem;
  padding: 1rem;
  transition: all 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(108, 99, 255, 0.2);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%) brightness(200%);
  transition: filter 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%) brightness(100%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
}

.social-links {
  margin: 1rem 0;
}

.social-links a {
  color: var(--light);
  font-size: 1.5rem;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary);
}

.powered-by {
  font-size: 0.8rem;
  margin-top: 1rem;
  color: var(--gray);
}

.powered-by a {
  color: var(--primary);
  text-decoration: none;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 8rem 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(0, 245, 255, 0.1));
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-left {
  position: sticky;
  top: 8rem;
}

.contact-header {
  text-align: left;
  margin-bottom: 3rem;
}

.contact-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-header p {
  color: var(--gray);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

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

.benefit-item h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.benefit-item p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--light);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--light);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group input::placeholder {
  color: var(--gray);
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--light);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  position: relative;
  padding-bottom: 1rem;
}

.char-counter {
  position: relative;
  text-align: right;
  color: var(--gray);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.required {
  color: var(--secondary);
  margin-left: 4px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-left {
    position: static;
  }

  .contact-header {
    text-align: center;
  }

  .contact-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  nav {
    display: none;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-box {
    padding: 1.5rem;
  }

  .stat-box h3 {
    font-size: 2.5rem;
  }

  .logo img {
    max-height: 32px;
  }
  
  .contact-section {
    padding: 6rem 0 2rem;
  }

  .contact-header h1 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .benefit-item {
    padding: 1.5rem;
  }
  
  .logo-item {
    width: 120px;
    height: 60px;
    margin: 0 1rem;
  }
}

/* ===== AI SDR SECTION ===== */
.ai-sdr-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.8));
  position: relative;
  overflow: hidden;
}

.ai-sdr-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&q=80') no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.ai-sdr-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 4rem;
}

.ai-sdr-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ai-sdr-header p {
  color: var(--gray);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.ai-sdr-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ai-sdr-visual {
  position: relative;
}

.phone-mockup {
  width: 320px;
  height: 650px;
  background: #1e1e1e;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  border: 10px solid #121212;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 30px;
  background: #121212;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 2;
}

.phone-header {
  padding: 50px 15px 15px;
  background: #075e54;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-profile {
  display: flex;
  align-items: center;
}

.contact-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.contact-avatar i {
  color: white;
  font-size: 20px;
}

.contact-info {
  color: white;
}

.contact-name {
  font-weight: 600;
  font-size: 14px;
}

.status {
  font-size: 12px;
  opacity: 0.8;
}

.phone-options {
  display: flex;
  gap: 15px;
  color: white;
}

.phone-options i {
  font-size: 16px;
}

.phone-screen {
  height: calc(100% - 65px);
  background: url('https://i.pinimg.com/originals/97/c0/07/97c00759d90d786d9b6a65736192e5d4.jpg');
  background-size: cover;
  padding: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding-bottom: 15px;
}

.chat-bubble {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 15px;
  position: relative;
  animation: fadeIn 0.3s forwards;
  animation-delay: var(--delay);
  opacity: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  word-wrap: break-word;
}

.chat-bubble p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.chat-bubble .time {
  font-size: 10px;
  opacity: 0.7;
  margin-top: 5px;
  text-align: right;
}

.received {
  background: white;
  color: #333;
  align-self: flex-start;
  border-top-left-radius: 0;
}

.sent {
  background: #dcf8c6;
  color: #333;
  align-self: flex-end;
  border-top-right-radius: 0;
}

.emoji {
  margin-right: 10px;
  font-size: 16px;
}

.input-text {
  flex-grow: 1;
  color: #999;
  font-size: 14px;
}

.mic {
  color: #075e54;
  font-size: 16px;
}

.ai-sdr-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.2);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  color: var(--light);
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .ai-sdr-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .ai-sdr-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .ai-sdr-benefits {
    grid-template-columns: 1fr;
  }
}

/* ===== CRM SECTION ===== */
.crm-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.9));
  position: relative;
  overflow: hidden;
}

.crm-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&q=80') no-repeat center center;
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
}

.crm-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 4rem;
}

.crm-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.crm-header p {
  color: var(--gray);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.crm-board {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto 4rem;
  background: rgba(20, 20, 20, 0.6);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.crm-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.crm-column {
  background: rgba(30, 30, 30, 0.5);
  border-radius: 8px;
  padding: 1rem;
  min-height: 350px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.column-header h3 {
  font-size: 1rem;
  color: var(--light);
  font-weight: 600;
}

.counter {
  display: inline-block;
  background: #4c6ef5;
  color: white;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
}

.counter.blue {
  background: #4c6ef5;
}

.counter.orange {
  background: #ff922b;
}

.card {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.5s ease;
  animation: cardFloat 3s ease-in-out infinite;
}

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

#moving-card {
  animation: moveCard 15s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes moveCard {
  0%, 100% {
    transform: translateX(0) scale(1);
    z-index: 1;
  }
  20% {
    transform: translateX(0) scale(1);
    z-index: 1;
  }
  30% {
    transform: translateX(calc(100% + 1.5rem)) translateY(0) scale(1);
    z-index: 2;
  }
  45% {
    transform: translateX(calc(100% + 1.5rem)) translateY(0) scale(1);
    z-index: 2;
  }
  55% {
    transform: translateX(calc(200% + 3rem)) translateY(0) scale(1);
    z-index: 3;
  }
  70% {
    transform: translateX(calc(200% + 3rem)) translateY(0) scale(1);
    z-index: 3;
  }
  80% {
    transform: translateX(0) scale(1);
    z-index: 1;
  }
}

.card-amount {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #6C63FF;
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-title {
  color: #222;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.card-subtitle {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.card-date {
  color: #888;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.card-date i, .card-created i {
  margin-right: 0.3rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.interactions {
  color: #666;
  font-size: 0.8rem;
}

.card-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.card-whatsapp:hover {
  transform: scale(1.1);
}

.card-view {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: #f0f0f0;
  color: #444;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.8rem;
  transition: background 0.3s ease;
}

.card-view:hover {
  background: #e0e0e0;
}

.card-created {
  color: #999;
  font-size: 0.75rem;
  margin-top: 1rem;
  text-align: right;
}

.crm-integration {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.integration-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.integration-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.integration-content p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.integration-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.integration-benefits li {
  color: var(--gray);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.integration-benefits li i {
  color: var(--secondary);
  margin-right: 0.5rem;
  font-size: 1rem;
}

.custom-integration {
  font-size: 1.1rem;
  margin-top: 2rem;
  color: var(--gray);
}

.custom-integration strong {
  color: var(--light);
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
  .crm-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .integration-benefits {
    grid-template-columns: 1fr;
  }
  
  .card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  #moving-card {
    animation: none;
  }
  
  .crm-column {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .integration-benefits {
    grid-template-columns: 1fr;
  }
  
  .crm-board {
    padding: 1rem;
  }
  
  .integration-content {
    padding: 1.5rem;
  }
}

/* ===== CAMPAIGNS SECTION ===== */
.campaigns-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
  padding: 8rem 0;
  position: relative;
}

.campaigns-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(108, 99, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.campaigns-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.campaigns-header h2 {
  font-size: 2.5rem;
  color: var(--light);
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.campaigns-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.campaigns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.campaigns-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.campaign-dashboard {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 500px;
  backdrop-filter: blur(10px);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.dashboard-header h3 {
  color: var(--dark);
  font-size: 1.3rem;
  margin: 0;
  flex: 1;
}

.campaign-status {
  background: #10b981;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.campaign-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}

.leads-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lead-card {
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease;
}

.lead-card:hover {
  transform: translateX(5px);
}

.lead-card.hot {
  background: linear-gradient(135deg, #fee2e2 0%, #fef2f2 100%);
  border-left-color: #ef4444;
}

.lead-card.warm {
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
  border-left-color: #f59e0b;
}

.lead-card.cold {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  border-left-color: #0ea5e9;
}

.lead-info {
  flex: 1;
}

.lead-name {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.lead-score {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #666;
}

.lead-insight {
  font-size: 0.8rem;
  color: #666;
}

.lead-actions {
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn.voice {
  background: #3b82f6;
  color: white;
}

.action-btn.whatsapp {
  background: #25d366;
  color: white;
}

.action-btn.email {
  background: #6b7280;
  color: white;
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.campaigns-features {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.feature-block {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-content h3 {
  color: var(--light);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.feature-content p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-content ul {
  list-style: none;
  padding: 0;
}

.feature-content ul li {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.feature-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 600;
}

.campaigns-process {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  margin: 5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.campaigns-process h3 {
  text-align: center;
  color: var(--light);
  font-size: 2rem;
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  flex: 1;
  max-width: 200px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-content h4 {
  color: var(--light);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.4;
}

.process-arrow {
  color: var(--primary);
  font-size: 2rem;
  font-weight: bold;
  margin: 0 1rem;
}

.campaigns-results {
  position: relative;
  z-index: 1;
}

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

.results-header h3 {
  color: var(--light);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.results-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.result-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.result-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.result-text {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .campaigns-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .campaigns-visual {
    order: -1;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 2rem;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }
  
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .campaigns-header h2 {
    font-size: 2rem;
  }
  
  .campaign-dashboard {
    padding: 1.5rem;
  }
  
  .campaign-stats {
    grid-template-columns: 1fr;
  }
  
  .lead-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .campaigns-process {
    padding: 2rem;
  }
}

/* ===== ANALYTICS SECTION ===== */
.analytics-section {
  background: linear-gradient(135deg, var(--dark) 0%, #0f172a 100%);
  padding: 8rem 0;
  position: relative;
}

.analytics-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.analytics-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.analytics-header h2 {
  font-size: 2.5rem;
  color: var(--light);
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.analytics-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.analytics-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.marketing-dashboard {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 650px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-top {
  margin-bottom: 2.5rem;
}

.dashboard-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f1f5f9;
}

.dashboard-title h3 {
  color: var(--dark);
  font-size: 1.4rem;
  margin: 0;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-size: 0.9rem;
  font-weight: 600;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

.dashboard-overview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.overview-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  padding: 1.5rem;
  border-left: 4px solid;
  transition: transform 0.3s ease;
}

.overview-card:hover {
  transform: translateY(-3px);
}

.overview-card.total { border-left-color: #3b82f6; }
.overview-card.conversions { border-left-color: #10b981; }
.overview-card.cpa { border-left-color: #f59e0b; }
.overview-card.roi { border-left-color: #8b5cf6; }

.card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.card-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.card-change {
  font-size: 0.8rem;
  font-weight: 600;
}

.card-change.positive {
  color: #10b981;
}

.card-change.negative {
  color: #ef4444;
}

.campaigns-performance {
  margin-bottom: 2rem;
}

.campaigns-performance h4,
.optimization-alerts h4 {
  color: var(--dark);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.campaigns-list,
.alerts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.campaign-item {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.campaign-item:hover {
  transform: translateX(3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.campaign-item.best {
  border-left-color: #10b981;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
}

.campaign-item.good {
  border-left-color: #3b82f6;
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
}

.campaign-info {
  flex: 1;
}

.campaign-name {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.campaign-platform {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.campaign-metrics {
  display: flex;
  gap: 1.5rem;
  margin: 0 1rem;
}

.metric {
  text-align: center;
}

.metric .value {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
}

.metric .label {
  display: block;
  font-size: 0.7rem;
  color: #64748b;
  margin-top: 0.2rem;
}

.campaign-status {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.campaign-status.excellent {
  background: #10b981;
}

.campaign-status.good {
  background: #3b82f6;
}

.alert-item {
  background: linear-gradient(135deg, #fef2f2 0%, #fefefe 100%);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 4px solid #f59e0b;
}

.alert-item.warning {
  border-left-color: #ef4444;
  background: linear-gradient(135deg, #fef2f2 0%, #fefefe 100%);
}

.alert-item.attention {
  border-left-color: #f59e0b;
  background: linear-gradient(135deg, #fffbeb 0%, #fefefe 100%);
}

.alert-icon {
  font-size: 1.2rem;
}

.alert-content {
  flex: 1;
}

.alert-title {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.alert-desc {
  font-size: 0.9rem;
  color: #64748b;
}

.optimize-btn {
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.optimize-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.analytics-features {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.analytics-benefits {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  margin: 5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

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

.benefits-header h3 {
  color: var(--light);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefits-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #3b82f6, #10b981);
  border-radius: 15px;
  flex-shrink: 0;
}

.benefit-text h4 {
  color: var(--light);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.benefit-text p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

.analytics-metrics {
  text-align: center;
  position: relative;
  z-index: 1;
}

.analytics-metrics h3 {
  color: var(--light);
  font-size: 2rem;
  margin-bottom: 3rem;
}

.metrics-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.metric-highlight {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.metric-highlight:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.metric-desc {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .analytics-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .analytics-visual {
    order: -1;
  }
  
  .dashboard-overview {
    grid-template-columns: 1fr;
  }
  
  .campaign-metrics {
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .metrics-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .analytics-header h2 {
    font-size: 2rem;
  }
  
  .marketing-dashboard {
    padding: 1.5rem;
  }
  
  .campaign-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .campaign-metrics {
    flex-direction: row;
    gap: 1rem;
  }
  
  .alert-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .metrics-showcase {
    grid-template-columns: 1fr;
  }
  
  .analytics-benefits {
    padding: 2rem;
  }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  font-size: 1rem; /* Default font size for the icon */
}

.floating-whatsapp-button i {
  font-size: 1.5rem; /* Larger icon */
  margin-right: 8px;
}

.floating-whatsapp-button span {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.5s ease, opacity 0.3s ease;
  opacity: 0;
}

.floating-whatsapp-button:hover {
  padding-right: 18px;
  padding-left: 18px;
}

.floating-whatsapp-button:hover span {
  max-width: 300px; /* Adjust as needed */
  opacity: 1;
  margin-left: 8px;
}

/* Responsive adjustments for floating WhatsApp button */
@media (max-width: 768px) {
  .floating-whatsapp-button span {
    display: none; /* Hide text on smaller screens initially */
  }
  .floating-whatsapp-button:hover span {
    display: inline; /* Show text on hover even on smaller screens */
     max-width: 200px; /* Adjust as needed for smaller screens */
  }
   .floating-whatsapp-button i {
    font-size: 1.3rem; 
  }
  .floating-whatsapp-button {
    padding: 10px;
  }
  .floating-whatsapp-button:hover {
    padding-right: 15px;
    padding-left: 15px;
  }
} 