/* Expertise Section Styles */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.expertise-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  
  opacity: 0;
  transition: opacity 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
  background: #2e98c7;
  
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.15);
  
}

.expertise-card:hover .expertise-description {
  
  color: #fff;
}
.expertise-card:hover::before {
  opacity: 1;
}

/* Expertise Icon */
.expertise-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  margin: 0 auto 1.5rem auto;
  position: relative;
  transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
  background: #ffffff;
  transform: scale(1.1);
  color: #000;
}

/* Expertise Content */
.expertise-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.expertise-description {
  color: #cccccc;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Expertise Footer */
.expertise-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-footer p {
  color: #aaaaaa;
  font-size: 1rem;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .expertise-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .expertise-card {
    padding: 2rem 1.5rem;
  }
  
  .expertise-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .expertise-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .expertise-card {
    padding: 1.8rem 1.2rem;
  }
  
  .expertise-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .expertise-title {
    font-size: 1.1rem;
  }
  
  .expertise-description {
    font-size: 0.9rem;
  }
}

/* Marketing Features Layout */
.marketing-features-layout {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  margin-top: 5rem;
}

/* Left Side - Features List */
.features-list {
  flex: 1;
  max-width: 600px;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.feature-check {
  width: 24px;
  height: 24px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.feature-description {
  color: #cccccc;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0.5px;
}

/* Right Side - Dashboard Image */
.dashboard-image {
  flex: 1;
  max-width: 500px;
  position: sticky;
  top: 100px;
}

.main-dashboard-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(37, 211, 102, 0.2);
  transition: all 0.3s ease;
}

.main-dashboard-img:hover {
  transform: scale(1.02);
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 25px 50px rgba(37, 211, 102, 0.1);
}

.features-container-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .marketing-features-layout {
    flex-direction: column;
    gap: 3rem;
  }
  
  .features-list {
    max-width: 100%;
  }
  
  .dashboard-image {
    position: static;
    max-width: 100%;
    order: -1;
  }
  
  .feature-item {
    margin-bottom: 2rem;
  }
  
  .feature-title {
    font-size: 1.1rem;
  }
  
  .feature-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .feature-item {
    gap: 0.8rem;
    margin-bottom: 1.8rem;
  }
  
  .feature-check {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }
  
  .feature-title {
    font-size: 1rem;
  }
  
  .feature-description {
    font-size: 0.85rem;
  }
}

/* Process Timeline - Horizontal Layout */
.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4rem;
  position: relative;
  padding: 0.5rem 0;
  max-width: 100%;
}

/* Timeline Steps */
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 200px;
  position: relative;
}

/* Step Icon Wrapper and Icon */
.step-icon-wrapper {
  position: relative;
  margin-bottom: 1rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: 3px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  position: relative;
  z-index: 2;
}

/* Dotted Lines Between Steps */
.step-dotted-line {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    #25d366,
    #25d366 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 1;
}

/* Hide dotted line on last step */
.timeline-step:last-child .step-dotted-line {
  display: none;
}

/* Step Title */
.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Step Details */
.step-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.step-details p {
  color: #cccccc;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .process-timeline {
    gap: 1rem;
  }
  
  .timeline-step {
    max-width: 180px;
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }
  
  .step-dotted-line {
    top: 35px;
  }
}

@media (max-width: 768px) {
  .process-timeline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .timeline-step {
    flex: 0 1 calc(50% - 1rem);
    max-width: 250px;
  }
  
  .step-dotted-line {
    display: none;
  }
}

@media (max-width: 480px) {
  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .timeline-step {
    flex: none;
    max-width: 300px;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }
  
  .step-title {
    font-size: 1.1rem;
  }
  
  .step-details p {
    font-size: 0.8rem;
  }
}

/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Industry Cards */
.industry-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  background: #349bd7;
  border-color: rgba(37, 211, 102, 0.3);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.15);
}


.industry-card:hover::before {
  opacity: 1;
}
.industry-card:hover  {
  transform: translateY(-8px);
  background: #349bd7;
  border-color: rgba(37, 211, 102, 0.3);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.15);
}
/* Industry Icon */
.industry-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  background: #fff;
  transform: scale(1.05);
}

.industry-card:hover .industry-description {
  color: #fff;
  
}
.industry-icon i {
  font-size: 2rem;
  color: #fff;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon i {
  color: #000;
  transform: scale(1.1);
}

/* Industry Content */
.industry-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.industry-description {
  color: #cccccc;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .industry-card {
    padding: 2rem 1.5rem;
  }
  
  .industry-icon {
    width: 80px;
    height: 80px;
  }
  
  .industry-img {
    width: 50px;
    height: 50px;
  }
  
  .industry-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .industry-card {
    padding: 1.8rem 1.2rem;
  }
  
  .industry-icon {
    width: 70px;
    height: 70px;
  }
  
  .industry-img {
    width: 45px;
    height: 45px;
  }
  
  .industry-title {
    font-size: 1.1rem;
  }
  
  .industry-description {
    font-size: 0.9rem;
  }
}


 /* ==========================================================================
   COMPREHENSIVE ICON BACKGROUND COLOR VARIATIONS
   ========================================================================== */

