/* =========================================================
   Call Recording Feature Landing Page - Premium SaaS Style
   Color Palette: #3a3285 (Primary), #fff (White), #f8f9ff (Light BG)
   ========================================================= */

:root {
  --cr-primary: #3a3285;
  --cr-primary-light: #5a52c0;
  --cr-primary-dark: #2a2465;
  --cr-accent: #e60c80;
  --cr-accent-2: #05b7b7;
  --cr-white: #ffffff;
  --cr-light-bg: #f8f9ff;
  --cr-light-bg2: #f0f2ff;
  --cr-text-dark: #1e2228;
  --cr-text-body: #60697b;
  --cr-border: rgba(58, 50, 133, 0.12);
  --cr-shadow-sm: 0 4px 16px rgba(58, 50, 133, 0.08);
  --cr-shadow-md: 0 8px 32px rgba(58, 50, 133, 0.12);
  --cr-shadow-lg: 0 16px 48px rgba(58, 50, 133, 0.16);
  --cr-radius: 14px;
  --cr-radius-lg: 24px;
  --cr-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --cr-red: #e2626b;
  --cr-green: #45c4a0;
  --cr-yellow: #fab758;
}

.cr-hero,
.cr-section {
  overflow-x: hidden;
}

/* Reveal Animations */
.cr-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.cr-reveal.cr-revealed {
  opacity: 1;
  transform: translateY(0);
}

.cr-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.cr-reveal-left.cr-revealed {
  opacity: 1;
  transform: translateX(0);
}

.cr-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.cr-reveal-right.cr-revealed {
  opacity: 1;
  transform: translateX(0);
}

.cr-delay-1 {
  transition-delay: 0.1s;
}

.cr-delay-2 {
  transition-delay: 0.2s;
}

.cr-delay-3 {
  transition-delay: 0.3s;
}

.cr-delay-4 {
  transition-delay: 0.4s;
}

.cr-delay-5 {
  transition-delay: 0.5s;
}

/* Hero Section */
.cr-hero {
  background: linear-gradient(135deg, #2a2465 0%, #3a3285 50%, #5330a8 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 35px;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.cr-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 196, 160, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cr-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cr-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cr-hero .hero-badge span.dot {
  width: 8px;
  height: 8px;
  background: var(--cr-green);
  border-radius: 50%;
  animation: cr-pulse 1.6s infinite;
}

@keyframes cr-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(69, 196, 160, 0.6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(69, 196, 160, 0);
  }
}

