/* Hero Section Background */
/* ========================================
   HERO WRAPPER
   ======================================== */
#hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  padding: clamp(48px, 8vw, 80px) 0;
  overflow: hidden;
  z-index: 1;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 20px);
  width: 100%;
  position: relative;
  z-index: 10;
}

/* ========================================
   HERO GRID
   ======================================== */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

/* Medium */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Tablet/Mobile: single column with media below text */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-text { order: 1; text-align: left; }
  .hero-image { order: 2; }
}

/* Very small */
@media (max-width: 480px) {
  .hero-content { gap: 16px; }
}

/* ========================================
   TEXT BLOCK
   ======================================== */
.hero-text {
  color: #1e293b;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.1);
  color: #128c7e;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(37, 211, 102, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: fit-content;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1e293b 0%, #25d366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0.1em 0;
}

.highlight { font-weight: 800; }

.hero-description {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.6;
  color: #374151;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

/* CTAs */
.hero-cta {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
}

.btn-primary {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.35);
}

.btn-secondary {
  background: white;
  color: #64748b;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 1.625rem;
}
.btn-secondary:hover {
  border-color: #25d366;
  color: #25d366;
  transform: translateY(-2px);
}

/* ========================================
   HERO IMAGE WITH FLOATING ANIMATION
   ======================================== */
.hero-image {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-image img {
  max-width: min(560px, 100%);
  width: 100%;
  height: auto;
  border-radius: 0;           /* per preference: no shadow or border */
  display: block;
  animation: floatY 6s ease-in-out infinite;
  will-change: transform;
}

/* Subtle up–down float with tiny rotation variance */
@keyframes floatY {
  0%   { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(-6px) rotate(.2deg); }
  50%  { transform: translateY(0) rotate(0deg); }
  75%  { transform: translateY(6px) rotate(-.2deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Reduced motion: disable animation */
@media (prefers-reduced-motion: reduce) {
  .hero-image img { animation: none; }
}

/* Optional decorative soft glows behind the image without shadow on the image itself */
.hero-image::before,
.hero-image::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  z-index: -1;
  opacity: .35;
}
.hero-image::before {
  width: 50%; height: 50%;
  background: radial-gradient(closest-side, rgba(37,211,102,.35), transparent 70%);
  top: 10%; left: 5%;
}
.hero-image::after {
  width: 45%; height: 45%;
  background: radial-gradient(closest-side, rgba(102,126,234,.25), transparent 70%);
  bottom: 5%; right: 0;
}




/* Industry Challenges Container */
#industry-challenges-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Industry Challenges Section */
#industry-challenges {
    background: white;
    border-radius: 24px;
    padding: 80px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

/* #industry-challenges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #25d366, #128c7e);
} */

/* Section Header */
#challenges-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

#challenges-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.1);
    color: #128c7e;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 211, 102, 0.2);
    backdrop-filter: blur(10px);
}

#challenges-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e293b 0%, #25d366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#challenges-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Challenges Grid */
#challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

#challenges-grid .challenge-card {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

#challenges-grid .challenge-card:nth-child(1) {
    animation-delay: 0.2s;
}

#challenges-grid .challenge-card:nth-child(2) {
    animation-delay: 0.4s;
}

#challenges-grid .challenge-card:nth-child(3) {
    animation-delay: 0.6s;
}

#challenges-grid .challenge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
}

#challenges-grid .challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, rgba(18, 140, 126, 0.05) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#challenges-grid .challenge-card:hover::before {
    opacity: 1;
}

/* Challenge Icon */
#challenges-grid .challenge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

#challenges-grid .challenge-card:hover .challenge-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.35);
}

/* Challenge Content */
#challenges-grid .challenge-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

#challenges-grid .challenge-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Floating animation for icons */
#challenges-grid .challenge-icon {
    animation: float 6s ease-in-out infinite;
}

#challenges-grid .challenge-card:nth-child(1) .challenge-icon {
    animation-delay: 0s;
}

#challenges-grid .challenge-card:nth-child(2) .challenge-icon {
    animation-delay: 2s;
}