/* PRIMARY COLORS */
.icon-green {
    background: linear-gradient(135deg, #25d366, #128c7e);
}
.icon-green::after {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.icon-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}
.icon-blue::after {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.icon-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.icon-purple::after {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.icon-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}
.icon-orange::after {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.icon-pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
}
.icon-pink::after {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.icon-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}
.icon-red::after {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.icon-cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}
.icon-cyan::after {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.icon-indigo {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}
.icon-indigo::after {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.icon-teal {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}
.icon-teal::after {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.icon-emerald {
    background: linear-gradient(135deg, #10b981, #059669);
}
.icon-emerald::after {
    background: linear-gradient(135deg, #10b981, #059669);
}

.icon-yellow {
    background: linear-gradient(135deg, #eab308, #ca8a04);
}
.icon-yellow::after {
    background: linear-gradient(135deg, #eab308, #ca8a04);
}

.icon-lime {
    background: linear-gradient(135deg, #84cc16, #65a30d);
}
.icon-lime::after {
    background: linear-gradient(135deg, #84cc16, #65a30d);
}

/* SPECIFIC SECTION APPLICATIONS */

/* Why Use WhatsApp CRM for Marketing Section */
.expertise-card:nth-child(1) .expertise-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8); /* Blue - Launch Campaigns */
}
.expertise-card:nth-child(1) .expertise-icon::after {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.expertise-card:nth-child(2) .expertise-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed); /* Purple - Personalize */
}
.expertise-card:nth-child(2) .expertise-icon::after {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.expertise-card:nth-child(3) .expertise-icon {
    background: linear-gradient(135deg, #25d366, #128c7e); /* Green - Performance */
}
.expertise-card:nth-child(3) .expertise-icon::after {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.expertise-card:nth-child(4) .expertise-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706); /* Orange - Centralized */
}
.expertise-card:nth-child(4) .expertise-icon::after {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.expertise-card:nth-child(5) .expertise-icon {
    background: linear-gradient(135deg, #ec4899, #db2777); /* Pink - Run Campaigns */
}
.expertise-card:nth-child(5) .expertise-icon::after {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.expertise-card:nth-child(6) .expertise-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626); /* Red - Compliance */
}
.expertise-card:nth-child(6) .expertise-icon::after {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Marketing For Section - Industries */
.industry-card:nth-child(1) .industry-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2); /* Cyan - Marketing Teams */
}
.industry-card:nth-child(1) .industry-icon::after {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.industry-card:nth-child(2) .industry-icon {
    background: linear-gradient(135deg, #10b981, #059669); /* Emerald - Sales Teams */
}
.industry-card:nth-child(2) .industry-icon::after {
    background: linear-gradient(135deg, #10b981, #059669);
}

.industry-card:nth-child(3) .industry-icon {
    background: linear-gradient(135deg, #6366f1, #4f46e5); /* Indigo - Support Teams */
}
.industry-card:nth-child(3) .industry-icon::after {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.industry-card:nth-child(4) .industry-icon {
    background: linear-gradient(135deg, #84cc16, #65a30d); /* Lime - E-commerce */
}
.industry-card:nth-child(4) .industry-icon::after {
    background: linear-gradient(135deg, #84cc16, #65a30d);
}

/* Feature Cards in Main Content */
.feature-card:nth-child(1) .feature-check,
.feature-card:nth-child(1) .expertise-icon {
    background: linear-gradient(135deg, #25d366, #128c7e); /* Green */
}

.feature-card:nth-child(2) .feature-check,
.feature-card:nth-child(2) .expertise-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8); /* Blue */
}

.feature-card:nth-child(3) .feature-check,
.feature-card:nth-child(3) .expertise-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed); /* Purple */
}

.feature-card:nth-child(4) .feature-check,
.feature-card:nth-child(4) .expertise-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706); /* Orange */
}

.feature-card:nth-child(5) .feature-check,
.feature-card:nth-child(5) .expertise-icon {
    background: linear-gradient(135deg, #ec4899, #db2777); /* Pink */
}

.feature-card:nth-child(6) .feature-check,
.feature-card:nth-child(6) .expertise-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2); /* Cyan */
}

.feature-card:nth-child(7) .feature-check,
.feature-card:nth-child(7) .expertise-icon {
    background: linear-gradient(135deg, #14b8a6, #0f766e); /* Teal */
}

.feature-card:nth-child(8) .feature-check,
.feature-card:nth-child(8) .expertise-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626); /* Red */
}

/* Process Timeline Steps */
.timeline-step:nth-child(1) .step-icon {
    background: linear-gradient(135deg, #25d366, #128c7e); /* Green - Capture */
}

.timeline-step:nth-child(2) .step-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8); /* Blue - Build */
}

.timeline-step:nth-child(3) .step-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed); /* Purple - Target */
}

.timeline-step:nth-child(4) .step-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706); /* Orange - Launch */
}

.timeline-step:nth-child(5) .step-icon {
    background: linear-gradient(135deg, #ec4899, #db2777); /* Pink - Track */
}

/* DARK VARIATIONS (for lighter backgrounds) */
.icon-dark-green {
    background: linear-gradient(135deg, #166534, #14532d);
}

.icon-dark-blue {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
}

.icon-dark-purple {
    background: linear-gradient(135deg, #581c87, #6b21a8);
}

.icon-dark-orange {
    background: linear-gradient(135deg, #9a3412, #c2410c);
}

/* LIGHT VARIATIONS (for darker backgrounds) */
.icon-light-green {
    background: linear-gradient(135deg, #4ade80, #22c55e);
}

.icon-light-blue {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.icon-light-purple {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

.icon-light-orange {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

/* CUSTOM BRAND COLORS */
.icon-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.icon-facebook {
    background: linear-gradient(135deg, #1877f2, #166fe5);
}

.icon-twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.icon-linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.icon-instagram {
    background: linear-gradient(135deg, #e4405f, #c13584);
}
 

/* Middle CTA Section Styles */
.middle-cta-section {
    background: linear-gradient(135deg, #87CEEB, #B0E0E6);
    border: 3px solid #000000;
    border-radius: 16px;
    padding: 3rem 2rem;
    margin: 1rem 0;
    text-align: center;
}
.middle-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.middle-cta-content {
    flex: 1;
    min-width: 250px;
    text-align: left;
}
.middle-cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}
.middle-cta-btn {
    background: linear-gradient(135deg, #1DB954, #0F7042);
    color: #FFFFFF;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.middle-cta-btn:hover {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.3);
}
.middle-cta-btn i {
    transition: transform 0.3s ease;
}
.middle-cta-btn:hover i {
    transform: translateX(3px);
}
/* Tablet Responsive (768px and below) */
@media (max-width: 768px) {
    .middle-cta-section {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
        border-radius: 12px;
    }
    .middle-cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .middle-cta-content {
        min-width: auto;
        text-align: center;
    }
    .middle-cta-title {
        font-size: 1.6rem;
    }
    .middle-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
/* Mobile Responsive (480px and below) */
@media (max-width: 480px) {
    .middle-cta-section {
        padding: 1.5rem 1rem;
        margin: 1rem 0;
        border-width: 2px;
    }
    .middle-cta-wrapper {
        gap: 1rem;
    }
    .middle-cta-title {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    .middle-cta-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
/* Small Mobile (360px and below) */
@media (max-width: 360px) {
    .middle-cta-section {
        padding: 1.2rem 0.8rem;
    }
    .middle-cta-title {
        font-size: 1.1rem;
    }
    .middle-cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        max-width: 100%;
    }
}
/* Extra interactions for better UX */
.middle-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.2);
}
/* Focus states for accessibility */
.middle-cta-btn:focus {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}
.process {
    padding: 30px 0;
    background: rgba(5, 5, 5, 0.8);
   
}
/* Get Started CTA Section Styles */
.get-started-cta {
    background: #004BC7;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}
.get_statred {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.get-started-content {
    flex: 1;
    min-width: 300px;
}
.get-started-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.get-started-description {
    color: #CCCCCC;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.api-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #F59E0B;
    font-weight: 600;
}
.get-started-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.get-started-btn-demo {
    padding: 0.8rem 1.5rem;
    border: 2px solid #FFFFFF;
    background: transparent;
    color: #FFFFFF;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.get-started-btn-demo:hover {
    background: #FFFFFF;
    color: #000000;
    transform: translateY(-2px);
}
.get-started-btn-free {
    padding: 0.8rem 1.5rem;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.get-started-btn-free:hover {
    background: #20C55E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
/* Tablet Responsive (768px and below) */
@media (max-width: 768px) {
    .get-started-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
        border-radius: 12px;
    }
    .get_statred {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .get-started-content {
        min-width: auto;
        max-width: 100%;
    }
    .get-started-title {
        font-size: 2rem;
    }
    .get-started-description {
        font-size: 1rem;
    }
    .get-started-buttons {
        justify-content: center;
        width: 100%;
    }
    .get-started-btn-demo,
    .get-started-btn-free {
        flex: 1;
        min-width: 140px;
        max-width: 200px;
        justify-content: center;
    }
}
/* Mobile Responsive (480px and below) */
@media (max-width: 480px) {
    .get-started-cta {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }
    .get_statred {
        gap: 1.5rem;
    }
    .get-started-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    .get-started-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    .api-badge {
        font-size: 0.9rem;
        justify-content: center;
    }
    .get-started-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    .get-started-btn-demo,
    .get-started-btn-free {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}
/* Small Mobile (360px and below) */
@media (max-width: 360px) {
    .get-started-cta {
        padding: 1.2rem 0.8rem;
    }
    .get-started-title {
        font-size: 1.6rem;
    }
    .get-started-description {
        font-size: 0.9rem;
    }
    .api-badge {
        font-size: 0.85rem;
    }
    .get-started-btn-demo,
    .get-started-btn-free {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
}
