/* Clean high-contrast follow/location section */
.follow-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.25rem;
  align-items: stretch;
  padding-top: clamp(3rem, 7vw, 5rem);
}

.follow-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 4px solid #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.follow-card-main {
  background: #ffffff;
  color: #050505;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.follow-card-main::before {
  content: "";
  position: absolute;
  inset: auto -5rem -5rem auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(183, 255, 23, 0.35), transparent 67%);
  pointer-events: none;
}

.follow-kicker {
  display: inline-flex;
  max-width: 100%;
  margin: 0 0 1rem;
  padding: 0.42rem 0.78rem;
  background: #050505;
  color: #ffffff;
  border: 2px solid #050505;
  border-radius: 999px;
  font-size: clamp(0.78rem, 1.8vw, 0.95rem);
  font-weight: 1000;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: none;
}

.follow-card h2,
.follow-card h3,
.follow-card p,
.follow-card a {
  position: relative;
  z-index: 1;
}

.follow-card h2 {
  color: #050505;
  text-shadow: none;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.follow-location-text {
  color: #1f1a17;
  font-size: clamp(1.08rem, 2.2vw, 1.42rem);
  font-weight: 850;
  max-width: 760px;
}

.follow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.follow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  border: 3px solid #050505;
  text-decoration: none;
  font-weight: 1000;
  text-transform: uppercase;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.follow-button:hover {
  transform: translateY(-3px);
}

.follow-button-primary {
  background: #b7ff17;
  color: #050505;
  box-shadow: 5px 5px 0 #ff1593;
}

.follow-button-secondary {
  background: #050505;
  color: #ffffff;
  box-shadow: 5px 5px 0 #00a7ff;
}

.follow-card-info {
  background: #050505;
  color: #ffffff;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-color: #b7ff17;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
}

.follow-card-info h3 {
  color: #ffffff;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-shadow: none;
  text-transform: uppercase;
}

.follow-card-info p {
  color: #fffdf4;
  font-weight: 750;
}

.follow-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  background: #ffffff;
  color: #050505;
  border: 2px solid #b7ff17;
  border-radius: 999px;
  font-weight: 1000;
  text-transform: uppercase;
}

.follow-email-line a,
#contact a,
#contact-email {
  color: #b7ff17;
  font-weight: 1000;
  word-break: break-word;
}

#contact a {
  color: #ffffff;
  text-decoration-thickness: 2px;
}

.follow-hero-card {
  background: #ffffff;
  color: #050505;
  border-color: #b7ff17;
}

.follow-hero-card .truck-illustration {
  opacity: 0.28;
}

.follow-hero-card h2,
.follow-hero-card p {
  color: #050505;
  text-shadow: none;
}

.follow-hero-card h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1;
  max-width: 92%;
}

.follow-mini-link {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: 1rem;
  padding: 0.6rem 0.9rem;
  background: #050505;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 1000;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 900px) {
  .follow-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .follow-card {
    border-width: 3px;
    border-radius: 22px;
  }

  .follow-actions {
    display: grid;
  }

  .follow-button {
    width: 100%;
  }

  .follow-kicker {
    border-radius: 14px;
    white-space: normal;
  }
}