.cr-hero .hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.cr-hero .hero-title .highlight {
  background: linear-gradient(90deg, #05b7b7, #e60c80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cr-hero .hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.cr-hero .btn-hero-primary {
  background: #fff;
  color: var(--cr-primary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--cr-transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.cr-hero .btn-hero-primary:hover {
  background: var(--cr-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(58, 50, 133, 0.3);
}
/* App Download Buttons */
.cr-app-btn {
  display: inline-flex;
  align-items: center;
  transition: var(--cr-transition);
  /* border-radius: 12px; */
  overflow: hidden;
  height: 48px;
  /* Standardize height */
  text-decoration: none !important;
}

.cr-app-btn svg {
  height: 100%;
  width: auto;
  display: block;
}

.cr-app-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Google Rating Component */
.cr-google-rating {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 18px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.cr-google-rating:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.cr-rating-icon {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cr-rating-icon svg {
  width: 100%;
  height: 100%;
}

.cr-rating-content {
  display: flex;
  flex-direction: column;
}

.cr-rating-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2px;
  line-height: 1;
}

.cr-rating-stars-wrap {
  display: flex;
  /* align-items: center; */
  gap: 8px;
  margin-bottom: 2px;
}

.cr-rating-num {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.cr-stars-row {
  color: #fab758;
  font-size: 0.8rem;
  display: flex;
  gap: 1px;
}

.cr-rating-count {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1;
}

/* Hero Trust & Review */
.hero-trust-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-avatars {
  display: flex;
}

.hero-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  margin-left: -12px;
}

.hero-avatars img:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.trust-text strong {
  color: #fff;
}
/* Responsiveness for app buttons */
@media (max-width: 575px) {
  .cr-app-btn {
    width: 100%;
    justify-content: center;
  }
}
/* Mockups */
.hero-mockup-wrapper {
  position: relative;
  z-index: 1;
}

.hero-mockup {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--cr-radius-lg);
  backdrop-filter: blur(12px);
  padding: 16px;
  box-shadow: var(--cr-shadow-lg);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.mockup-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-body {
  background: linear-gradient(155deg, #1a2040 0%, #0e1326 100%);
  border-radius: 10px;
  padding: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.mockup-body img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

/* Sections */
.cr-section {
  padding: 35px 0;
}

.cr-section-alt {
  background: var(--cr-light-bg);
  position: relative;
}

.cr-section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(58, 50, 133, 0.03) 2px, transparent 2px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Product Preview Section */
.cr-preview {
  background: #3a3285;
  position: relative;
  overflow: hidden;
}

.cr-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 32px 32px;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cr-preview .preview-screen-wrapper {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--cr-radius-lg);
  padding: 12px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  transition: var(--cr-transition);
}

.cr-preview .preview-screen {
  border-radius: 10px;
  overflow: hidden;
  background: #1a1f3a;
  min-height: 280px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cr-preview .preview-screen .ps-header {
  background: #0f1220;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cr-preview .preview-screen .ps-header .ps-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.cr-preview .preview-sidebar {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 12px;
  height: 100%;
}

.cr-section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(58, 50, 133, 0.05);
  color: var(--cr-primary);
  border: 1px solid rgba(58, 50, 133, 0.1);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cr-section-dark .cr-section-label {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.cr-section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--cr-text-dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.cr-section-dark .cr-section-title {
  color: #fff;
}

.cr-section-subtitle {
  color: var(--cr-text-body);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Features Cards */
.cr-feat-card {
  background: #fff;
  border: 1px solid rgba(58, 50, 133, 0.08);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(58, 50, 133, 0.04);
}

.cr-feat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(58, 50, 133, 0.08);
  border-color: rgba(58, 50, 133, 0.2);
}

.cr-feat-icon {
  width: 48px;
  height: 48px;
  background: rgba(58, 50, 133, 0.08);
  color: #3a3285;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.cr-feat-card:hover .cr-feat-icon {
  background: #3a3285;
  color: #fff;
}

.cr-feat-card:hover .cr-feat-icon {
  background: linear-gradient(135deg, var(--cr-primary), #5a52c0);
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
}

.cr-feat-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1e2228;
  margin-bottom: 12px;
}

.cr-feat-desc {
  font-size: 0.85rem;
  color: #60697b;
  line-height: 1.6;
  margin: 0;
}

/* How It Works Steps */
.cr-step-card {
  background: #fff;
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-lg);
  padding: 35px 25px 30px;
  text-align: center;
  position: relative;
  height: 100%;
  box-shadow: var(--cr-shadow-sm);
  transition: var(--cr-transition);
  z-index: 1;
  margin-top: 20px;
}

.cr-step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--cr-shadow-md);
  border-color: rgba(58, 50, 133, 0.22);
}

.cr-step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--cr-primary), #5a52c0);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(58, 50, 133, 0.35);
  z-index: 2;
}

.cr-step-icon {
  font-size: 2.5rem;
  color: var(--cr-primary);
  display: block;
  margin-bottom: 20px;
  transition: var(--cr-transition);
}

.cr-step-card:hover .cr-step-icon {
  transform: scale(1.1);
}

.cr-step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cr-text-dark);
  margin-bottom: 12px;
}

.cr-step-desc {
  font-size: 0.85rem;
  color: var(--cr-text-body);
  line-height: 1.7;
  margin-bottom: 0;
}

.cr-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  color: rgba(58, 50, 133, 0.28);
  font-size: 1.4rem;
}