#challenges-grid .challenge-card:nth-child(3) .challenge-icon {
    animation-delay: 4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    #industry-challenges {
        padding: 60px 30px;
        border-radius: 16px;
    }

    #challenges-title {
        font-size: 2rem;
    }

    #challenges-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    #challenges-grid .challenge-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    #industry-challenges-container {
        padding: 0 15px;
    }

    #industry-challenges {
        padding: 40px 20px;
    }

    #challenges-title {
        font-size: 1.75rem;
    }

    #challenges-subtitle {
        font-size: 1rem;
    }
}

/* Background Pattern */
#industry-challenges::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle at 2px 2px, rgba(37, 211, 102, 0.05) 1px, transparent 0);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}


/* 3section chatbot solution  */
/* DropHello Solutions Container */
#solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* DropHello Solutions Section */
#drophello-solutions {
    background: white;
    border-radius: 24px;
    padding: 80px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

/* #drophello-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #25d366, #128c7e);
} */

/* Solutions Content Grid */
#solutions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
}

/* Left Column - Text Content */
#solutions-text {
    position: relative;
    z-index: 10;
}

#solutions-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.1);
    color: #128c7e;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 211, 102, 0.2);
    backdrop-filter: blur(10px);
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

#solutions-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1e293b 0%, #25d366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

#solutions-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 2.5rem;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

/* Solutions List */
#solutions-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

#solutions-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease-out forwards;
}

#solutions-list li:nth-child(1) {
    animation-delay: 0.8s;
}

#solutions-list li:nth-child(2) {
    animation-delay: 1.0s;
}

#solutions-list li:nth-child(3) {
    animation-delay: 1.2s;
}

#solutions-list li:hover {
    background: rgba(37, 211, 102, 0.03);
    border-radius: 12px;
    padding: 16px 20px;
    border-bottom-color: rgba(37, 211, 102, 0.2);
}

#solutions-list li:last-child {
    border-bottom: none;
}

/* Checkmark Icons */
#solutions-list .check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

#solutions-list li:hover .check-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Solution Text */
#solutions-list .solution-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    font-weight: 500;
}

#solutions-list .solution-text strong {
    color: #1e293b;
    font-weight: 600;
}

/* CTA Button */
#solutions-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
    animation: slideInLeft 0.8s ease-out 1.4s both;
}

#solutions-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.35);
}

/* Right Column - Image */
#solutions-image {
    position: relative;
    animation: slideInRight 0.8s ease-out 0.4s both;
}

#solutions-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

#solutions-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

#solutions-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Image Overlay Effects */
#solutions-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(18, 140, 126, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

#solutions-image-container:hover::before {
    opacity: 1;
}

/* Floating Elements */
#solutions-floating-element-1,
#solutions-floating-element-2,
#solutions-floating-element-3 {
    position: absolute;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.2);
    animation: float 6s ease-in-out infinite;
}

#solutions-floating-element-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    right: -15px;
    animation-delay: 0s;
}

#solutions-floating-element-2 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: -20px;
    animation-delay: 2s;
}

#solutions-floating-element-3 {
    width: 30px;
    height: 30px;
    top: 60%;
    right: -10px;
    animation-delay: 4s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    #solutions-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    #solutions-image {
        order: -1;
    }

    #solutions-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    #drophello-solutions {
        padding: 60px 30px;
        border-radius: 16px;
    }

    #solutions-content {
        gap: 40px;
    }

    #solutions-title {
        font-size: 2rem;
    }

    #solutions-list li {
        padding: 12px 0;
    }

    #solutions-list li:hover {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    #solutions-container {
        padding: 0 15px;
    }

    #drophello-solutions {
        padding: 40px 20px;
    }

    #solutions-title {
        font-size: 1.75rem;
    }

    #solutions-subtitle {
        font-size: 1rem;
    }

    #solutions-list .solution-text {
        font-size: 0.9rem;
    }
}

/* Background Pattern */
#drophello-solutions::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle at 2px 2px, rgba(37, 211, 102, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    animation: float 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}


/* end of solution section  */


/* start of key benefits  */

/* Key Benefits Container */
#benefits-dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Key Benefits Dashboard Section */
#key-benefits-dashboard {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: 0 25px 80px rgba(30, 41, 59, 0.3);
}

