/* ═══ Shared Components (card grid) ═══ */
/* Awards/Partners carousel styles are in vicone-page-template.css (.partners-carousel, .partner-item, etc.) */

.shared-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.shared-container-wide {
  max-width: 1500px;
  width: 80%;
}

.shared-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.shared-section-header h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #212121;
  margin: 0 0 12px;
}

.shared-section-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #636363;
  margin-top: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══ Card Grid (Why VicOne / What Sets Us Apart / Stats) ═══ */
.shared-card-grid-section {
  padding: 80px 0;
  background: #eef2f7;
}

.shared-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 28px;
}

.shared-card-grid-3 > .shared-card-item {
  flex: 1 1 calc((100% - 56px) / 3);
  min-width: 260px;
  max-width: 100%;
}

.shared-card-grid-2 > .shared-card-item {
  flex: 1 1 calc((100% - 28px) / 2);
  min-width: 260px;
  max-width: 100%;
}

.shared-card-grid-4 > .shared-card-item {
  flex: 1 1 calc((100% - 84px) / 4);
  min-width: 220px;
  max-width: 100%;
}

.shared-card-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  transition: transform .2s;
  text-decoration: none;
  color: #333;
  display: block;
  min-width: 0;
}

.shared-card-item:hover {
  transform: translateY(-4px);
  text-decoration: none;
}

.shared-card-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.shared-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shared-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 70%);
}

.shared-card-overlay-text {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  z-index: 1;
}

.shared-card-overlay-text strong {
  font-size: 32px;
  font-weight: 800;
  display: block;
  margin-bottom: 2px;
}

.shared-card-body {
  padding: 20px 24px;
}

.shared-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #212121;
  margin: 0 0 8px;
}

.shared-card-body p {
  font-size: 15px;
  line-height: 1.65;
  color: #636363;
  margin: 0;
  overflow-wrap: break-word;
}

.shared-card-body p a {
  color: #e9001e;
}

.shared-card-grid-cta {
  text-align: center;
  margin-top: 32px;
}

.shared-btn-primary {
  display: inline-block;
  background: #e9001e;
  color: #fff !important;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 40px;
  text-decoration: none;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(233, 0, 30, .3);
  transition: background .2s, transform .15s;
}

.shared-btn-primary:hover {
  background: #c5001a;
  transform: translateY(-2px);
  text-decoration: none;
}

/* FAQ styles are in faq-accordion.css */

/* ── Responsive ── */
@media (max-width: 1024px) {

  .shared-card-grid-3 > .shared-card-item,
  .shared-card-grid-4 > .shared-card-item {
    flex: 1 1 calc((100% - 28px) / 2);
  }
}

@media (max-width: 768px) {
  .shared-card-grid-section {
    padding: 50px 0;
  }

  .shared-container-wide {
    width: 92%;
  }

  .shared-section-header h2 {
    font-size: 24px;
  }

  .shared-card-grid-3 > .shared-card-item,
  .shared-card-grid-2 > .shared-card-item,
  .shared-card-grid-4 > .shared-card-item {
    flex: 1 1 100%;
  }

  .shared-card-thumb {
    height: 180px;
  }

  .shared-card-overlay-text strong {
    font-size: 26px;
  }
}

/* ═══ More Features (two-column bullet list) ═══ */
.vp-more-features-grid {
  display: flex;
  gap: 40px;
  background: #eef2f7;
  padding: 40px;
  border-radius: 12px;
}

.vp-more-col {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 32px 36px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.vp-more-col-title {
  font-size: 22px;
  font-weight: 700;
  color: #212121;
  margin: 0 0 20px;
}

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

.vp-more-col li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.65;
  color: #444;
}

.vp-more-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #ff0037;
  border-radius: 50%;
}

.vp-more-col li strong {
  color: #212121;
}

.vp-more-col li a {
  color: #ff0037;
}

@media (max-width: 768px) {
  .vp-more-features-grid {
    flex-direction: column;
    gap: 0;
  }
}

/* ═══ Target Sectors ═══ */
.shared-target-sectors {
  padding: 80px 0;
  background: #fff;
}

.shared-sectors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.shared-sectors-grid .shared-sector-card {
  width: calc(25% - 18px);
}

.shared-sector-card {
  text-align: center;
  padding: 32px 20px;
  background: #f5f8fc;
  border-radius: 10px;
  transition: transform 0.2s;
}

.shared-sector-card:hover {
  transform: translateY(-4px);
}

.shared-sector-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #212121;
  margin: 0;
}

.shared-sector-card p {
  font-size: 14px;
  color: #636363;
  margin: 8px 0 0;
}

@media (max-width: 1024px) {
  .shared-sectors-grid .shared-sector-card {
    width: calc(33.333% - 16px);
  }
}

@media (max-width: 768px) {
  .shared-target-sectors {
    padding: 50px 0;
  }

  .shared-sectors-grid .shared-sector-card {
    width: calc(50% - 12px);
  }
}

/* ═══ Collaborations Carousel ═══ */
.vp-collaborations {
  background: #f5f8fc;
  padding-top: 40px;
}

.vp-collaborations .container {
  max-width: 1200px;
  margin: 0 auto;
}

.vp-collab-slide {
  flex: 0 0 25%;
  padding: 0 10px;
  box-sizing: border-box;
}

.vp-collab-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .06);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.vp-collab-red-line {
  height: 3px;
  background: #ff0037;
  border-radius: 4px 4px 0 0;
}

.vp-collab-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 0;
}

.vp-collab-logo img {
  max-height: 65px;
  max-width: 160px;
  object-fit: contain;
}

.vp-collab-person-name {
  font-size: 15px;
  font-weight: 700;
  color: #212121;
  margin: 4px 0 4px;
  padding: 0 20px;
}

.vp-collab-person-position {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
  padding: 0 20px;
}

.vp-collab-quote-icon {
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: #ff0037;
  line-height: 1;
  margin: 16px 0 0;
}

.vp-collab-quote {
  font-size: 13px;
  line-height: 1.65;
  color: #555;
  margin: 8px 0 0;
  padding: 0 20px;
  flex: 1;
}

.vp-collab-links {
  padding: 12px 20px 24px;
}

.vp-collab-links a {
  display: block;
  font-size: 13px;
  color: #ff0037;
  margin-top: 4px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .vp-collab-slide {
    flex: 0 0 50%;
  }
}