/* =========================
   Hero Section
========================= */
.support-page-hero {
  padding: 90px 20px 55px;
  background: linear-gradient(to bottom, #f8fbff 0%, #ffffff 100%);
  font-family: 'Roboto', sans-serif;
}

.support-page-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.support-page-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2a5d8f;
}

.support-page-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  color: #B00F0F;
  line-height: 1.1;
}

.support-page-hero-text {
  font-size: 1.05rem;
  color: #4a4a4a;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
}

/* =========================
   Services Section
========================= */
.support-page-services {
  padding: 35px 20px 80px;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fbff 100%);
}

.support-page-services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.support-page-service-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(42, 93, 143, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: left;
}

.support-page-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
  border-color: rgba(176, 15, 15, 0.15);
}

.support-page-service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(42, 93, 143, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.support-page-service-icon {
  font-size: 1.8rem;
  color: #B00F0F;
}

.support-page-service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #1d3552;
}

.support-page-service-card p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: #5a5a5a;
  margin: 0;
}

/* =========================
   Contact Strip
========================= */
.support-page-contact-strip {
  padding: 0 20px 90px;
  background: linear-gradient(to bottom, #f8fbff 0%, #ffffff 100%);
}

.support-page-contact-strip-container {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #15314d, #2a5d8f);
  border-radius: 22px;
  padding: 38px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: 0 16px 34px rgba(21, 49, 77, 0.18);
}

.support-page-contact-strip-text h2 {
  color: #fff;
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.support-page-contact-strip-text p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 650px;
}

.support-page-contact-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.support-page-btn-primary,
.support-page-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.support-page-btn-primary {
  background: #B00F0F;
  color: #fff;
  border: 2px solid #B00F0F;
}

.support-page-btn-primary:hover {
  background: #8f0d0d;
  border-color: #8f0d0d;
  transform: translateY(-2px);
}

.support-page-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.45);
}

.support-page-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-2px);
}

/* =========================
   Tablet
========================= */
@media (max-width: 992px) {
  .support-page-services-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-page-contact-strip-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   Mobile
========================= */
@media (max-width: 768px) {
  .support-page-hero {
    padding: 95px 16px 70px;
  }

  .support-page-hero h1 {
    font-size: 2.25rem;
  }

  .support-page-hero-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .support-page-intro {
    padding: 50px 16px 20px;
  }

  .support-page-intro-container h2 {
    font-size: 1.6rem;
  }

  .support-page-intro-container p {
    font-size: 0.97rem;
  }

  .support-page-services {
    padding: 30px 16px 65px;
  }

  .support-page-services-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .support-page-service-card {
    padding: 24px 20px;
  }

  .support-page-contact-strip {
    padding: 0 16px 70px;
  }

  .support-page-contact-strip-container {
    padding: 28px 20px;
    border-radius: 18px;
    overflow: hidden;
  }

  .support-page-contact-strip-text h2 {
    font-size: 1.5rem;
  }

  .support-page-contact-strip-text p {
    font-size: 0.95rem;
  }

  .support-page-contact-strip-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .support-page-btn-primary,
  .support-page-btn-secondary {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-break: break-word;
  }
}