/* ═══════════════════════════════════════════════════════════════════
   SOCIAL PROOF / IMPACT SECTION
   ═══════════════════════════════════════════════════════════════════ */
.social-proof-section {
  background: #fff;
  padding: 80px 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.sp-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 40px;
}

/* ─── Customer Cards ─── */
.sp-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 48px;
}

.sp-card {
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.sp-card-warm {
  background: #f0f8ff;
}

.sp-card-light {
  background: #f5f5f0;
}

.sp-stat {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 14px;
}

.sp-desc {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 12px;
}

.sp-read-more {
  font-size: 13px;
  font-weight: 700;
  color: #0077b6;
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.sp-read-more:hover {
  color: #005c80;
}

.sp-brand {
  font-size: 14px;
  color: #1a1a1a;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ─── Ratings Bar ─── */
.sp-ratings-bar {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 8px;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
}

.sp-rating {
  flex: 1;
  text-align: center;
  padding: 20px 12px;
  border-right: 1px solid #eee;
}

.sp-rating:last-child {
  border-right: none;
}

.sp-rating-score {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.sp-rating-of {
  font-size: 14px;
  font-weight: 500;
  color: #888;
}

.sp-rating-src {
  font-size: 12px;
  font-weight: 600;
  color: #666;
}

.sp-rating-note {
  font-size: 11px;
  color: #aaa;
  text-align: left;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 32px;
}

/* ─── Social Proof CTAs ─── */
.sp-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.sp-cta-primary {
  padding: 14px 32px;
  background: #0077b6;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.sp-cta-primary:hover {
  background: #005c80;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.3);
}

.sp-cta-outline {
  padding: 14px 32px;
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.sp-cta-outline:hover {
  background: #1a1a1a;
  color: #fff;
}

.sp-cta-note {
  font-size: 13px;
  color: #888;
  text-align: center;
}

/* ─── Social Proof Responsive ─── */
@media (max-width: 768px) {
  .social-proof-section {
    padding: 48px 20px 40px;
  }

  .sp-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .sp-ratings-bar {
    flex-wrap: wrap;
  }

  .sp-rating {
    min-width: 33.33%;
    border-bottom: 1px solid #eee;
  }

  .sp-rating-score {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .sp-cards {
    grid-template-columns: 1fr;
  }

  .sp-stat {
    font-size: 40px;
  }

  .sp-rating {
    min-width: 50%;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   FEATURES SHOWCASE SECTION
   ═══════════════════════════════════════════════════════════════════ */
.features-showcase {
  background: #00adef;
  padding: 80px 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-family: 'Inter', sans-serif;
}

/* ─── Main Heading ─── */
.showcase-main-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 32px;
}

/* ─── Tabs ─── */
.showcase-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.showcase-tab {
  padding: 10px 22px;
  border-radius: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.showcase-tab:hover {
  background: rgba(255, 255, 255, 0.1);
}

.showcase-tab.active {
  background: #005c80;
  border-color: #005c80;
  color: #fff;
}

/* ─── Carousel Wrapper ─── */
.showcase-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 40px;
}

.showcase-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.showcase-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

.showcase-arrow svg {
  width: 20px;
  height: 20px;
}

/* ─── Cards ─── */
.showcase-card-container {
  flex: 1;
  position: relative;
  min-height: 340px;
}

.showcase-card {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  background: #f0f8ff;
  border-radius: 20px;
  padding: 36px;
  animation: scFadeIn 0.4s ease;
}

.showcase-card.active {
  display: grid;
}

@keyframes scFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.showcase-card-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.showcase-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.showcase-bullets li {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
}

.bullet-star {
  color: #00adef;
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.showcase-link-btn {
  padding: 10px 24px;
  border-radius: 24px;
  border: 1.5px solid #1a1a1a;
  background: transparent;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.showcase-link-btn:hover {
  background: #1a1a1a;
  color: #fff;
}

/* ─── Mockup Cards (shared) ─── */
.showcase-card-mockup {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Pipeline Mockup */
.sc-pipeline-mock {
  padding: 16px;
  font-size: 11px;
}

.sc-pipe-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.sc-pipe-title {
  font-weight: 800;
  font-size: 14px;
}

.sc-pipe-badge {
  font-size: 10px;
  background: #00adef;
  color: #fff;
  padding: 3px 10px;
  border-radius: 10px;
  font-weight: 700;
}

.sc-pipe-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.sc-pipe-col {
  min-height: 80px;
}

.sc-pipe-col-head {
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}

.sc-pipe-col-head.new {
  background: #e3f2fd;
  color: #0077b6;
}

.sc-pipe-col-head.qual {
  background: #e1f5fe;
  color: #0077b6;
}

.sc-pipe-col-head.prop {
  background: #b3e5fc;
  color: #7b1fa2;
}

.sc-pipe-col-head.won {
  background: #e0f7fa;
  color: #008bc2;
}

.sc-pipe-item {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 6px 8px;
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sc-pipe-name {
  font-weight: 600;
  font-size: 10px;
}

.sc-pipe-val {
  font-size: 9px;
  color: #888;
}

.sc-pipe-item.won-item {
  background: #e0f7fa;
  border-color: #b2ebf2;
}

.sc-pipe-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.sc-pipe-subtab {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  background: #f5f5f5;
  border: 1px solid #eee;
}

.sc-pipe-subtab.active {
  background: #e3f2fd;
  color: #0077b6;
  border-color: #bbdefb;
}

.sc-pipe-subtab-add {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #aaa;
}

.sc-pipe-dots {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 4px;
}

.sc-pipe-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
}

.sc-pipe-dots .dot-active {
  background: #1a1a1a;
}

.sc-pipe-sublabel {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: #888;
}

/* Lead Management Mockup */
.sc-lead-mock {
  padding: 14px;
  font-size: 11px;
}

.sc-lead-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.sc-lead-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #00adef;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.sc-lead-info {
  flex: 1;
}

.sc-lead-name {
  font-weight: 800;
  font-size: 13px;
}

.sc-lead-meta {
  font-size: 10px;
  color: #888;
}

.sc-lead-action {
  padding: 5px 12px;
  border-radius: 6px;
  background: #00adef;
  color: #fff;
  border: none;
  font-size: 10px;
  font-weight: 700;
  cursor: default;
}

.sc-lead-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.sc-lead-tabs span {
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 6px;
  color: #888;
}

.sc-lead-tabs span.active {
  background: #e3f2fd;
  color: #0077b6;
}

.sc-lead-details {
  margin-bottom: 12px;
}

.sc-lead-row {
  padding: 5px 0;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #f5f5f5;
}

.sc-lead-label {
  font-size: 14px;
  flex-shrink: 0;
}

.sc-lead-tasks-head {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sc-lead-task {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 11px;
}

.sc-task-name {
  flex: 1;
  font-weight: 600;
}

.sc-task-date {
  font-size: 10px;
  color: #888;
}

.sc-task-status {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

.sc-task-status.progress {
  background: #e1f5fe;
  color: #0077b6;
}

.sc-task-status.pending {
  background: #f5f5f5;
  color: #888;
}

.sc-lead-tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.sc-tag {
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  background: #f0f0f0;
  color: #555;
}

.sc-tag.hot {
  background: #e1f5fe;
  color: #0077b6;
}

/* WhatsApp Mockup */
.sc-wa-mock {
  padding: 14px;
  font-size: 11px;
}

.sc-wa-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.sc-wa-icon {
  font-size: 18px;
}

.sc-wa-title {
  font-weight: 800;
  font-size: 13px;
  flex: 1;
}

.sc-wa-api-badge {
  font-size: 9px;
  font-weight: 700;
  color: #00adef;
  background: rgba(0, 173, 239, 0.1);
  padding: 3px 8px;
  border-radius: 8px;
}

.sc-wa-template {
  margin-bottom: 12px;
}

.sc-wa-tmpl-label {
  font-size: 9px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.sc-wa-bubble {
  background: #e1f5fe;
  padding: 10px 14px;
  border-radius: 0 12px 12px 12px;
  font-size: 12px;
  line-height: 1.5;
  color: #333;
}

.sc-wa-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.sc-wa-stat {
  text-align: center;
  padding: 8px 4px;
  background: #f8f8f8;
  border-radius: 8px;
}

.sc-wa-stat-num {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
}

.sc-wa-stat-lbl {
  font-size: 8px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
}

/* Automation Mockup */
.sc-auto-mock {
  padding: 14px;
}

.sc-auto-rule {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}

.sc-auto-rule-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
}

.sc-auto-rule-icon {
  font-size: 18px;
}

.sc-auto-rule-info {
  flex: 1;
  font-size: 12px;
  line-height: 1.4;
}

.sc-auto-rule-info strong {
  font-size: 13px;
}

.sc-auto-sub {
  font-size: 10px;
  color: #888;
}

.sc-auto-toggle {
  width: 36px;
  height: 20px;
  border-radius: 12px;
  background: #ccc;
  position: relative;
  flex-shrink: 0;
}

.sc-auto-toggle.on {
  background: #00adef;
}

.sc-auto-knob {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.sc-auto-toggle.on .sc-auto-knob {
  transform: translateX(16px);
}

.sc-auto-sim {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #f0f8ff;
  border-top: 1px solid #e8e8e8;
  font-size: 11px;
  flex-wrap: wrap;
}

.sc-auto-lead-chip {
  padding: 4px 10px;
  background: rgba(0, 173, 239, 0.1);
  color: #00adef;
  border-radius: 6px;
  font-weight: 600;
}

.sc-auto-arrow {
  color: #888;
}

.sc-auto-agent {
  padding: 4px 10px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #ddd;
  font-weight: 600;
}

.sc-auto-agent.active {
  background: #00adef;
  color: #fff;
  border-color: #00adef;
}

/* Task Mockup */
.sc-task-mock {
  padding: 14px;
  font-size: 11px;
}

.sc-task-header {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sc-task-count {
  font-size: 10px;
  font-weight: 600;
  color: #0077b6;
  background: #e1f5fe;
  padding: 3px 10px;
  border-radius: 10px;
}

.sc-task-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #fafafa;
  margin-bottom: 6px;
  border: 1px solid #eee;
}

.sc-task-item.urgent {
  border-color: #b3e5fc;
  background: #e1f5fe;
}

.sc-task-item.done {
  opacity: 0.5;
}

.sc-task-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  margin-top: 2px;
}

.sc-task-check.checked {
  background: #00adef;
  border-color: #00adef;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.sc-task-content {
  flex: 1;
}

.sc-task-content strong {
  font-size: 12px;
}

.sc-task-time {
  font-size: 10px;
  color: #888;
}

.sc-task-item.urgent .sc-task-time {
  color: #0077b6;
}

/* Reports Mockup */
.sc-report-mock {
  padding: 14px;
  font-size: 11px;
}

.sc-report-header {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
}

.sc-report-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.sc-report-stat {
  text-align: center;
  padding: 10px 6px;
  background: #f8f8f8;
  border-radius: 10px;
}

.sc-rpt-num {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
}


.sc-rpt-num.blue {
  color: #00adef;
}

.sc-rpt-lbl {
  font-size: 9px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
}

.sc-report-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sc-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sc-bar-label {
  width: 70px;
  font-size: 10px;
  font-weight: 600;
  color: #555;
  flex-shrink: 0;
}

.sc-bar {
  flex: 1;
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
}

.sc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00adef, #00adef);
  border-radius: 4px;
  transition: width 0.6s ease;
}

.sc-bar-val {
  font-size: 10px;
  font-weight: 700;
  color: #333;
  width: 30px;
  text-align: right;
}

/* ─── Integrations Showcase ─── */
.integrations-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: #e1f5fe;
  border-radius: 20px;
  padding: 48px 32px;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 40px;
}

.integ-icons-left,
.integ-icons-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.integ-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.integ-icon-circle.ggl {
  background: #fff;
}

.integ-icon-circle.ggl span {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #4285F4;
}

.integ-center-content {
  text-align: center;
  flex: 1;
  max-width: 400px;
}

.integ-center-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.integ-center-content p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.integ-btn {
  border-color: #1a1a1a;
}

/* ─── CTA Row ─── */
.showcase-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.showcase-cta-primary {
  padding: 14px 32px;
  background: #0077b6;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.showcase-cta-primary:hover {
  background: #005c80;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.3);
}

.showcase-cta-outline {
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.showcase-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.showcase-cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .features-showcase {
    padding: 48px 20px 40px;
  }

  .showcase-tabs {
    gap: 6px;
  }

  .showcase-tab {
    padding: 8px 14px;
    font-size: 12px;
  }

  .showcase-carousel-wrapper {
    gap: 8px;
  }

  .showcase-arrow {
    width: 36px;
    height: 36px;
  }

  .showcase-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 20px;
  }

  .showcase-card-text h3 {
    font-size: 24px;
  }

  .integrations-showcase {
    flex-direction: column;
    padding: 32px 20px;
    gap: 20px;
  }

  .integ-icons-left,
  .integ-icons-right {
    grid-template-columns: repeat(3, 1fr);
  }

  .sc-pipe-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .sc-wa-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .showcase-tab {
    padding: 6px 10px;
    font-size: 11px;
  }

  .showcase-card {
    padding: 20px 16px;
  }

  .showcase-arrow {
    display: none;
  }

  .integ-icon-circle {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS MASONRY SECTION
   ═══════════════════════════════════════════════════════════════════ */
.testimonials-masonry-section {
  background: #f0f8ff;
  /* Warm light orange background to match image */
  padding: 80px 40px 0;
  /* No bottom padding because of fade overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.tm-header {
  position: relative;
  text-align: center;
  margin-bottom: 24px;
}

.tm-header h2 {
  font-family: 'Inter', sans-serif;
  /* Not serif in image, it's sans-serif but bold */
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tm-sparkle {
  position: absolute;
  font-size: 24px;
}

.tm-sparkle-1 {
  top: -10px;
  left: -30px;
  transform: rotate(-15deg);
}

.tm-sparkle-2 {
  top: -20px;
  right: -40px;
  transform: rotate(15deg);
}

.tm-btn-wrap {
  margin-bottom: 48px;
}

.tm-view-all-btn {
  padding: 10px 24px;
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.tm-view-all-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.tm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

.tm-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Stagger columns to create masonry effect */
.tm-col:nth-child(2) {
  margin-top: 40px;
}

.tm-col:nth-child(3) {
  margin-top: 20px;
}

.tm-col:nth-child(4) {
  margin-top: 60px;
}

.tm-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.tm-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.tm-hl {
  background-color: #e1f5fe;
  /* Light green highlight */
  padding: 2px 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.tm-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.tm-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #555;
  overflow: hidden;
  flex-shrink: 0;
}

.tm-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tm-info {
  display: flex;
  flex-direction: column;
}

.tm-name {
  font-size: 13px;
  font-weight: 800;
  color: #1a1a1a;
}

.tm-company {
  font-size: 11px;
  color: #666;
  line-height: 1.2;
}

/* Gradient Overlay at bottom */
.tm-fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to bottom, rgba(240, 248, 255, 0) 0%, #f0f8ff 100%);
  z-index: 2;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .tm-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tm-col:nth-child(4) {
    display: none;
  }

  /* Hide last col on smaller tablets */
}

@media (max-width: 768px) {
  .tm-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tm-col:nth-child(3) {
    display: none;
  }

  .tm-col:nth-child(2) {
    margin-top: 20px;
  }

  .tm-fade-overlay {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .tm-grid {
    grid-template-columns: 1fr;
  }

  .tm-col:nth-child(2) {
    display: none;
  }

  /* Only show 1 column of testimonials on mobile */
}

/* ═══════════════════════════════════════════════════════════════════
   FINAL CTA / GROWTH STORY SECTION
   ═══════════════════════════════════════════════════════════════════ */
.growth-cta-section {
  background: #00adef;
  /* Bright green background to match image */
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.growth-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}

.growth-cta-wrapper {
  position: relative;
  margin-bottom: 60px;
}

.growth-sparkle {
  position: absolute;
  font-size: 24px;
}

.growth-sparkle-1 {
  top: -20px;
  left: -40px;
  transform: rotate(-15deg);
}

.growth-sparkle-2 {
  bottom: 10px;
  right: -50px;
  transform: rotate(15deg);
}

/* Override outline button for this section */
.growth-pricing-btn {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}

.growth-pricing-btn:hover {
  background: #f0f0f0;
  color: #1a1a1a;
}

.growth-cta-note {
  font-size: 13px;
  font-weight: 500;
  color: #005c80;
  margin-top: 16px;
}

/* ─── Pure CSS Award Badges ─── */
.growth-awards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
}

.award-badge {
  background: #fff;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px 4px 14px;
  position: relative;
}

.badge-logo {
  font-weight: 900;
  font-size: 14px;
  color: #0077b6;
  margin-bottom: 4px;
}

.badge-title {
  font-size: 9px;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 2px;
}

.badge-sub {
  font-size: 7px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  line-height: 1.1;
}

.badge-year {
  font-size: 8px;
  font-weight: 800;
  color: #fff;
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
}

/* G2 Shield */
.g2-badge {
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  border-bottom: 14px solid #0077b6;
  height: 90px;
}

.g2-badge:nth-child(2) {
  border-bottom-color: #00adef;
}

.g2-badge:nth-child(3) {
  border-bottom-color: #4dd0e1;
}

/* Capterra Shield */
.capterra-badge {
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
  background: #0077b6;
  border-bottom: 20px solid #00adef;
  height: 90px;
}

.capterra-badge .badge-logo {
  color: #fff;
  font-size: 12px;
  margin-bottom: 6px;
}

.capterra-badge .badge-title {
  color: #fff;
  font-size: 8px;
}

.capterra-badge .badge-year {
  bottom: 4px;
}

.capterra-badge.cap-alt {
  border-bottom-color: #00adef;
}

.capterra-badge:nth-child(8) {
  border-bottom-color: #008bc2;
}

/* GetApp Diamond/Hex */
.getapp-badge {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #455a64;
  height: 90px;
  padding-bottom: 10px;
}

.getapp-badge .badge-logo {
  color: #fff;
  font-size: 12px;
}

.getapp-badge .badge-title {
  color: #fff;
  font-size: 8px;
}

.getapp-badge .badge-year {
  bottom: 8px;
}

/* Software Advice Octagon */
.swadvice-badge {
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  background: #37474f;
  border-bottom: 12px solid #0077b6;
  height: 90px;
}

.swadvice-badge .badge-sub {
  color: #fff;
  font-size: 8px;
  margin-bottom: 4px;
  margin-top: 4px;
  text-transform: none;
}

.swadvice-badge .badge-title {
  color: #00adef;
  font-size: 9px;
}

.swadvice-badge .badge-year {
  bottom: 12px;
}

@media (max-width: 768px) {
  .growth-cta-section {
    padding: 60px 20px;
  }

  .growth-heading {
    font-size: 32px;
  }

  .growth-sparkle {
    display: none;
  }

  .award-badge {
    width: 65px;
    height: 75px;
  }

  .badge-logo {
    font-size: 11px;
  }

  .badge-title {
    font-size: 7px;
  }

  .badge-year {
    font-size: 6px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   MEGA FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.kliently-footer {
  background: #03002e;
  color: #fff;
  font-family: 'Inter', sans-serif;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Top Bar */
.kf-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.kf-contact a {
  color: #fff;
  text-decoration: none;
  margin-right: 24px;
  font-weight: 500;
  transition: color 0.2s;
}

.kf-contact a:hover {
  color: #00adef;
}

.kf-lang {
  cursor: pointer;
  font-weight: 500;
}

/* Main Grid */
.kf-main-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Promo Column */
.kf-promo-col {
  flex: 1.5;
  min-width: 250px;
}

.kf-promo-box {
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
}

.kf-promo-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.kf-promo-box p {
  font-size: 12px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.kf-promo-box button {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.blue-promo {
  background: #00adef;
  color: #fff;
}

.blue-promo button {
  background: #0077b6;
  color: #fff;
  transition: background 0.2s;
}

.blue-promo button:hover {
  background: #005c80;
}

.white-promo {
  background: #f5f5f5;
  color: #1a1a1a;
}

.white-promo h3 {
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}

.white-promo button {
  background: #00adef;
  color: #1a1a1a;
  transition: background 0.2s;
}

.white-promo button:hover {
  background: #008bc2;
}

/* Link Columns */
.kf-col {
  flex: 1;
  min-width: 160px;
}

.kf-col h4 {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.kf-col h4.mt-20 {
  margin-top: 32px;
}

.kf-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kf-col li {
  margin-bottom: 12px;
}

.kf-col a {
  color: #aaa;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

.kf-col a:hover {
  color: #fff;
}

/* Bottom Certs & Social */
.kf-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.kf-certs {
  display: flex;
  gap: 16px;
}

.kf-cert {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #ccc;
}

.kf-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.kf-social span {
  font-size: 11px;
  font-weight: 700;
  margin-right: 8px;
}

.kf-social a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.kf-social a:hover {
  background: #00adef;
}

/* Legal Footer */
.kf-legal {
  text-align: center;
  padding: 24px 40px;
  font-size: 11px;
  color: #888;
}

.kf-legal-links {
  margin-bottom: 12px;
}

.kf-legal-links a {
  color: #888;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.2s;
}

.kf-legal-links a:hover {
  color: #fff;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .kf-promo-col {
    flex: 100%;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
  }

  .kf-promo-box {
    flex: 1;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .kf-topbar {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .kf-bottom-bar {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .kf-promo-col {
    flex-direction: column;
  }

  .kf-main-grid {
    gap: 30px;
  }

  .kf-col {
    flex: 45%;
  }
}

@media (max-width: 480px) {
  .kf-col {
    flex: 100%;
  }
}