/* Important Info Alert Card */
.cr-info-card {
  background: linear-gradient(135deg, #fff, var(--cr-light-bg2));
  border-left: 4px solid var(--cr-accent);
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: var(--cr-shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.cr-info-icon {
  font-size: 2rem;
  color: var(--cr-accent);
}

.cr-info-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--cr-text-dark);
  line-height: 1.6;
  font-weight: 600;
}

.cr-info-card ul {
  margin-top: 15px;
  margin-bottom: 0;
  padding-left: 20px;
}

.cr-info-card li {
  font-size: 0.85rem;
  color: var(--cr-text-body);
  margin-bottom: 8px;
}

/* Benefits List */
.cr-benefits .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  box-shadow: 0 4px 16px rgba(58, 50, 133, 0.05);
  margin-bottom: 16px;
  transition: var(--cr-transition);
}

.cr-benefits .benefit-item:hover {
  transform: translateX(4px);
  box-shadow: var(--cr-shadow-md);
  border-color: rgba(58, 50, 133, 0.25);
}

.cr-benefits .benefit-icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(58, 50, 133, 0.1), rgba(5, 183, 183, 0.08));
  color: var(--cr-primary);
}

.cr-benefits .benefit-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cr-text-dark);
  margin-bottom: 6px;
}

.cr-benefits .benefit-desc {
  font-size: 0.82rem;
  color: var(--cr-text-body);
  line-height: 1.65;
  margin-bottom: 0;
}

.cr-benefits-visual {
  background: linear-gradient(135deg, var(--cr-light-bg) 0%, var(--cr-light-bg2) 100%);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-lg);
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Privacy Controls Card */
.cr-privacy-card {
  background: #fff;
  border-radius: var(--cr-radius);
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid var(--cr-border);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--cr-transition);
}

.cr-privacy-card:hover {
  border-color: var(--cr-green);
  box-shadow: var(--cr-shadow-sm);
  transform: translateX(5px);
}

.cr-privacy-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(69, 196, 160, 0.1);
  color: var(--cr-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.cr-privacy-card h5 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  font-weight: 700;
}

.cr-privacy-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--cr-text-body);
}

/* FAQ Accordion */
.cr-faq .faq-item {
  background: #fff;
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(58, 50, 133, 0.05);
  transition: var(--cr-transition);
}
.cr-faq .faq-item:hover {
  border-color: rgba(58, 50, 133, 0.22);
  box-shadow: var(--cr-shadow-md);
}
.cr-faq .faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cr-text-dark);
  transition: var(--cr-transition);
}
.cr-faq .faq-btn:hover {
  color: var(--cr-primary);
}
.cr-faq .faq-chevron {
  width: 28px; min-width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(58, 50, 133, 0.05);
  color: var(--cr-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: var(--cr-transition);
}
.cr-faq .faq-btn[aria-expanded="true"] .faq-chevron {
  background: var(--cr-primary);
  color: #fff;
  transform: rotate(180deg);
}
.cr-faq .faq-btn[aria-expanded="true"] {
  color: var(--cr-primary);
}
.cr-faq .faq-body {
  padding: 0 24px 22px;
  font-size: 0.84rem;
  color: var(--cr-text-body);
  line-height: 1.75;
}

/* Call Recording Player UI */
.cr-player-ui {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.cr-player-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cr-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.cr-player-timeline {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  position: relative;
}

.cr-player-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 45%;
  background: var(--cr-green);
  border-radius: 2px;
}

.cr-player-time {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Sync Pulse */
.sync-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cr-green);
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(69, 196, 160, 0.1);
  padding: 5px 12px;
  border-radius: 50px;
}

.sync-pulse .dot {
  width: 6px;
  height: 6px;
  background: var(--cr-green);
  border-radius: 50%;
  animation: cr-pulse 1.5s infinite;
}

/* Problem Solution */
.cr-problem-solution {
  background: #ffffff;
}

.cr-ps-card {
  background: #fff;
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 30px 26px;
  height: 100%;
  box-shadow: var(--cr-shadow-sm);
  transition: var(--cr-transition);
  position: relative;
  overflow: hidden;
}

.cr-ps-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--cr-radius) var(--cr-radius) 0 0;
}

.cr-ps-card.problem::before {
  background: linear-gradient(90deg, #e2626b, #f78b77);
}

.cr-ps-card.solution::before {
  background: linear-gradient(90deg, #3a3285, #05b7b7);
}

.cr-ps-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--cr-shadow-md);
}