/* Animated Background Pattern */
#key-benefits-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(37, 211, 102, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(18, 140, 126, 0.08) 0%, transparent 25%);
    animation: backgroundShift 20s ease-in-out infinite;
}

/* Dashboard Header */
#dashboard-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

#dashboard-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 211, 102, 0.3);
    backdrop-filter: blur(20px);
    animation: slideDown 0.8s ease-out;
}

#dashboard-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

#dashboard-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Stats Dashboard Grid */
#stats-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

/* Individual Stat Dashboard Cards */
#stats-dashboard-grid .stat-dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s ease-out forwards;
}

#stats-dashboard-grid .stat-dashboard-card:nth-child(1) {
    animation-delay: 0.6s;
}

#stats-dashboard-grid .stat-dashboard-card:nth-child(2) {
    animation-delay: 0.8s;
}

#stats-dashboard-grid .stat-dashboard-card:nth-child(3) {
    animation-delay: 1.0s;
}

#stats-dashboard-grid .stat-dashboard-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.2);
}

/* Stat Header with Icon */
#stats-dashboard-grid .stat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

#stats-dashboard-grid .stat-emoji {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: bounce 2s ease-in-out infinite;
}

#stats-dashboard-grid .stat-dashboard-card:nth-child(1) .stat-emoji {
    animation-delay: 0s;
}

#stats-dashboard-grid .stat-dashboard-card:nth-child(2) .stat-emoji {
    animation-delay: 0.7s;
}

#stats-dashboard-grid .stat-dashboard-card:nth-child(3) .stat-emoji {
    animation-delay: 1.4s;
}

#stats-dashboard-grid .stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Large Stat Numbers */
#stats-dashboard-grid .stat-main-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #25d366 0%, #34d399 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 15px;
    display: block;
    animation: glow 3s ease-in-out infinite alternate;
}

/* Stat Description */
#stats-dashboard-grid .stat-main-description {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    line-height: 1.4;
}

#stats-dashboard-grid .stat-sub-description {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.5;
}

/* Progress Indicators */
#stats-dashboard-grid .progress-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

#stats-dashboard-grid .progress-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, #25d366, transparent);
    animation: shimmer 3s ease-in-out infinite;
}

/* Chart-like Visual Elements */
#stats-dashboard-grid .mini-chart {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 40px;
    opacity: 0.3;
}

#stats-dashboard-grid .chart-bar {
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, #25d366, #128c7e);
    border-radius: 2px;
    animation: chartGrow 2s ease-out forwards;
}

#stats-dashboard-grid .chart-bar:nth-child(1) {
    left: 0;
    width: 8px;
    animation-delay: 1.5s;
    --target-height: 60%;
}

#stats-dashboard-grid .chart-bar:nth-child(2) {
    left: 12px;
    width: 8px;
    animation-delay: 1.7s;
    --target-height: 80%;
}

#stats-dashboard-grid .chart-bar:nth-child(3) {
    left: 24px;
    width: 8px;
    animation-delay: 1.9s;
    --target-height: 95%;
}

#stats-dashboard-grid .chart-bar:nth-child(4) {
    left: 36px;
    width: 8px;
    animation-delay: 2.1s;
    --target-height: 75%;
}

#stats-dashboard-grid .chart-bar:nth-child(5) {
    left: 48px;
    width: 8px;
    animation-delay: 2.3s;
    --target-height: 100%;
}

/* Floating Particles */
#stats-dashboard-grid .floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #25d366;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 8s ease-in-out infinite;
}

#stats-dashboard-grid .floating-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

#stats-dashboard-grid .floating-particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

#stats-dashboard-grid .floating-particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
    }

    to {
        text-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes chartGrow {
    from {
        height: 0;
    }

    to {
        height: var(--target-height);
    }
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }

    33% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }

    66% {
        transform: translateY(-10px) translateX(-5px);
        opacity: 0.8;
    }
}

