/* Container / wrapper */
#makes_us_unique {
  width: min(1100px, 94%);
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

/* makes_us_unique Section */
.makes_us_unique-section {
  background-color: #111111;
  border: 1px solid rgb(35, 35, 35);
  border-radius: 15px;
  padding: 12px;
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  align-items: stretch;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  box-sizing: border-box;
}

/* Left card (visual) */
.makes_us_unique-card {
  background: linear-gradient(135deg, #6366f1 0%, #0086fc 100%);
  border-radius: 15px;
  padding: 2rem;
  flex: 1 1 380px; /* grow, shrink, base */
  position: relative;
  overflow: hidden;
  min-width: 260px;
  box-sizing: border-box;
}

/* shine effect preserved */
.makes_us_unique-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

/* fluid title/subtitle */
.makes_us_unique-title {
  font-size: clamp(1.4rem, 2.5vw + 1rem, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: white;
}

.makes_us_unique-subtitle {
  font-size: clamp(0.9rem, 1.2vw + .6rem, 1rem);
  margin-bottom: 1.5rem;
  opacity: 0.95;
  line-height: 1.4;
  color: rgba(255,255,255,0.95);
}

/* CTA */
.book-call-btn {
  background: #000;
  color: white;
  padding: 0.65rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.book-call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Right column (services) */
.services-list {
  flex: 1 1 320px; /* grow, shrink, base */
  padding: 1.75rem;
  min-width: 240px;
  box-sizing: border-box;
}

/* list items */
.service-item {
  color: #a1a1aa;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  position: relative;
  transition: color 0.25s ease;
}

.service-item:before {
  content: '●';
  position: absolute;
  left: 0;
  color: #6366f1;
  font-size: 0.6rem;
  top: 0.55rem;
}

.service-item:hover {
  color: #e4e4e7;
}

/* Main Section title & intro btn */
.main-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw + 1rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
}

.intro-btn {
  display: block;
  margin: 0 auto 2.5rem auto;
  background: #f3f4f6;
  color: #374151;
  padding: 0.9rem 1.6rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.intro-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(243, 244, 246, 0.3);
}

/* Comparison Headers and Rows — fluid grid */
.comparison-headers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.comparison-header {
  text-align: center;
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  font-weight: 600;
}

.with-brand { color: #3b82f6; }
.without-brand { color: #ef4444; }

/* Comparison cards container uses auto-fit for responsiveness */
.comparison-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Individual card styles — removed fixed height/width */
.comparison-card {
  width: 100%;
  max-width: 680px; /* optional cap for very wide screens */
  background: white;
  color: #1f2937;
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.comparison-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.comparison-card:hover::before { left: 100%; }

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: bold;
}

.positive-icon { background: #3b82f6; color: white; }
.negative-icon { background: #ef4444; color: white; }

.card-title {
  font-size: clamp(1rem, 1.1vw + 0.8rem, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.card-description {
  color: #6b7280;
  line-height: 1.5;
  font-size: clamp(.9rem, .9vw + .5rem, .95rem);
}

/* Smooth animations (kept) */
.comparison-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}
.comparison-card:nth-child(1) { animation-delay: 0.05s; }
.comparison-card:nth-child(2) { animation-delay: 0.12s; }
.comparison-card:nth-child(3) { animation-delay: 0.18s; }
.comparison-card:nth-child(4) { animation-delay: 0.24s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.makes_us_unique-card { animation: slideInLeft 0.8s ease-out; }
.services-list { animation: slideInRight 0.8s ease-out; }

@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); }
}

.main-title { animation: fadeIn 1s ease-out 0.5s both; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Small screens tweaks */
@media (max-width: 992px) {
  .comparison-headers { grid-template-columns: 1fr; }
  .makes_us_unique-section { gap: .75rem; padding: 10px; }
  .book-call-btn { padding: .6rem 1rem; font-size: .9rem; }
}

@media (max-width: 768px) {
  .main-title { font-size: clamp(1.4rem, 4vw, 1.9rem); margin-bottom: 1.25rem; }
  .intro-btn { margin-bottom: 1.5rem; }
  .makes_us_unique-card, .services-list { padding: 1rem; }
  .services-list { padding-top: .75rem; }
}

@media (max-width: 480px) {
  /* ensure comfortable tap targets and spacing on very small screens */
  .makes_us_unique-title { font-size: 1.3rem; }
  .makes_us_unique-subtitle { font-size: .95rem; }
  .service-item { font-size: .95rem; padding-left: 1rem; }
  .card-icon { width: 36px; height: 36px; font-size: 1rem; }
  .comparison-card { padding: 1rem; }
}