.cr-ps-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--cr-text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cr-ps-card-title .icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cr-ps-card-title .icon-wrap.red {
  background: rgba(226, 98, 107, 0.1);
  color: #e2626b;
}

.cr-ps-card-title .icon-wrap.green {
  background: rgba(69, 196, 160, 0.1);
  color: #45c4a0;
}

.cr-ps-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.cr-ps-item:last-child {
  border-bottom: none;
}

.cr-ps-bullet {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.cr-ps-bullet.red {
  background: rgba(226, 98, 107, 0.12);
  color: #e2626b;
}

.cr-ps-bullet.green {
  background: rgba(69, 196, 160, 0.12);
  color: #45c4a0;
}

.cr-ps-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cr-text-dark);
  margin-bottom: 2px;
}

.cr-ps-item-desc {
  font-size: 0.8rem;
  color: var(--cr-text-body);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   Youtube REELS
   ============================================================ */
.cr-youtube-reviews {
  background-color: #f8f9fa;
  overflow: hidden;
}

.reel-swiper {
  padding: 40px 0 60px;
}
.swiper-pagination-bullet-active {
  background: #2a2465 !important;
}
.reel-card {
  width: 100%;
  max-width: 260px;
  height: 460px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  cursor: pointer;
  margin: 0 auto;
}

.reel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(58, 50, 133, 0.15);
}

.reel-video-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: #000;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
@keyframes cr-tm-scroll-ltr {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.cr-tm-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}

.cr-tm-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

/* Single row — right to left (clockwise) */
.cr-tm-scroll-ltr {
  animation: cr-tm-scroll-ltr 38s linear infinite;
}
/* ---- Pause on hover ---- */
.cr-tm-wrap:hover .cr-tm-track {
  animation-play-state: paused;
}

.cr-tm-card {
  flex-shrink: 0;
  width: 340px;
  /* perfectly fit approx 30 words / 200 characters */
  min-height: 326px;
  background: var(--cr-white);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-lg);
  padding: 28px 26px 11px;
  box-shadow: var(--cr-shadow-sm);
  transition: var(--cr-transition);
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  cursor: default;
}

/* Bottom gradient bar (primary) — revealed on hover */
.cr-tm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cr-primary) 0%, var(--cr-primary-light) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--cr-radius-lg) var(--cr-radius-lg) 0 0;
}

/* Hover state */
.cr-tm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--cr-shadow-lg);
  border-color: rgba(58, 50, 133, 0.2);
}

.cr-tm-card:hover::before {
  opacity: 1;
}
.cr-tm-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* margin-bottom: 12px; */
}

.cr-tm-quote {
  font-size: 2.8rem;
  line-height: 0.5;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 900;
  color: var(--cr-primary);
  opacity: 0.15;
  margin-top: -8px;
  user-select: none;
  pointer-events: none;
}

/* ---- Review text ---- */
.cr-tm-text {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--cr-text-body);
  font-style: italic;
  flex: 1;
  margin: 0 0 0 0;
  /* Clamp at 5 lines for approx 200 characters */
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

/* ---- Star Rating ---- */
.cr-tm-stars {
  color: #fab758;
  font-size: 0.8rem;
  margin-bottom: 12px;
  display: flex;
  gap: 3px;
}
/* ---- Author row ---- */
.cr-tm-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 7px;
  border-top: 1px solid var(--cr-border);
  margin-top: auto;
}

/* ---- Avatar ---- */
.cr-tm-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--cr-border);
  box-shadow: 0 2px 8px rgba(58, 50, 133, 0.1);
  flex-shrink: 0;
}

.cr-tm-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Name & designation ---- */
.cr-tm-meta {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cr-tm-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--cr-text-dark);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cr-tm-role {
  font-size: 0.72rem;
  color: var(--cr-text-body);
  margin-top: 2px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
  .cr-tm-card {
    width: 300px;
    min-height: 320px; /* Consistent height across breakpoints */
    padding: 24px 22px 20px;
  }

  .cr-tm-scroll-ltr { animation-duration: 32s; }
}