@keyframes backgroundShift {

    0%,
    100% {
        transform: translateX(0px) translateY(0px);
    }

    50% {
        transform: translateX(20px) translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    #stats-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    #dashboard-title {
        font-size: 2.5rem;
    }

    #stats-dashboard-grid .stat-main-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    #key-benefits-dashboard {
        padding: 40px 30px;
        border-radius: 16px;
    }

    #dashboard-title {
        font-size: 2.2rem;
    }

    #stats-dashboard-grid .stat-main-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    #benefits-dashboard-container {
        padding: 0 15px;
    }

    #key-benefits-dashboard {
        padding: 30px 20px;
    }

    #dashboard-title {
        font-size: 1.8rem;
    }

    #dashboard-subtitle {
        font-size: 1rem;
    }

    #stats-dashboard-grid .stat-main-number {
        font-size: 2.5rem;
    }
}

/* end of key benefits  */


/* case study start  */
/* Case Study Container */
#case-study-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Case Study Section */
#case-study-section {
    background: white;
    border-radius: 32px;
    padding: 80px 60px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    margin: 40px 0;
    border: 1px solid rgba(226, 232, 240, 0.3);
}

/* Decorative Top Border - Now Green */
/* #case-study-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(135deg, #1fc331 0%, #134820 100%);
        } */

/* Background Pattern - Now Green */
#case-study-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle at 2px 2px, rgba(31, 195, 49, 0.02) 1px, transparent 0);
    background-size: 60px 60px;
    animation: float 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Section Header */
#case-study-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

/* Badge - Now Green */
#case-study-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(31, 195, 49, 0.08);
    color: #134820;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(31, 195, 49, 0.15);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Title - Now Green Gradient */
#case-study-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1e293b 0%, #1fc331 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

#case-study-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Case Study Card */
#case-study-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out 0.8s both;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Card Decorative Elements - Now Green */
#case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #1fc331, #134820);
    border-radius: 24px 24px 0 0;
}

/* Company Info */
#company-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease-out 1.0s both;
}

/* Avatar - Now Green */
#company-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1fc331, #134820);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 8px 24px rgba(31, 195, 49, 0.3);
}

#company-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

#company-details p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Case Study Content Grid */
#case-study-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* Problem, Solution, Result Sections */
.case-section {
    text-align: center;
    position: relative;
    animation: slideInUp 0.6s ease-out forwards;
}

.case-section:nth-child(1) {
    animation-delay: 1.2s;
}

.case-section:nth-child(2) {
    animation-delay: 1.4s;
}

.case-section:nth-child(3) {
    animation-delay: 1.6s;
}

.case-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.problem-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.solution-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.result-icon {
    background: linear-gradient(135deg, #1fc331, #134820);
}

.case-section:hover .case-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.case-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.case-section p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.case-section .highlight {
    color: #134820;
    font-weight: 700;
}

/* Result Highlight - Now Green */
#result-highlight {
    background: linear-gradient(135deg, #1fc331, #134820);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 20px 40px rgba(31, 195, 49, 0.2);
    animation: pulse 2s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

#result-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

#result-highlight .result-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 8px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#result-highlight .result-text {
    font-size: 1.125rem;
    font-weight: 600;
    opacity: 0.95;
}

/* CTA Section */
#case-study-cta {
    text-align: center;
    animation: fadeInUp 0.8s ease-out 1.8s both;
}

/* CTA Button - Now Green */
#case-study-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #1fc331, #134820);
    color: white;
    box-shadow: 0 12px 40px rgba(31, 195, 49, 0.3);
    position: relative;
    overflow: hidden;
}

#case-study-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#case-study-button:hover::before {
    left: 100%;
}

#case-study-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(31, 195, 49, 0.4);
}

#case-study-button i {
    transition: transform 0.3s ease;
}

#case-study-button:hover i {
    transform: translateX(4px);
}

/* Floating Elements - Now Green */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(31, 195, 49, 0.1), rgba(19, 72, 32, 0.1));
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.floating-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.floating-2 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 8%;
    animation-delay: 3s;
}

.floating-3 {
    width: 40px;
    height: 40px;
    top: 40%;
    right: 15%;
    animation-delay: 6s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }
}

