.crm-page .hero-visual {
  position: relative;
  width: 100%;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 159, 46, 0.2);
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.crm-cta {
  padding: 6rem 0;
  position: relative;
}

.cta-card {
  position: relative;
  background: linear-gradient(145deg, rgba(20, 15, 10, 0.98) 0%, rgba(10, 8, 5, 1) 100%);
  border-radius: 40px;
  padding: 4rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(50px);
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.7), 
    inset 0 0 60px rgba(255, 159, 46, 0.05),
    0 0 0 1px rgba(255, 159, 46, 0.15);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  max-width: 1100px;
  margin: 0 auto;
}

/* Gradient Border Effect */
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255, 159, 46, 0.4), rgba(168, 85, 247, 0.4), rgba(236, 72, 153, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

/* Grid Pattern */
.cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 159, 46, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.2;
  z-index: 1;
}

.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 50px 120px rgba(0, 0, 0, 0.8), 
    inset 0 0 80px rgba(255, 159, 46, 0.1),
    0 0 30px rgba(255, 159, 46, 0.05);
}

.cta-content {
  position: relative;
  z-index: 5;
  max-width: 550px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.4rem;
  background: linear-gradient(90deg, #ff9f2e, #ff6b0b);
  color: #000;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 8px 20px rgba(255, 159, 46, 0.2);
}

.cta-content h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 40%, #ff9f2e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1.5px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.cta-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.cta-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.cta-features i {
  color: #ff9f2e;
  width: 20px;
  height: 20px;
  background: rgba(255, 159, 46, 0.1);
  padding: 3px;
  border-radius: 6px;
}

.cta-actions {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
}

.cta-pricing {
  position: relative;
  z-index: 5;
  margin-left: 3rem;
  perspective: 1000px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2.5rem 2rem;
  border-radius: 32px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
  min-width: 240px;
}

.pricing-card:hover {
  transform: rotateY(-5deg) rotateX(5deg);
}

.pricing-plan {
  display: block;
  font-size: 0.85rem;
  color: #ff9f2e;
  font-weight: 900;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.pricing-price .currency {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ff9f2e;
}

.pricing-price .amount {
  font-size: 4rem;
  font-weight: 950;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
}

.pricing-price .period {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
}

.pricing-footer {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-footer p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.cta-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.cta-blob {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 159, 46, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  animation: float-blob 10s infinite alternate ease-in-out;
}

.cta-blob-secondary {
  position: absolute;
  bottom: -15%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  animation: float-blob 15s infinite alternate-reverse ease-in-out;
}

.cta-blob-extra {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
  filter: blur(50px);
}

@media (max-width: 968px) {
  .cta-card {
    flex-direction: column;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 32px;
  }
  
  .cta-content {
    max-width: 100%;
    margin-bottom: 3rem;
  }
  
  .cta-features {
    align-items: center;
  }
  
  .cta-pricing {
    margin-left: 0;
    margin-bottom: 2rem;
  }

  .pricing-price .amount {
    font-size: 3.5rem;
  }
}

/* FAQ Section Styles */
.faq-section {
  padding-bottom: 6rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  margin: 0 auto;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: fit-content;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 159, 46, 0.2);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-question span {
  flex: 1;
  line-height: 1.3;
}

.faq-question i {
  color: rgba(255, 159, 46, 0.4);
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.faq-answer p {
  padding: 0 1.4rem 1.2rem 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  font-size: 0.9rem;
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 159, 46, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.pricing-price .currency {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ff9f2e;
}

.pricing-price .amount {
  font-size: 4rem;
  font-weight: 950;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
}

.pricing-price .period {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
}

.pricing-footer {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-footer p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.cta-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.cta-blob {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 159, 46, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  animation: float-blob 10s infinite alternate ease-in-out;
}

.cta-blob-secondary {
  position: absolute;
  bottom: -15%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  animation: float-blob 15s infinite alternate-reverse ease-in-out;
}

.cta-blob-extra {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
  filter: blur(50px);
}

@media (max-width: 968px) {
  .cta-card {
    flex-direction: column;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 32px;
  }
  
  .cta-content {
    max-width: 100%;
    margin-bottom: 3rem;
  }
  
  .cta-features {
    align-items: center;
  }
  
  .cta-pricing {
    margin-left: 0;
    margin-bottom: 2rem;
  }

  .pricing-price .amount {
    font-size: 3.5rem;
  }
}

/* FAQ Section Styles */
.faq-section {
  padding-bottom: 6rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  margin: 0 auto;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: fit-content;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 159, 46, 0.2);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-question span {
  flex: 1;
  line-height: 1.3;
}

.faq-question i {
  color: rgba(255, 159, 46, 0.4);
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.faq-answer p {
  padding: 0 1.4rem 1.2rem 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  font-size: 0.9rem;
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 159, 46, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: #ff9f2e;
}

@media (max-width: 968px) {
  .faq-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding-bottom: 4rem;
  }
  
  .faq-question {
    font-size: 0.95rem;
    padding: 1rem 1.2rem;
  }
}

/* Animation for the Attention Button */
.pulse-attention {
  border-color: rgba(255, 159, 46, 0.6) !important;
  color: #ff9f2e !important;
  animation: pulse-border-attention 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.pulse-attention:hover {
  background: rgba(255, 159, 46, 0.1) !important;
  border-color: rgba(255, 159, 46, 0.8) !important;
}

@keyframes pulse-border-attention {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 159, 46, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 159, 46, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 159, 46, 0);
  }
}

/* CRM Carousel Styles */
.crm-screenshot-grid {
  position: relative;
}

.crm-carousel {
  position: relative;
}

.crm-carousel-viewport {
  overflow: hidden;
  border-radius: 14px;
}

.crm-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.crm-screenshot-card {
  margin: 0;
  min-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(39, 41, 46, 0.98), rgba(31, 33, 38, 0.98));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.crm-screenshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.crm-carousel-control {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(36, 38, 43, 0.94);
  color: #edf5ff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.crm-carousel-control:hover {
  background: rgba(45, 47, 53, 0.98);
  transform: translateY(-1px);
}

.crm-carousel-control.is-prev {
  left: 0.75rem;
}

.crm-carousel-control.is-next {
  right: 0.75rem;
}

.crm-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.crm-carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.crm-carousel-dot.is-active {
  transform: scale(1.18);
  background: rgba(255, 159, 46, 0.95);
}

@media (max-width: 760px) {
  .crm-carousel-control {
    width: 38px;
    height: 38px;
  }
}