@media (max-width: 575px) {
  .cr-tm-section {
    padding: 50px 0 40px;
  }

  .cr-tm-card {
    width: 260px;
    min-height: 320px; /* Standardizing for mobile as well */
    padding: 20px 18px 22px;
  }

  .cr-tm-text {
    font-size: 0.82rem;
    -webkit-line-clamp: 4;
  }

  .cr-tm-track {
    gap: 16px;
  }

  .cr-tm-scroll-ltr { animation-duration: 25s; }
}
 
@media (max-width: 375px) {
  .cr-testimonials .trust-bar{
    padding-top: 25px;
    margin-top: 25px;
  }
}
.cr-testimonials .trust-bar {
  border-top: 1px solid var(--cr-border);
  padding-top: 56px;
  margin-top: 56px;
  text-align: center;
}

.cr-testimonials .trust-bar .trust-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cr-text-body);
  margin-bottom: 24px;
}

.cr-testimonials .trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.cr-testimonials .trust-badge {
  background: #fff;
  border: 1px solid var(--cr-border);
  border-radius: 10px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cr-text-dark);
  box-shadow: var(--cr-shadow-sm);
  transition: var(--cr-transition);
}

.cr-testimonials .trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--cr-shadow-md);
}

.cr-testimonials .trust-badge i {
  font-size: 1.2rem;
  color: var(--cr-primary);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cr-cta-banner {
  background: linear-gradient(135deg, #2a2465 0%, #3a3285 50%, #5330a8 100%);
  position: relative;
  overflow: hidden;
}

.cr-cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 183, 183, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cr-cta-banner .cta-title {
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.cr-cta-banner .cta-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.cr-btn-primary {
  background: #fff;
  color: var(--cr-primary);
  border: none;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.87rem;
  transition: var(--cr-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  text-decoration: none;
}
.cr-btn-primary:hover {
  background: var(--cr-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 12, 128, 0.32);
}
.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--pm-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  color: #fff;
}

/* ============================================================
   INFO BLOCKS (Important Information)
   ============================================================ */
.cr-info-block {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.cr-info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(58, 50, 133, 0.1);
  border-color: rgba(58, 50, 133, 0.2);
}
.cr-info-block-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(69, 196, 160, 0.1);
  color: var(--cr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.cr-info-block-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #343f52;
  margin-bottom: 15px;
}
.cr-info-block-desc {
  font-size: 0.85rem;
  color: #60697b;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   PRIVACY CARD
   ============================================================ */
.cr-privacy-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.cr-privacy-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(58, 50, 133, 0.08);
  border-color: rgba(58, 50, 133, 0.15);
}
.cr-privacy-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(58, 50, 133, 0.08);
  color: #3a3285;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}
.cr-privacy-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #343f52;
  margin-bottom: 5px;
}
.cr-privacy-card p {
  font-size: 0.85rem;
  color: #60697b;
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   PERMISSIONS CARD
   ============================================================ */
.cr-permissions-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e2e5f1;
}
.cr-permissions-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #343f52;
  margin-bottom: 10px;
}
.cr-permissions-subtitle {
  font-size: 0.85rem;
  color: #60697b;
  margin-bottom: 30px;
}
.cr-perm-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.cr-perm-item:last-child {
  margin-bottom: 0;
}
.cr-perm-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(58, 50, 133, 0.08);
  color: #3a3285;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.cr-perm-body {
  flex: 1;
}
.cr-perm-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #343f52;
  margin-bottom: 4px;
}
.cr-perm-desc {
  font-size: 0.8rem;
  color: #60697b;
  line-height: 1.4;
}
.cr-perm-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cr-perm-required {
  background: rgba(226, 98, 107, 0.1);
  color: #e2626b;
}
.cr-perm-recommended {
  background: rgba(250, 183, 88, 0.15);
  color: #d9911e;
}

/* ============================================================
   STATS BOX (Business Value)
   ============================================================ */
.cr-benefits-visual {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #e2e5f1;
}
.cr-stat-box {
  background: #fff;
  border: 1px solid #e2e5f1;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.cr-stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.cr-stat-num {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 5px;
  line-height: 1;
}
.cr-stat-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  color: #60697b;
}
.cr-stat-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
}