@keyframes pulse {
    from {
        box-shadow: 0 20px 40px rgba(31, 195, 49, 0.2);
    }

    to {
        box-shadow: 0 25px 50px rgba(31, 195, 49, 0.3);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    #case-study-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #case-study-title {
        font-size: 2.25rem;
    }

    #case-study-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    #case-study-section {
        padding: 60px 30px;
        border-radius: 20px;
    }

    #case-study-title {
        font-size: 2rem;
    }

    #company-info {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .case-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    #result-highlight .result-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    #case-study-container {
        padding: 0 15px;
    }

    #case-study-section {
        padding: 40px 20px;
    }

    #case-study-title {
        font-size: 1.75rem;
    }

    #case-study-card {
        padding: 30px 20px;
    }

    .case-section p {
        font-size: 0.9rem;
    }
}

/* case study end */


/* final cta banner start  */
/* Final CTA Banner */
#final-cta-banner {
    width: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    margin: 0;
}

/* Animated Background Pattern - Light Theme */
#final-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(37, 211, 102, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(245, 158, 11, 0.03) 50%, transparent 100%);
    animation: backgroundShift 15s ease-in-out infinite;
}

/* Geometric Shapes - Light Pattern */
#final-cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(148, 163, 184, 0.06) 1px, transparent 0);
    background-size: 80px 80px;
    animation: float 25s ease-in-out infinite;
    pointer-events: none;
}

/* Container */
#cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Content Wrapper */
#cta-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* Main Headline - Dark Text for Light Background */
#cta-headline {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(135deg, #1e293b 0%, #25d366 50%, #134820 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Subheadline - Dark Text */
#cta-subheadline {
    font-size: 1.375rem;
    color: #64748b;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

/* CTA Buttons Container */
#cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

/* Base Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.125rem 2.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Primary Button (Start Free Trial) - Green */
.cta-primary {
    background: linear-gradient(135deg, #25d366 0%, #134820 100%);
    color: white;
   
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(37, 211, 102, 0.3);
}

/* Secondary Button (Book a Demo) - Light with Border */
.cta-secondary {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(19, 72, 32, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.cta-secondary:hover::before {
    opacity: 1;
}

.cta-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: #25d366;
    color: #134820;
    box-shadow: 0 16px 48px rgba(37, 211, 102, 0.15);
}

/* Button Icons */
.cta-button i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.cta-button:hover i {
    transform: translateX(4px);
}

.cta-secondary:hover i {
    transform: scale(1.1);
}

/* Floating Elements - Light Theme */
.floating-cta {
    position: absolute;
    border-radius: 50%;
    animation: floatCTA 8s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.4;
}

.floating-cta-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-cta-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.floating-cta-3 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    bottom: 30%;
    left: 8%;
    animation-delay: 6s;
}

.floating-cta-4 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    top: 15%;
    right: 8%;
    animation-delay: 2s;
}

/* Trust Indicators - Dark Text for Light Background */
#trust-indicators {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: #25d366;
    font-size: 1.1rem;
}

/* Pulse Animation for Primary Button */
.cta-primary {
    animation: pulse 3s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes floatCTA {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

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

@keyframes backgroundShift {
    0%, 100% {
        transform: translateX(0px) translateY(0px);
    }
    25% {
        transform: translateX(20px) translateY(-10px);
    }
    50% {
        transform: translateX(-10px) translateY(15px);
    }
    75% {
        transform: translateX(15px) translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 40px rgba(37, 211, 102, 0.2);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    #final-cta-banner {
        padding: 80px 0;
    }
    #cta-headline {
        font-size: 2.75rem;
    }
    #cta-subheadline {
        font-size: 1.25rem;
        margin-bottom: 40px;
    }
    #cta-buttons {
        gap: 20px;
    }
    #trust-indicators {
        margin-top: 50px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    #final-cta-banner {
        padding: 60px 0;
    }
    #cta-container {
        padding: 0 30px;
    }
    #cta-headline {
        font-size: 2.25rem;
    }
    #cta-subheadline {
        font-size: 1.125rem;
    }
    #cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
    #trust-indicators {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    #cta-container {
        padding: 0 20px;
    }
    #cta-headline {
        font-size: 2rem;
    }
    #cta-subheadline {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .cta-button {
        padding: 1rem 1.75rem;
        font-size: 0.95rem;
    }
}


/* final cta banner end */